| /freebsd-14.2/sys/contrib/edk2/Include/Uefi/ |
| H A D | UefiBaseType.h | 253 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument 254 ((Machine) == EFI_IMAGE_MACHINE_IA32) 256 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_X64) argument 260 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument 261 ((Machine) == EFI_IMAGE_MACHINE_X64) 263 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_IA32) argument 267 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_ARMTHUMB_MIXED) argument 273 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument 274 ((Machine) == EFI_IMAGE_MACHINE_AARCH64) 280 ((Machine) == EFI_IMAGE_MACHINE_RISCV64) [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | COFF.cpp | 29 static StringRef getMachineName(uint16_t Machine) { in getMachineName() argument 30 switch (Machine) { in getMachineName() 82 if (!IsPE && COFFHeader->Machine == COFF::IMAGE_FILE_MACHINE_UNKNOWN && in createLinkGraphFromCOFFObject() 102 uint16_t Machine = in createLinkGraphFromCOFFObject() local 103 COFFHeader ? COFFHeader->Machine : COFFBigObjHeader->Machine; in createLinkGraphFromCOFFObject() 108 << "machine = " << getMachineName(Machine) << "\n"; in createLinkGraphFromCOFFObject() 111 switch (Machine) { in createLinkGraphFromCOFFObject() 117 ObjectBuffer.getBufferIdentifier() + ": " + getMachineName(Machine)); in createLinkGraphFromCOFFObject()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Object/ |
| H A D | COFFImportFile.cpp | 87 static uint16_t getImgRelRelocation(MachineTypes Machine) { in getImgRelRelocation() argument 88 switch (Machine) { in getImgRelRelocation() 149 if (Machine == IMAGE_FILE_MACHINE_I386 && Sym.starts_with("_")) in getNameType() 217 MachineTypes Machine); 221 MachineTypes Machine); 524 Imp->Machine = Machine; in createShortImport() 551 u16(Machine), in createWeakExternal() 626 MachineTypes Machine, bool MinGW) { in writeImportLibrary() argument 629 isArm64EC(Machine) ? IMAGE_FILE_MACHINE_ARM64 : Machine; in writeImportLibrary() 679 NameType = getNameType(SymbolName, E.Name, Machine, MinGW); in writeImportLibrary() [all …]
|
| H A D | COFFModuleDefinition.cpp | 142 : Lex(S), Machine(M), MingwDef(B), AddUnderscores(AU) { in Parser() 143 if (Machine != IMAGE_FILE_MACHINE_I386) in Parser() 352 MachineTypes Machine; member in llvm::object::Parser 359 MachineTypes Machine, in parseCOFFModuleDefinition() argument 362 return Parser(MB.getBuffer(), Machine, MingwDef, AddUnderscores).parse(); in parseCOFFModuleDefinition()
|
| H A D | ELF.cpp | 23 StringRef llvm::object::getELFRelocationTypeName(uint32_t Machine, in getELFRelocationTypeName() argument 25 switch (Machine) { in getELFRelocationTypeName() 192 uint32_t llvm::object::getELFRelativeRelocationType(uint32_t Machine) { in getELFRelativeRelocationType() argument 193 switch (Machine) { in getELFRelativeRelocationType() 242 StringRef llvm::object::getELFSectionTypeName(uint32_t Machine, unsigned Type) { in getELFSectionTypeName() argument 243 switch (Machine) { in getELFSectionTypeName()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | COFF.h | 65 uint16_t Machine; member 80 uint16_t Machine; member 124 template <typename T> bool isArm64EC(T Machine) { in isArm64EC() argument 125 return Machine == IMAGE_FILE_MACHINE_ARM64EC || in isArm64EC() 126 Machine == IMAGE_FILE_MACHINE_ARM64X; in isArm64EC() 129 template <typename T> bool isAnyArm64(T Machine) { in isAnyArm64() argument 130 return Machine == IMAGE_FILE_MACHINE_ARM64 || isArm64EC(Machine); in isAnyArm64() 133 template <typename T> bool is64Bit(T Machine) { in is64Bit() argument 134 return Machine == IMAGE_FILE_MACHINE_AMD64 || isAnyArm64(Machine); in is64Bit() 774 uint16_t Machine; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/ |
| H A D | DlltoolDriver.cpp | 154 COFF::MachineTypes Machine = getDefaultMachine(); in dlltoolDriverMain() local 158 Machine = getMachine(T); in dlltoolDriverMain() 161 Machine = getEmulation(Arg->getValue()); in dlltoolDriverMain() 163 if (Machine == IMAGE_FILE_MACHINE_UNKNOWN) { in dlltoolDriverMain() 170 *MB, Machine, /*MingwDef=*/true, AddUnderscores); in dlltoolDriverMain() 201 if (Machine == IMAGE_FILE_MACHINE_I386 && Args.hasArg(OPT_k)) { in dlltoolDriverMain() 219 Machine, /*MinGW=*/true)) in dlltoolDriverMain()
|
| /freebsd-14.2/contrib/libxo/tests/xo/saved/ |
| H A D | xo_02.T.out | 12 Machine red has 55 13 Machine green has 55 14 Machine blue has 55
|
| H A D | xo_02.H.out | 1 …Machine </div><div class="data" data-tag="name">red</div><div class="text"> has </div><div class="…
|
| H A D | xo_02.HP.out | 67 <div class="text">Machine </div> 73 <div class="text">Machine </div> 79 <div class="text">Machine </div>
|
| H A D | xo_02.HIPx.out | 67 <div class="text">Machine </div> 73 <div class="text">Machine </div> 79 <div class="text">Machine </div>
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | AsmWriter.cpp | 871 : M(M), F(F), Machine(&Machine) {} in ModuleSlotTracker() 882 return Machine; in getMachine() 892 return Machine; in getMachine() 2511 auto *Machine = WriterCtx.Machine; in WriteAsOperandInternal() local 2513 if (Machine) { in WriteAsOperandInternal() 2537 delete Machine; in WriteAsOperandInternal() 2538 Machine = nullptr; in WriteAsOperandInternal() 2608 SlotTracker &Machine; member in __anon6938d20e0911::AssemblyWriter 4645 for (auto &I : llvm::make_range(Machine.mdn_begin(), Machine.mdn_end())) in writeAllMDNodes() 4687 for (auto &I : llvm::make_range(Machine.as_begin(), Machine.as_end())) in writeAllAttributeGroups() [all …]
|
| /freebsd-14.2/contrib/file/magic/Magdir/ |
| H A D | bm | 4 # bm: file(1) magic for "Birtual Machine", cf. https://github.com/tsoding/bm 6 0 string bm\001\244 Birtual Machine
|
| H A D | parrot | 3 # parrot: file(1) magic for Parrot Virtual Machine
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/ |
| H A D | LibDriver.cpp | 167 uint16_t Machine = (*Obj)->getMachine(); in getCOFFFileMachine() local 168 if (Machine != COFF::IMAGE_FILE_MACHINE_I386 && in getCOFFFileMachine() 169 Machine != COFF::IMAGE_FILE_MACHINE_AMD64 && in getCOFFFileMachine() 170 Machine != COFF::IMAGE_FILE_MACHINE_ARMNT && !COFF::isAnyArm64(Machine)) { in getCOFFFileMachine() 172 "unknown machine: " + std::to_string(Machine)); in getCOFFFileMachine() 175 return static_cast<COFF::MachineTypes>(Machine); in getCOFFFileMachine()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCWinCOFFObjectWriter.h | 26 const unsigned Machine; variable 39 unsigned getMachine() const { return Machine; } in getMachine()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVSystemOperands.td | 31 // Privilege Mode: User = 0, System = 1 or Machine = 3. 214 // Machine Information Registers 224 // Machine Trap Setup 237 // Machine Trap Handling 249 // Machine Configuration 260 // Machine Protection and Translation 274 // Machine Counter and Timers 293 // Machine Counter Setup 367 // Machine-level CSRs
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ModuleSlotTracker.h | 52 SlotTracker *Machine = nullptr; variable 61 ModuleSlotTracker(SlotTracker &Machine, const Module *M,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | COFFYAML.cpp | 366 NMachine(IO &) : Machine(COFF::MachineTypes(0)) {} in NMachine() 367 NMachine(IO &, uint16_t M) : Machine(COFF::MachineTypes(M)) {} in NMachine() 369 uint16_t denormalize(IO &) { return Machine; } in denormalize() 371 COFF::MachineTypes Machine; member 422 if (H.Machine == COFF::IMAGE_FILE_MACHINE_I386) { in mapping() 426 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_AMD64) { in mapping() 430 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT) { in mapping() 434 } else if (COFF::isAnyArm64(H.Machine)) { in mapping() 499 MappingNormalization<NMachine, uint16_t> NM(IO, H.Machine); in mapping() 503 IO.mapRequired("Machine", NM->Machine); in mapping() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | COFFImportFile.h | 94 uint16_t getMachine() const { return getCOFFImportHeader()->Machine; } in getMachine() 142 COFF::MachineTypes Machine, bool MinGW);
|
| H A D | COFFModuleDefinition.h | 43 parseCOFFModuleDefinition(MemoryBufferRef MB, COFF::MachineTypes Machine,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | WinCOFFObjectWriter.cpp | 264 Header.Machine = OWriter.TargetObjectWriter->getMachine(); in WinCOFFWriter() 269 UseOffsetLabels = Header.Machine == COFF::IMAGE_FILE_MACHINE_ARM64; in WinCOFFWriter() 498 W.write<uint16_t>(Header.Machine); in WriteFileHeader() 509 W.write<uint16_t>(Header.Machine); in WriteFileHeader() 828 Header.Machine = OWriter.TargetObjectWriter->getMachine(); in reset() 951 if ((Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64 && in recordRelocation() 953 (Header.Machine == COFF::IMAGE_FILE_MACHINE_I386 && in recordRelocation() 955 (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT && in recordRelocation() 957 (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARM64 && in recordRelocation() 961 if (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT) { in recordRelocation() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Passes/ |
| H A D | PassBuilderBindings.cpp | 49 TargetMachine *Machine = unwrap(TM); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() local 56 PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/soc/qcom/ |
| H A D | qcom,smsm.txt | 1 Qualcomm Shared Memory State Machine 3 The Shared Memory State Machine facilitates broadcasting of single bit state
|
| H A D | qcom,smsm.yaml | 7 title: Qualcomm Shared Memory State Machine 15 The Shared Memory State Machine facilitates broadcasting of single bit state
|