7 overrides of IsArgPassedByRef
ILCompiler.ReadyToRun (7)
Compiler\DependencyAnalysis\ReadyToRun\TransitionBlock.cs (7)
474public override bool IsArgPassedByRef(TypeHandle th) => false; 502public override bool IsArgPassedByRef(TypeHandle th) 581public sealed override bool IsArgPassedByRef(TypeHandle th) => false; 621public override bool IsArgPassedByRef(TypeHandle th) 686public override bool IsArgPassedByRef(TypeHandle th) 730public override bool IsArgPassedByRef(TypeHandle th) 775public override bool IsArgPassedByRef(TypeHandle th)
4 references to IsArgPassedByRef
ILCompiler.ReadyToRun (4)
Compiler\DependencyAnalysis\ReadyToRun\ArgIterator.cs (3)
633return ((_argSize > _transitionBlock.EnregisteredParamTypeMaxSize) || _transitionBlock.IsArgPassedByRef(_argTypeHandle)); 640return ((_argSize > _transitionBlock.EnregisteredParamTypeMaxSize) || _transitionBlock.IsArgPassedByRef(_argTypeHandle)); 653return _transitionBlock.IsArgPassedByRef(_argTypeHandle);
Compiler\DependencyAnalysis\ReadyToRun\GCRefMapBuilder.cs (1)
283if (_transitionBlock.IsArgPassedByRef(new TypeHandle(type)))