| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | COFFImportFile.cpp | 32 static bool is32bit(MachineTypes Machine) { in is32bit() argument 33 switch (Machine) { in is32bit() 46 switch (Machine) { in getImgRelRelocation() 140 MachineTypes Machine; member in llvm::object::__anon699d2e830111::ObjectFactory 187 u16(Machine), in createImportDescriptor() 326 u16(Machine), in createNullImportDescriptor() 387 u16(Machine), in createNullThunk() 435 if (!is32bit(Machine)) in createNullThunk() 440 if (!is32bit(Machine)) in createNullThunk() 476 Imp->Machine = Machine; in createShortImport() [all …]
|
| H A D | COFFModuleDefinition.cpp | 149 : Lex(S), Machine(M), MingwDef(B) {} in Parser() 244 if (Machine == IMAGE_FILE_MACHINE_I386) { in parseExport() 289 if (Machine == IMAGE_FILE_MACHINE_I386 && !isDecorated(E.AliasTarget, MingwDef)) in parseExport() 356 MachineTypes Machine; member in llvm::object::Parser 362 MachineTypes Machine, in parseCOFFModuleDefinition() argument 364 return Parser(MB.getBuffer(), Machine, MingwDef).parse(); in parseCOFFModuleDefinition()
|
| H A D | ELF.cpp | 22 StringRef llvm::object::getELFRelocationTypeName(uint32_t Machine, in getELFRelocationTypeName() argument 24 switch (Machine) { in getELFRelocationTypeName() 177 uint32_t llvm::object::getELFRelativeRelocationType(uint32_t Machine) { in getELFRelativeRelocationType() argument 178 switch (Machine) { in getELFRelativeRelocationType() 223 StringRef llvm::object::getELFSectionTypeName(uint32_t Machine, unsigned Type) { in getELFSectionTypeName() argument 224 switch (Machine) { in getELFSectionTypeName()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | AsmWriter.cpp | 831 : M(M), F(F), Machine(&Machine) {} in ModuleSlotTracker() 842 return Machine; in getMachine() 852 return Machine; in getMachine() 2479 if (Machine) { in WriteAsOperandInternal() 2503 delete Machine; in WriteAsOperandInternal() 2504 Machine = nullptr; in WriteAsOperandInternal() 2532 if (!Machine) { in WriteAsOperandInternal() 2574 SlotTracker &Machine; member in __anon315e020c0911::AssemblyWriter 4400 for (auto &I : llvm::make_range(Machine.mdn_begin(), Machine.mdn_end())) in writeAllMDNodes() 4441 for (auto &I : llvm::make_range(Machine.as_begin(), Machine.as_end())) in writeAllAttributeGroups() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/ |
| H A D | DlltoolDriver.cpp | 150 COFF::MachineTypes Machine = getDefaultMachine(); in dlltoolDriverMain() local 154 Machine = getMachine(T); in dlltoolDriverMain() 157 Machine = getEmulation(Arg->getValue()); in dlltoolDriverMain() 159 if (Machine == IMAGE_FILE_MACHINE_UNKNOWN) { in dlltoolDriverMain() 165 parseCOFFModuleDefinition(*MB, Machine, true); in dlltoolDriverMain() 196 if (Machine == IMAGE_FILE_MACHINE_I386 && Args.getLastArg(OPT_k)) { in dlltoolDriverMain() 214 writeImportLibrary(Def->OutputFile, Path, Def->Exports, Machine, true)) in dlltoolDriverMain()
|
| /freebsd-13.1/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.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.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.HIPx.out | 67 <div class="text">Machine </div> 73 <div class="text">Machine </div> 79 <div class="text">Machine </div>
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/ |
| H A D | LibDriver.cpp | 148 uint16_t Machine = (*Obj)->getMachine(); in getCOFFFileMachine() local 149 if (Machine != COFF::IMAGE_FILE_MACHINE_I386 && in getCOFFFileMachine() 150 Machine != COFF::IMAGE_FILE_MACHINE_AMD64 && in getCOFFFileMachine() 151 Machine != COFF::IMAGE_FILE_MACHINE_ARMNT && in getCOFFFileMachine() 152 Machine != COFF::IMAGE_FILE_MACHINE_ARM64) { in getCOFFFileMachine() 154 "unknown machine: " + std::to_string(Machine)); in getCOFFFileMachine() 157 return static_cast<COFF::MachineTypes>(Machine); in getCOFFFileMachine()
|
| /freebsd-13.1/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-13.1/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-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | COFFYAML.cpp | 361 NMachine(IO &) : Machine(COFF::MachineTypes(0)) {} in NMachine() 362 NMachine(IO &, uint16_t M) : Machine(COFF::MachineTypes(M)) {} in NMachine() 364 uint16_t denormalize(IO &) { return Machine; } in denormalize() 366 COFF::MachineTypes Machine; member 417 if (H.Machine == COFF::IMAGE_FILE_MACHINE_I386) { in mapping() 421 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_AMD64) { in mapping() 425 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT) { in mapping() 429 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_ARM64) { in mapping() 492 MappingNormalization<NMachine, uint16_t> NM(IO, H.Machine); in mapping() 496 IO.mapRequired("Machine", NM->Machine); in mapping()
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVSystemOperands.td | 31 // Privilege Mode: User = 0, System = 1 or Machine = 3. 198 // Machine Information Registers 207 // Machine Trap Setup 218 // Machine Trap Handling 228 // Machine Protection and Translation 256 // Machine Counter and Timers 327 // Machine Counter Setup
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | WinCOFFObjectWriter.cpp | 164 Header.Machine = TargetObjectWriter->getMachine(); in reset() 246 Header.Machine = TargetObjectWriter->getMachine(); in WinCOFFObjectWriter() 498 W.write<uint16_t>(Header.Machine); in WriteFileHeader() 509 W.write<uint16_t>(Header.Machine); in WriteFileHeader() 794 if ((Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64 && in recordRelocation() 796 (Header.Machine == COFF::IMAGE_FILE_MACHINE_I386 && in recordRelocation() 798 (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT && in recordRelocation() 800 (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARM64 && in recordRelocation() 804 if (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT) { in recordRelocation() 1170 : Machine(Machine_) {} in MCWinCOFFObjectTargetWriter()
|
| /freebsd-13.1/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, None, &PIC); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | COFFModuleDefinition.h | 46 parseCOFFModuleDefinition(MemoryBufferRef MB, COFF::MachineTypes Machine,
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | COFF.h | 66 uint16_t Machine; member 81 uint16_t Machine; member 712 uint16_t Machine; member
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARC.td | 1 //===- ARC.td - Describe the ARC Target Machine ------------*- tablegen -*-===//
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/CSKY/ |
| H A D | CSKY.td | 1 //===-- CSKY.td - Describe the CSKY Target Machine ---------*- tablegen -*-===//
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | Lanai.td | 1 //===- Lanai.td - Describe the Lanai Target Machine --------*- tablegen -*-===//
|