Home
last modified time | relevance | path

Searched refs:Machine (Results 1 – 25 of 133) sorted by relevance

123456

/freebsd/sys/contrib/edk2/Include/Uefi/
H A DUefiBaseType.h261 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
262 ((Machine) == EFI_IMAGE_MACHINE_IA32)
264 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_X64) argument
268 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
269 ((Machine) == EFI_IMAGE_MACHINE_X64)
271 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_IA32) argument
275 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_ARMTHUMB_MIXED) argument
277 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) (FALSE) argument
281 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
282 ((Machine) == EFI_IMAGE_MACHINE_AARCH64)
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFF.cpp27 static StringRef getMachineName(uint16_t Machine) { in getMachineName() argument
28 switch (Machine) { in getMachineName()
81 if (!IsPE && COFFHeader->Machine == COFF::IMAGE_FILE_MACHINE_UNKNOWN && in createLinkGraphFromCOFFObject()
101 uint16_t Machine = in createLinkGraphFromCOFFObject() local
102 COFFHeader ? COFFHeader->Machine : COFFBigObjHeader->Machine; in createLinkGraphFromCOFFObject()
107 << "machine = " << getMachineName(Machine) << "\n"; in createLinkGraphFromCOFFObject()
110 switch (Machine) { in createLinkGraphFromCOFFObject()
116 ObjectBuffer.getBufferIdentifier() + ": " + getMachineName(Machine)); in createLinkGraphFromCOFFObject()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DCOFF.h66 uint16_t Machine; member
81 uint16_t Machine; member
125 template <typename T> bool isArm64EC(T Machine) { in isArm64EC() argument
126 return Machine == IMAGE_FILE_MACHINE_ARM64EC || in isArm64EC()
127 Machine == IMAGE_FILE_MACHINE_ARM64X; in isArm64EC()
130 template <typename T> bool isAnyArm64(T Machine) { in isAnyArm64() argument
131 return Machine == IMAGE_FILE_MACHINE_ARM64 || isArm64EC(Machine); in isAnyArm64()
134 template <typename T> bool is64Bit(T Machine) { in is64Bit() argument
135 return Machine == IMAGE_FILE_MACHINE_AMD64 || isAnyArm64(Machine); in is64Bit()
808 uint16_t Machine; member
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFImportFile.cpp122 static uint16_t getImgRelRelocation(MachineTypes Machine) { in getImgRelRelocation() argument
123 switch (Machine) { in getImgRelRelocation()
175 MachineTypes Machine, bool MinGW) { in getNameType() argument
186 if (Machine == IMAGE_FILE_MACHINE_I386 && Sym.starts_with("_")) in getNameType()
254 MachineTypes Machine);
258 MachineTypes Machine);
548 StringRef ExportName, MachineTypes Machine) { in createShortImport() argument
561 Imp->Machine = Machine; in createShortImport()
581 MachineTypes Machine) { in createWeakExternal() argument
588 u16(Machine), in createWeakExternal()
[all …]
H A DCOFFModuleDefinition.cpp142 : Lex(S), Machine(M), MingwDef(B), AddUnderscores(AU) { in Parser()
143 if (Machine != IMAGE_FILE_MACHINE_I386) in Parser()
362 MachineTypes Machine; member in llvm::object::Parser
369 MachineTypes Machine, in parseCOFFModuleDefinition() argument
372 return Parser(MB.getBuffer(), Machine, MingwDef, AddUnderscores).parse(); in parseCOFFModuleDefinition()
/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/
H A DDlltoolDriver.cpp122 bool parseModuleDefinition(StringRef DefFileName, MachineTypes Machine, in parseModuleDefinition() argument
136 *MB, Machine, /*MingwDef=*/true, AddUnderscores); in parseModuleDefinition()
337 COFF::MachineTypes Machine = getDefaultMachine(); in dlltoolDriverMain() local
341 Machine = getMachine(T); in dlltoolDriverMain()
344 Machine = getEmulation(Arg->getValue()); in dlltoolDriverMain()
346 if (Machine == IMAGE_FILE_MACHINE_UNKNOWN) { in dlltoolDriverMain()
360 if (!isArm64EC(Machine)) { in dlltoolDriverMain()
370 if (!parseModuleDefinition(Args.getLastArg(OPT_d)->getValue(), Machine, in dlltoolDriverMain()
379 if (Machine == IMAGE_FILE_MACHINE_I386 && Args.hasArg(OPT_k)) { in dlltoolDriverMain()
398 if (Error E = writeImportLibrary(OutputFile, Path, Exports, Machine, in dlltoolDriverMain()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilderBindings.cpp52 TargetMachine *Machine, in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
58 PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
104 TargetMachine *Machine = unwrap(TM); in LLVMRunPasses() local
107 return runPasses(Mod, nullptr, Passes, Machine, PassOpts); in LLVMRunPasses()
113 TargetMachine *Machine = unwrap(TM); in LLVMRunPassesOnFunction() local
116 return runPasses(Fun->getParent(), Fun, Passes, Machine, PassOpts); in LLVMRunPassesOnFunction()
/freebsd/contrib/libxo/tests/xo/saved/
H A Dxo_02.T.out12 Machine red has 55
13 Machine green has 55
14 Machine blue has 55
H A Dxo_02.H.out1Machine </div><div class="data" data-tag="name">red</div><div class="text"> has </div><div class="…
H A Dxo_02.HP.out67 <div class="text">Machine </div>
73 <div class="text">Machine </div>
79 <div class="text">Machine </div>
H A Dxo_02.HIPx.out67 <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 DAsmWriter.cpp934 ModuleSlotTracker::ModuleSlotTracker(SlotTracker &Machine, const Module *M, in ModuleSlotTracker() argument
936 : M(M), F(F), Machine(&Machine) {} in ModuleSlotTracker()
947 return Machine; in getMachine()
952 Machine = MachineStorage.get(); in getMachine()
954 Machine->setProcessHook(ProcessModuleHookFn); in getMachine()
956 Machine->setProcessHook(ProcessFunctionHookFn); in getMachine()
957 return Machine; in getMachine()
969 Machine->purgeFunction(); in incorporateFunction()
970 Machine->incorporateFunction(&F); in incorporateFunction()
976 return Machine->getLocalSlot(V); in getLocalSlot()
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dbm4 # bm: file(1) magic for "Birtual Machine", cf. https://github.com/tsoding/bm
6 0 string bm\001\244 Birtual Machine
H A Dparrot3 # parrot: file(1) magic for Parrot Virtual Machine
/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp171 uint16_t Machine = (*Obj)->getMachine(); in getCOFFFileMachine() local
172 if (Machine != COFF::IMAGE_FILE_MACHINE_I386 && in getCOFFFileMachine()
173 Machine != COFF::IMAGE_FILE_MACHINE_AMD64 && in getCOFFFileMachine()
174 Machine != COFF::IMAGE_FILE_MACHINE_R4000 && in getCOFFFileMachine()
175 Machine != COFF::IMAGE_FILE_MACHINE_ARMNT && !COFF::isAnyArm64(Machine)) { in getCOFFFileMachine()
177 "unknown machine: " + std::to_string(Machine)); in getCOFFFileMachine()
180 return static_cast<COFF::MachineTypes>(Machine); in getCOFFFileMachine()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp385 NMachine(IO &) : Machine(COFF::MachineTypes(0)) {} in NMachine()
386 NMachine(IO &, uint16_t M) : Machine(COFF::MachineTypes(M)) {} in NMachine()
388 uint16_t denormalize(IO &) { return Machine; } in denormalize()
390 COFF::MachineTypes Machine; member
441 if (H.Machine == COFF::IMAGE_FILE_MACHINE_I386) { in mapping()
445 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_AMD64) { in mapping()
449 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_R4000) { in mapping()
453 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT) { in mapping()
457 } else if (COFF::isAnyArm64(H.Machine)) { in mapping()
522 MappingNormalization<NMachine, uint16_t> NM(IO, H.Machine); in mapping()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVSystemOperands.td28 // Privilege Mode: User = 0, System = 1 or Machine = 3.
282 // Machine Information Registers
292 // Machine Trap Setup
308 // Machine Trap Handling
321 // Machine Configuration
332 // Machine Protection and Translation
346 // Machine State Enable Registers
364 // Machine Counter and Timers
384 // Machine Counter Setup
442 // Machine-level CSRs
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSlotTracker.h53 SlotTracker *Machine = nullptr; variable
62 ModuleSlotTracker(SlotTracker &Machine, const Module *M,
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCWinCOFFObjectWriter.h26 const unsigned Machine; variable
39 unsigned getMachine() const { return Machine; } in getMachine()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp234 Header.Machine = OWriter.TargetObjectWriter->getMachine(); in WinCOFFWriter()
239 UseOffsetLabels = COFF::isAnyArm64(Header.Machine); in WinCOFFWriter()
469 W.write<uint16_t>(Header.Machine); in WriteFileHeader()
480 W.write<uint16_t>(Header.Machine); in WriteFileHeader()
774 if (Header.Machine != COFF::IMAGE_FILE_MACHINE_R4000 || in assignFileOffsets()
798 Header.Machine = OWriter.TargetObjectWriter->getMachine(); in reset()
921 if ((Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64 && in recordRelocation()
923 (Header.Machine == COFF::IMAGE_FILE_MACHINE_I386 && in recordRelocation()
925 (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT && in recordRelocation()
927 (COFF::isAnyArm64(Header.Machine) && in recordRelocation()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFFImportFile.h77 uint16_t getMachine() const { return getCOFFImportHeader()->Machine; } in getMachine()
141 COFF::MachineTypes Machine, bool MinGW,
H A DCOFFModuleDefinition.h44 parseCOFFModuleDefinition(MemoryBufferRef MB, COFF::MachineTypes Machine,
/freebsd/sys/contrib/device-tree/Bindings/soc/qcom/
H A Dqcom,smsm.txt1 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 DARC.td1 //===- ARC.td - Describe the ARC Target Machine ------------*- tablegen -*-===//
/freebsd/crypto/openssl/crypto/
H A Dparams_idx.c.in21 /* Machine generated TRIE -- generated by util/perl/OpenSSL/paramnames.pm */

123456