Lines Matching defs:machine
247 // of the machine that you perform the link on. If the linker is running on
1229 if (ctx.config.machine == I386)
1365 static codeview::CPUType toCodeViewMachine(COFF::MachineTypes machine) {
1366 switch (machine) {
1412 static void fillLinkerVerRecord(Compile3Sym &cs, MachineTypes machine) {
1413 cs.Machine = toCodeViewMachine(machine);
1444 MachineTypes machine = ctx.config.machine;
1445 // MSVC uses the ARM64X machine type for ARM64EC targets in the common linker
1447 if (isArm64EC(machine))
1448 machine = ARM64X;
1449 fillLinkerVerRecord(cs, machine);
1582 fillLinkerVerRecord(cs, ctx.config.machine);
1680 dbiBuilder.setMachineType(ctx.config.machine);
1754 llvm_unreachable("unknown machine type");