7 overrides of IsArgPassedByRef
ILCompiler.ReadyToRun (7)
Compiler\DependencyAnalysis\ReadyToRun\TransitionBlock.cs (7)
480public override bool IsArgPassedByRef(TypeHandle th) => false; 508public override bool IsArgPassedByRef(TypeHandle th) 587public sealed override bool IsArgPassedByRef(TypeHandle th) => false; 627public override bool IsArgPassedByRef(TypeHandle th) 692public override bool IsArgPassedByRef(TypeHandle th) 736public override bool IsArgPassedByRef(TypeHandle th) 781public 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)))