1 implementation of GetTargetArchitecture
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeInfo_1.cs (1)
17readonly RuntimeInfoArchitecture IRuntimeInfo.GetTargetArchitecture()
14 references to GetTargetArchitecture
Microsoft.Diagnostics.DataContractReader.Contracts (10)
Contracts\DebugInfo\DebugInfo_2.cs (1)
145bool isX86 = _target.Contracts.RuntimeInfo.GetTargetArchitecture() == RuntimeInfoArchitecture.X86;
Contracts\ExecutionManager\ExecutionManagerCore.ReadyToRunJitManager.cs (1)
173uint unwindDataSize = UnwindDataSize.GetUnwindDataSize(Target, unwindInfo, Target.Contracts.RuntimeInfo.GetTargetArchitecture());
Contracts\GCInfo\GCInfoDecoder.cs (1)
150_arch = target.Contracts.RuntimeInfo.GetTargetArchitecture();
Contracts\Signature\Signature_1.cs (1)
63if (_target.Contracts.RuntimeInfo.GetTargetArchitecture() == RuntimeInfoArchitecture.X86)
Contracts\StackWalk\Context\IPlatformAgnosticContext.cs (2)
36return runtimeInfo.GetTargetArchitecture() switch 45_ => throw new InvalidOperationException($"Unsupported architecture {runtimeInfo.GetTargetArchitecture()}"),
Contracts\StackWalk\FrameHandling\FrameHelpers.cs (1)
556return runtimeInfo.GetTargetArchitecture() switch
Contracts\StackWalk\GC\GcScanner.cs (2)
182if (_target.Contracts.RuntimeInfo.GetTargetArchitecture() is RuntimeInfoArchitecture.X86) 469return _target.Contracts.RuntimeInfo.GetTargetArchitecture() is RuntimeInfoArchitecture.Arm64;
CoreCLRContracts.cs (1)
58RuntimeInfoArchitecture arch = t.Contracts.RuntimeInfo.GetTargetArchitecture();
Microsoft.Diagnostics.DataContractReader.Legacy (4)
ClrDataFrame.cs (1)
967RuntimeInfoArchitecture arch = target.Contracts.RuntimeInfo.GetTargetArchitecture();
Dbi\DacDbiImpl.cs (1)
1485RuntimeInfoArchitecture arch = _target.Contracts.RuntimeInfo.GetTargetArchitecture();
SOSDacImpl.cs (2)
2224if (_target.Contracts.RuntimeInfo.GetTargetArchitecture() != RuntimeInfoArchitecture.X64) 3831string[] regs = _target.Contracts.RuntimeInfo.GetTargetArchitecture() switch