/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | MachOUniversal.cpp | 153 Twine(A.getCPUType()) + ") cpusubtype (" + in MachOUniversalBinary() 161 ") too large for cputype (" + Twine(A.getCPUType()) + in MachOUniversalBinary() 169 " for cputype (" + Twine(A.getCPUType()) + ") cpusubtype (" + in MachOUniversalBinary() 175 Err = malformedError("cputype (" + Twine(A.getCPUType()) + ") " in MachOUniversalBinary() 185 if (A.getCPUType() == B.getCPUType() && in MachOUniversalBinary() 189 "(" + Twine(A.getCPUType()) + ") cpusubtype (" + in MachOUniversalBinary() 199 Err = malformedError("cputype (" + Twine(A.getCPUType()) + ") " in MachOUniversalBinary() 202 Twine(A.getSize()) + ", overlaps cputype (" + Twine(B.getCPUType()) + in MachOUniversalBinary()
|
/external/llvm-project/llvm/lib/Object/ |
D | MachOUniversal.cpp | 173 Twine(A.getCPUType()) + ") cpusubtype (" + in MachOUniversalBinary() 181 ") too large for cputype (" + Twine(A.getCPUType()) + in MachOUniversalBinary() 189 " for cputype (" + Twine(A.getCPUType()) + ") cpusubtype (" + in MachOUniversalBinary() 195 Err = malformedError("cputype (" + Twine(A.getCPUType()) + ") " in MachOUniversalBinary() 205 if (A.getCPUType() == B.getCPUType() && in MachOUniversalBinary() 209 "(" + Twine(A.getCPUType()) + ") cpusubtype (" + in MachOUniversalBinary() 219 Err = malformedError("cputype (" + Twine(A.getCPUType()) + ") " in MachOUniversalBinary() 222 Twine(A.getSize()) + ", overlaps cputype (" + Twine(B.getCPUType()) + in MachOUniversalBinary()
|
D | MachOUniversalWriter.cpp | 99 auto CPU = std::make_pair(MachO::getCPUType(TT), MachO::getCPUSubType(TT)); in getMachoCPUFromTriple() 255 FatArch.cputype = S.getCPUType(); in buildFatArchList()
|
/external/llvm-project/lld/unittests/DriverTests/ |
D | DarwinLdDriverTest.cpp | 135 EXPECT_EQ((uint32_t)llvm::MachO::CPU_TYPE_X86_64, _ctx.getCPUType()); in TEST_F() 142 EXPECT_EQ((uint32_t)llvm::MachO::CPU_TYPE_I386, _ctx.getCPUType()); in TEST_F() 149 EXPECT_EQ((uint32_t)llvm::MachO::CPU_TYPE_ARM, _ctx.getCPUType()); in TEST_F() 156 EXPECT_EQ((uint32_t)llvm::MachO::CPU_TYPE_ARM, _ctx.getCPUType()); in TEST_F() 163 EXPECT_EQ((uint32_t)llvm::MachO::CPU_TYPE_ARM, _ctx.getCPUType()); in TEST_F()
|
/external/llvm-project/llvm/unittests/BinaryFormat/ |
D | MachOTest.cpp | 51 ASSERT_EQ((MachO::CPUType)cantFail(MachO::getCPUType(Triple(StrTriple))), \ in TEST() 64 Expected<uint32_t> Type = MachO::getCPUType(Triple("x86_64-linux-unknown")); in TEST() 70 Expected<uint32_t> Type = MachO::getCPUType(Triple("mips-apple-darwin")); in TEST()
|
/external/llvm-project/llvm/include/llvm/Object/ |
D | MachOUniversal.h | 60 uint32_t getCPUType() const { in getCPUType() function 97 return MachOObjectFile::getArchTriple(getCPUType(), getCPUSubType()); in getTriple() 101 MachOObjectFile::getArchTriple(getCPUType(), getCPUSubType(), in getArchFlagName()
|
D | MachOUniversalWriter.h | 61 uint32_t getCPUType() const { return CPUType; } in getCPUType() function
|
D | TapiUniversal.h | 42 uint32_t getCPUType() const { in getCPUType() function
|
/external/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMAsmBackendDarwin.h | 32 /*Is64Bit=*/false, cantFail(MachO::getCPUType(TT)), Subtype); in createObjectTargetWriter()
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCMachObjectWriter.h | 64 uint32_t getCPUType() const { return CPUType; } in getCPUType() function 173 uint32_t CPUType = TargetObjectWriter->getCPUType(); in isX86_64()
|
/external/llvm/include/llvm/MC/ |
D | MCMachObjectWriter.h | 54 uint32_t getCPUType() const { return CPUType; } in getCPUType() function 156 uint32_t CPUType = TargetObjectWriter->getCPUType(); in isX86_64()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCMachObjectWriter.h | 63 uint32_t getCPUType() const { return CPUType; } in getCPUType() function 170 uint32_t CPUType = TargetObjectWriter->getCPUType(); in isX86_64()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | TapiUniversal.h | 42 uint32_t getCPUType() const { in getCPUType() function
|
D | MachOUniversal.h | 57 uint32_t getCPUType() const { in getCPUType() function
|
/external/llvm-project/llvm/lib/BinaryFormat/ |
D | MachO.cpp | 77 Expected<uint32_t> MachO::getCPUType(const Triple &T) { in getCPUType() function in MachO
|
/external/llvm/include/llvm/Object/ |
D | MachOUniversal.h | 56 uint32_t getCPUType() const { in getCPUType() function
|
/external/llvm-project/llvm/tools/llvm-gsymutil/ |
D | llvm-gsymutil.cpp | 170 static uint32_t getCPUType(MachOObjectFile &MachO) { in getCPUType() function 193 if (Value == getCPUType(Obj)) in filterArch()
|
/external/llvm-project/llvm/tools/llvm-dwarfdump/ |
D | llvm-dwarfdump.cpp | 285 static uint32_t getCPUType(MachOObjectFile &MachO) { in getCPUType() function 302 if (Value == getCPUType(*MachO)) in filterArch()
|
/external/llvm-project/lld/include/lld/ReaderWriter/ |
D | MachOLinkingContext.h | 108 uint32_t getCPUType() const;
|
/external/llvm/lib/Object/ |
D | MachOObjectFile.cpp | 115 static unsigned getCPUType(const MachOObjectFile *O) { in getCPUType() function 1146 unsigned CPUType = getCPUType(this); in getFileFormatName() 1296 return getArch(getCPUType(this)); in getArch() 1985 if (getCPUType(this) == MachO::CPU_TYPE_X86_64) in isRelocationScattered()
|
/external/llvm-project/llvm/tools/llvm-objcopy/MachO/ |
D | MachOObjcopy.cpp | 443 O.getCPUType(), O.getCPUSubType(), in executeObjcopyOnMachOUniversalBinary()
|
/external/llvm/tools/obj2yaml/ |
D | macho2yaml.cpp | 487 arch.cputype = Slice.getCPUType(); in macho2yaml()
|
/external/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
D | AArch64AsmBackend.cpp | 566 uint32_t CPUType = cantFail(MachO::getCPUType(TheTriple)); in createObjectTargetWriter()
|
/external/llvm-project/llvm/tools/llvm-libtool-darwin/ |
D | llvm-libtool-darwin.cpp | 271 Expected<uint32_t> FileCPUTypeOrErr = MachO::getCPUType(TT); in verifyAndAddIRObject()
|
/external/llvm-project/llvm/lib/LTO/ |
D | LTOModule.cpp | 684 return MachO::getCPUType(Triple(Mod->getTargetTriple())); in getMachOCPUType()
|