1 write to _argData
ILCompiler.ReadyToRun (1)
Compiler\DependencyAnalysis\ReadyToRun\ArgIterator.cs (1)
525_argData = argData;
6 references to _argData
ILCompiler.ReadyToRun (6)
Compiler\DependencyAnalysis\ReadyToRun\ArgIterator.cs (6)
457public bool IsVarArg => _argData.IsVarArg(); 460public int NumFixedArgs => _argData.NumFixedArgs() + (_extraFunctionPointerArg ? 1 : 0) + (_extraObjectFirstArg ? 1 : 0); 479if (_extraFunctionPointerArg && argNum == _argData.NumFixedArgs()) 485return _argData.GetArgumentType(argNum, out thArgType); 495return _argData.GetReturnType(out thRetType); 911_argTypeHandleOfByRefParam = (argType == CorElementType.ELEMENT_TYPE_BYREF ? _argData.GetByRefArgumentType(_argNum) : default(TypeHandle));