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)
457
public bool IsVarArg =>
_argData
.IsVarArg();
460
public int NumFixedArgs =>
_argData
.NumFixedArgs() + (_extraFunctionPointerArg ? 1 : 0) + (_extraObjectFirstArg ? 1 : 0);
479
if (_extraFunctionPointerArg && argNum ==
_argData
.NumFixedArgs())
485
return
_argData
.GetArgumentType(argNum, out thArgType);
495
return
_argData
.GetReturnType(out thRetType);
911
_argTypeHandleOfByRefParam = (argType == CorElementType.ELEMENT_TYPE_BYREF ?
_argData
.GetByRefArgumentType(_argNum) : default(TypeHandle));