17 references to HasFinalizer
ILCompiler.Compiler (7)
Compiler\DependencyAnalysis\EETypeNode.cs (1)
1075
if (_type.
HasFinalizer
)
Compiler\JitHelper.cs (2)
354
if (type.
HasFinalizer
)
363
if (type.
HasFinalizer
)
Compiler\TypePreinit.cs (1)
578
if (owningType.
HasFinalizer
)
parent\parent\Common\Internal\Runtime\EETypeBuilderHelpers.cs (3)
77
if (type.
HasFinalizer
)
271
if (!type.
HasFinalizer
)
291
if (!type.
HasFinalizer
)
ILCompiler.ReadyToRun (2)
JitInterface\CorInfoImpl.ReadyToRun.cs (1)
1644
pHasSideEffects = type.
HasFinalizer
;
parent\parent\Common\JitInterface\CorInfoImpl.cs (1)
2451
bool result = !type.
HasFinalizer
;
ILCompiler.RyuJit (6)
JitInterface\CorInfoImpl.RyuJit.cs (3)
1137
pHasSideEffects = type.
HasFinalizer
;
1141
if (type.
HasFinalizer
)
1150
if (type.
HasFinalizer
)
parent\ILCompiler.Compiler\Compiler\JitHelper.cs (2)
354
if (type.
HasFinalizer
)
363
if (type.
HasFinalizer
)
parent\parent\Common\JitInterface\CorInfoImpl.cs (1)
2451
bool result = !type.
HasFinalizer
;
ILCompiler.TypeSystem (2)
parent\parent\Common\TypeSystem\Common\InstantiatedType.cs (1)
112
if (_typeDef.
HasFinalizer
)
parent\parent\Common\TypeSystem\Common\MethodDesc.cs (1)
763
return (owningType.IsObject && Name == "Finalize"u8) || (owningType.
HasFinalizer
&& owningType.GetFinalizer() == this);