9 references to IA64
Microsoft.CodeAnalysis (1)
Compilation\Compilation.cs (1)
2291
machine = Machine.
IA64
;
Microsoft.CodeAnalysis.CSharp (1)
Symbols\Source\SourceModuleSymbol.cs (1)
98
return Machine.
IA64
;
Microsoft.CodeAnalysis.Test.Utilities (1)
Metadata\MetadataReaderUtils.cs (1)
84
|| headers.CoffHeader.Machine == Machine.
IA64
;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Source\SourceModuleSymbol.vb (1)
114
Return System.Reflection.PortableExecutable.Machine.
IA64
System.Reflection.Metadata (5)
System\Reflection\PortableExecutable\ManagedPEBuilder.cs (3)
210
builder.WriteUInt32((machine == Machine.
IA64
) ? 14u : 12u);
212
uint relocType = (machine == Machine.Amd64 || machine == Machine.
IA64
|| machine == Machine.Arm64) ? 10u : 3u;
215
if (machine == Machine.
IA64
)
System\Reflection\PortableExecutable\ManagedTextSection.cs (1)
93
internal bool Requires64bits => Machine == Machine.Amd64 || Machine == Machine.
IA64
|| Machine == Machine.Arm64;
System\Reflection\PortableExecutable\PEHeaderBuilder.cs (1)
108
internal bool Is32Bit => Machine != Machine.Amd64 && Machine != Machine.
IA64
&& Machine != Machine.Arm64 && Machine != Machine.LoongArch64 && Machine != Machine.RiscV64;