/freebsd/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 269 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) (FALSE) argument 273 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument 274 ((Machine) == EFI_IMAGE_MACHINE_AARCH64) [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | COFF.cpp | 29 static StringRef getMachineName(uint16_t Machine) { 30 switch (Machine) { in getMachineName() argument 82 if (!IsPE && COFFHeader->Machine == COFF::IMAGE_FILE_MACHINE_UNKNOWN && in createLinkGraphFromCOFFObject() 102 uint16_t Machine = in createLinkGraphFromCOFFObject() 103 COFFHeader ? COFFHeader->Machine : COFFBigObjHeader->Machine; in createLinkGraphFromCOFFObject() local 108 << "machine = " << getMachineName(Machine) << "\n"; in createLinkGraphFromCOFFObject() 111 switch (Machine) { in createLinkGraphFromCOFFObject() 117 ObjectBuffer.getBufferIdentifier() + ": " + getMachineName(Machine)); in createLinkGraphFromCOFFObject()
|
/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/ |
H A D | DlltoolDriver.cpp | 115 bool parseModuleDefinition(StringRef DefFileName, MachineTypes Machine, in parseModuleDefinition() argument 129 *MB, Machine, /*MingwDef=*/true, AddUnderscores); in parseModuleDefinition() 186 COFF::MachineTypes Machine = getDefaultMachine(); in dlltoolDriverMain() local 190 Machine = getMachine(T); in dlltoolDriverMain() 193 Machine = getEmulation(Arg->getValue()); in dlltoolDriverMain() 195 if (Machine == IMAGE_FILE_MACHINE_UNKNOWN) { in dlltoolDriverMain() 209 if (!isArm64EC(Machine)) { in dlltoolDriverMain() 219 if (!parseModuleDefinition(Args.getLastArg(OPT_d)->getValue(), Machine, in dlltoolDriverMain() 228 if (Machine == IMAGE_FILE_MACHINE_I386 && Args.hasArg(OPT_k)) { in dlltoolDriverMain() 246 if (!Path.empty() && writeImportLibrary(OutputFile, Path, Exports, Machine, in dlltoolDriverMain()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | COFFImportFile.cpp | 122 static uint16_t getImgRelRelocation(MachineTypes Machine) { in getImgRelRelocation() argument 123 switch (Machine) { in getImgRelRelocation() 173 MachineTypes Machine, bool MinGW) { in getNameType() argument 184 if (Machine == IMAGE_FILE_MACHINE_I386 && Sym.starts_with("_")) in getNameType() 252 MachineTypes Machine); 256 MachineTypes Machine); 546 StringRef ExportName, MachineTypes Machine) { in createShortImport() argument 559 Imp->Machine = Machine; in createShortImport() 579 MachineTypes Machine) { in createWeakExternal() argument 586 u16(Machine), in createWeakExternal() [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() 359 MachineTypes Machine; member in llvm::object::Parser 366 MachineTypes Machine, in parseCOFFModuleDefinition() argument 369 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/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/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/contrib/llvm-project/llvm/lib/IR/ |
H A D | AsmWriter.cpp | 876 ModuleSlotTracker::ModuleSlotTracker(SlotTracker &Machine, const Module *M, in ModuleSlotTracker() argument 878 : M(M), F(F), Machine(&Machine) {} in ModuleSlotTracker() 889 return Machine; in getMachine() 894 Machine = MachineStorage.get(); in getMachine() 896 Machine->setProcessHook(ProcessModuleHookFn); in getMachine() 898 Machine->setProcessHook(ProcessFunctionHookFn); in getMachine() 899 return Machine; in getMachine() 911 Machine->purgeFunction(); in incorporateFunction() 912 Machine->incorporateFunction(&F); in incorporateFunction() 918 return Machine->getLocalSlot(V); in getLocalSlot() [all …]
|
/freebsd/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/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVSystemOperands.td | 31 // Privilege Mode: User = 0, System = 1 or Machine = 3. 220 // Machine Information Registers 230 // Machine Trap Setup 243 // Machine Trap Handling 255 // Machine Configuration 266 // Machine Protection and Translation 280 // Machine Counter and Timers 299 // Machine Counter Setup 383 // Machine-level CSRs
|
/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/ |
H A D | LibDriver.cpp | 168 uint16_t Machine = (*Obj)->getMachine(); in getCOFFFileMachine() local 169 if (Machine != COFF::IMAGE_FILE_MACHINE_I386 && in getCOFFFileMachine() 170 Machine != COFF::IMAGE_FILE_MACHINE_AMD64 && in getCOFFFileMachine() 171 Machine != COFF::IMAGE_FILE_MACHINE_ARMNT && !COFF::isAnyArm64(Machine)) { in getCOFFFileMachine() 173 "unknown machine: " + std::to_string(Machine)); in getCOFFFileMachine() 176 return static_cast<COFF::MachineTypes>(Machine); in getCOFFFileMachine()
|
/freebsd/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/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/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/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | COFFImportFile.h | 76 uint16_t getMachine() const { return getCOFFImportHeader()->Machine; } in getMachine() 140 COFF::MachineTypes Machine, bool MinGW,
|
H A D | COFFModuleDefinition.h | 43 parseCOFFModuleDefinition(MemoryBufferRef MB, COFF::MachineTypes Machine,
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | WinCOFFObjectWriter.cpp | 233 Header.Machine = OWriter.TargetObjectWriter->getMachine(); in WinCOFFWriter() 238 UseOffsetLabels = COFF::isAnyArm64(Header.Machine); in WinCOFFWriter() 470 W.write<uint16_t>(Header.Machine); in WriteFileHeader() 481 W.write<uint16_t>(Header.Machine); in WriteFileHeader() 797 Header.Machine = OWriter.TargetObjectWriter->getMachine(); in reset() 918 if ((Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64 && in recordRelocation() 920 (Header.Machine == COFF::IMAGE_FILE_MACHINE_I386 && in recordRelocation() 922 (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT && in recordRelocation() 924 (COFF::isAnyArm64(Header.Machine) && in recordRelocation() 928 if (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT) { in recordRelocation() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Passes/ |
H A D | PassBuilderBindings.cpp | 50 TargetMachine *Machine = unwrap(TM); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() local 57 PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
|
/freebsd/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
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/ |
H A D | ARC.td | 1 //===- ARC.td - Describe the ARC Target Machine ------------*- tablegen -*-===//
|