Home
last modified time | relevance | path

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

123456

/freebsd-11-stable/sys/contrib/edk2/Include/Uefi/
HDUefiBaseType.h252 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
253 (((Machine) == EFI_IMAGE_MACHINE_IA32) || ((Machine) == EFI_IMAGE_MACHINE_EBC))
255 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_X64) argument
259 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
260 (((Machine) == EFI_IMAGE_MACHINE_IA64) || ((Machine) == EFI_IMAGE_MACHINE_EBC))
262 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) (FALSE) argument
266 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
267 (((Machine) == EFI_IMAGE_MACHINE_X64) || ((Machine) == EFI_IMAGE_MACHINE_EBC))
269 #define EFI_IMAGE_MACHINE_CROSS_TYPE_SUPPORTED(Machine) ((Machine) == EFI_IMAGE_MACHINE_IA32) argument
273 #define EFI_IMAGE_MACHINE_TYPE_SUPPORTED(Machine) \ argument
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
HDCOFFImportFile.cpp32 static bool is32bit(MachineTypes Machine) { in is32bit() argument
33 switch (Machine) { in is32bit()
45 static uint16_t getImgRelRelocation(MachineTypes Machine) { in getImgRelRelocation() argument
46 switch (Machine) { in getImgRelRelocation()
93 MachineTypes Machine, bool MinGW) { in getNameType() argument
104 if (Machine == IMAGE_FILE_MACHINE_I386 && Sym.startswith("_")) in getNameType()
140 MachineTypes Machine; member in llvm::object::__anon511a27860111::ObjectFactory
149 : Machine(M), ImportName(S), Library(S.drop_back(4)), in ObjectFactory()
187 u16(Machine), in createImportDescriptor()
198 u16(is32bit(Machine) ? IMAGE_FILE_32BIT_MACHINE : C_Invalid), in createImportDescriptor()
[all …]
HDCOFFModuleDefinition.cpp149 : 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()
HDELF.cpp22 StringRef llvm::object::getELFRelocationTypeName(uint32_t Machine, in getELFRelocationTypeName() argument
24 switch (Machine) { in getELFRelocationTypeName()
156 uint32_t llvm::object::getELFRelativeRelocationType(uint32_t Machine) { in getELFRelativeRelocationType() argument
157 switch (Machine) { in getELFRelativeRelocationType()
200 StringRef llvm::object::getELFSectionTypeName(uint32_t Machine, unsigned Type) { in getELFSectionTypeName() argument
201 switch (Machine) { in getELFSectionTypeName()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
HDAsmWriter.cpp826 ModuleSlotTracker::ModuleSlotTracker(SlotTracker &Machine, const Module *M, in ModuleSlotTracker() argument
828 : M(M), F(F), Machine(&Machine) {} in ModuleSlotTracker()
839 return Machine; in getMachine()
844 Machine = MachineStorage.get(); in getMachine()
845 return Machine; in getMachine()
857 Machine->purgeFunction(); in incorporateFunction()
858 Machine->incorporateFunction(&F); in incorporateFunction()
864 return Machine->getLocalSlot(V); in getLocalSlot()
1245 SlotTracker *Machine,
1250 SlotTracker *Machine, const Module *Context,
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
HDHexagonSchedule.td60 // V5 Machine Info +
65 // V55 Machine Info +
69 // V60 Machine Info -
77 // V62 Machine Info +
83 // V65 Machine Info +
89 // V66 Machine Info +
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/
HDDlltoolDriver.cpp122 COFF::MachineTypes Machine = IMAGE_FILE_MACHINE_UNKNOWN; in dlltoolDriverMain() local
124 Machine = getEmulation(Arg->getValue()); in dlltoolDriverMain()
126 if (Machine == IMAGE_FILE_MACHINE_UNKNOWN) { in dlltoolDriverMain()
132 parseCOFFModuleDefinition(*MB, Machine, true); in dlltoolDriverMain()
163 if (Machine == IMAGE_FILE_MACHINE_I386 && Args.getLastArg(OPT_k)) { in dlltoolDriverMain()
181 writeImportLibrary(Def->OutputFile, Path, Def->Exports, Machine, true)) in dlltoolDriverMain()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
HDLibDriver.cpp154 uint16_t Machine = Obj.getMachine(); in getCOFFFileMachine() local
155 if (Machine != COFF::IMAGE_FILE_MACHINE_I386 && in getCOFFFileMachine()
156 Machine != COFF::IMAGE_FILE_MACHINE_AMD64 && in getCOFFFileMachine()
157 Machine != COFF::IMAGE_FILE_MACHINE_ARMNT && in getCOFFFileMachine()
158 Machine != COFF::IMAGE_FILE_MACHINE_ARM64) { in getCOFFFileMachine()
159 llvm::errs() << MB.getBufferIdentifier() << ": unknown machine: " << Machine in getCOFFFileMachine()
164 return static_cast<COFF::MachineTypes>(Machine); in getCOFFFileMachine()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
HDCOFFYAML.cpp360 NMachine(IO &) : Machine(COFF::MachineTypes(0)) {} in NMachine()
361 NMachine(IO &, uint16_t M) : Machine(COFF::MachineTypes(M)) {} in NMachine()
363 uint16_t denormalize(IO &) { return Machine; } in denormalize()
365 COFF::MachineTypes Machine; member
416 if (H.Machine == COFF::IMAGE_FILE_MACHINE_I386) { in mapping()
420 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_AMD64) { in mapping()
424 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT) { in mapping()
428 } else if (H.Machine == COFF::IMAGE_FILE_MACHINE_ARM64) { in mapping()
491 MappingNormalization<NMachine, uint16_t> NM(IO, H.Machine); in mapping()
495 IO.mapRequired("Machine", NM->Machine); in mapping()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDModuleSlotTracker.h37 SlotTracker *Machine = nullptr; variable
41 ModuleSlotTracker(SlotTracker &Machine, const Module *M,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
HDMCWinCOFFObjectWriter.h26 const unsigned Machine; variable
39 unsigned getMachine() const { return Machine; } in getMachine()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
HDRISCVSystemOperands.td25 // Privilege Mode: User = 0, System = 1 or Machine = 3.
176 // Machine Information Registers
185 // Machine Trap Setup
196 // Machine Trap Handling
205 // Machine Protection and Translation
233 // Machine Counter and Timers
304 // Machine Counter Setup
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
HDWinCOFFObjectWriter.cpp157 Header.Machine = TargetObjectWriter->getMachine(); in reset()
238 Header.Machine = TargetObjectWriter->getMachine(); in WinCOFFObjectWriter()
487 W.write<uint16_t>(Header.Machine); in WriteFileHeader()
498 W.write<uint16_t>(Header.Machine); in WriteFileHeader()
776 if ((Header.Machine == COFF::IMAGE_FILE_MACHINE_AMD64 && in recordRelocation()
778 (Header.Machine == COFF::IMAGE_FILE_MACHINE_I386 && in recordRelocation()
782 if (Header.Machine == COFF::IMAGE_FILE_MACHINE_ARMNT) { in recordRelocation()
1091 : Machine(Machine_) {} in MCWinCOFFObjectTargetWriter()
/freebsd-11-stable/contrib/binutils/gas/doc/
HDc-cr16.texi11 @node Machine Dependencies
17 * CR16 Operand Qualifiers:: CR16 Machine Operand Qualifiers
HDc-sparc.texi11 @node Machine Dependencies
20 * Sparc-Directives:: Sparc Machine Directives
127 @section Sparc Machine Directives
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
HDCOFF.h66 uint16_t Machine; member
81 uint16_t Machine; member
704 uint16_t Machine; member
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
HDCOFFModuleDefinition.h46 parseCOFFModuleDefinition(MemoryBufferRef MB, COFF::MachineTypes Machine,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
HDARC.td1 //===- ARC.td - Describe the ARC Target Machine ------------*- tablegen -*-===//
/freebsd-11-stable/contrib/file/magic/Magdir/
HDparrot3 # parrot: file(1) magic for Parrot Virtual Machine
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
HDReader.cpp204 Obj->CoffFileHeader.Machine = CBFH->Machine; in create()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
HDXCore.td1 //===-- XCore.td - Describe the XCore Target Machine -------*- tablegen -*-===//
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
HDLanai.td1 //===- Lanai.td - Describe the Lanai Target Machine --------*- tablegen -*-===//
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/VE/
HDVE.td1 //===-- VE.td - Describe the VE Target Machine -------------*- tablegen -*-===//
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
HDAVR.td1 //===-- AVR.td - Describe the AVR Target Machine ----------*- tablegen -*-===//
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
HDPDBExtras.h39 raw_ostream &operator<<(raw_ostream &OS, const PDB_Machine &Machine);

123456