| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | WindowsMachineFlag.h | 20 enum MachineTypes : unsigned; 25 StringRef machineToStr(COFF::MachineTypes MT); 29 COFF::MachineTypes getMachineType(StringRef S);
|
| H A D | COFFModuleDefinition.h | 46 parseCOFFModuleDefinition(MemoryBufferRef MB, COFF::MachineTypes Machine,
|
| H A D | COFFImportFile.h | 108 COFF::MachineTypes Machine, bool MinGW);
|
| H A D | WindowsResource.h | 261 writeWindowsResourceCOFF(llvm::COFF::MachineTypes MachineType,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | WindowsMachineFlag.cpp | 22 COFF::MachineTypes llvm::getMachineType(StringRef S) { in getMachineType() 23 return StringSwitch<COFF::MachineTypes>(S.lower()) in getMachineType() 31 StringRef llvm::machineToStr(COFF::MachineTypes MT) { in machineToStr()
|
| H A D | COFFImportFile.cpp | 32 static bool is32bit(MachineTypes Machine) { in is32bit() 45 static uint16_t getImgRelRelocation(MachineTypes Machine) { in getImgRelRelocation() 93 MachineTypes Machine, bool MinGW) { in getNameType() 140 MachineTypes Machine; 148 ObjectFactory(StringRef S, MachineTypes M) in ObjectFactory() 573 MachineTypes Machine, bool MinGW) { in writeImportLibrary()
|
| H A D | COFFModuleDefinition.cpp | 148 explicit Parser(StringRef S, MachineTypes M, bool B) in Parser() 356 MachineTypes Machine; 362 MachineTypes Machine, in parseCOFFModuleDefinition()
|
| H A D | WindowsResource.cpp | 603 WindowsResourceCOFFWriter(COFF::MachineTypes MachineType, 624 COFF::MachineTypes MachineType; 641 COFF::MachineTypes MachineType, const WindowsResourceParser &Parser, in WindowsResourceCOFFWriter() 1004 writeWindowsResourceCOFF(COFF::MachineTypes MachineType, in writeWindowsResourceCOFF()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/ |
| H A D | DlltoolDriver.cpp | 68 MachineTypes getEmulation(StringRef S) { in getEmulation() 69 return StringSwitch<MachineTypes>(S) in getEmulation() 77 MachineTypes getMachine(Triple T) { in getMachine() 92 MachineTypes getDefaultMachine() { in getDefaultMachine() 150 COFF::MachineTypes Machine = getDefaultMachine(); in dlltoolDriverMain()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/ |
| H A D | LibDriver.cpp | 142 static Expected<COFF::MachineTypes> getCOFFFileMachine(MemoryBufferRef MB) { in getCOFFFileMachine() 157 return static_cast<COFF::MachineTypes>(Machine); in getCOFFFileMachine() 160 static Expected<COFF::MachineTypes> getBitcodeFileMachine(MemoryBufferRef MB) { in getBitcodeFileMachine() 181 COFF::MachineTypes &LibMachine, in appendFile() 228 Expected<COFF::MachineTypes> MaybeFileMachine = in appendFile() 238 COFF::MachineTypes FileMachine = *MaybeFileMachine; in appendFile() 306 COFF::MachineTypes LibMachine = COFF::IMAGE_FILE_MACHINE_UNKNOWN; in libDriverMain()
|
| /freebsd-13.1/contrib/llvm-project/lld/COFF/ |
| H A D | InputFiles.h | 45 using llvm::COFF::MachineTypes; 84 virtual MachineTypes getMachineType() { return IMAGE_FILE_MACHINE_UNKNOWN; } in getMachineType() 144 MachineTypes getMachineType() override; 388 MachineTypes getMachineType() override; 404 MachineTypes getMachineType() override;
|
| H A D | Driver.h | 35 using llvm::COFF::MachineTypes; 176 void parseFunctionPadMin(llvm::opt::Arg *a, llvm::COFF::MachineTypes machine);
|
| H A D | InputFiles.cpp | 714 MachineTypes ObjFile::getMachineType() { in getMachineType() 716 return static_cast<MachineTypes>(coffObj->getMachine()); in getMachineType() 1112 MachineTypes BitcodeFile::getMachineType() { in getMachineType() 1194 MachineTypes DLLFile::getMachineType() { in getMachineType() 1196 return static_cast<MachineTypes>(coffObj->getMachine()); in getMachineType()
|
| H A D | Config.h | 97 llvm::COFF::MachineTypes machine = IMAGE_FILE_MACHINE_UNKNOWN;
|
| H A D | SymbolTable.cpp | 45 MachineTypes mt = file->getMachineType(); in addFile()
|
| H A D | DriverUtils.cpp | 237 void parseFunctionPadMin(llvm::opt::Arg *a, llvm::COFF::MachineTypes machine) { in parseFunctionPadMin()
|
| H A D | PDB.cpp | 1331 static codeview::CPUType toCodeViewMachine(COFF::MachineTypes machine) { in toCodeViewMachine()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | COFFYAML.cpp | 60 void ScalarEnumerationTraits<COFF::MachineTypes>::enumeration( in enumeration() 61 IO &IO, COFF::MachineTypes &Value) { in enumeration() 361 NMachine(IO &) : Machine(COFF::MachineTypes(0)) {} in NMachine() 362 NMachine(IO &, uint16_t M) : Machine(COFF::MachineTypes(M)) {} in NMachine() 366 COFF::MachineTypes Machine;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | COFFYAML.h | 139 struct ScalarEnumerationTraits<COFF::MachineTypes> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 140 static void enumeration(IO &IO, COFF::MachineTypes &Value); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | DbiStreamBuilder.h | 59 void setMachineType(COFF::MachineTypes M);
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | COFF.h | 93 enum MachineTypes : unsigned { enum
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | DbiStreamBuilder.cpp | 57 void DbiStreamBuilder::setMachineType(COFF::MachineTypes M) { in setMachineType()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | COFFDumper.cpp | 340 static const EnumEntry<COFF::MachineTypes> ImageFileMachineType[] = {
|