HomeSort by: relevance | last modified time | path
    Searched defs:TripleName (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/MC/MCDisassembler/
Disassembler.h 43 // The TripleName for this disassembler.
44 std::string TripleName;
85 LLVMDisasmContext(std::string TripleName, void *DisInfo, int TagType,
96 : TripleName(std::move(TripleName)), DisInfo(DisInfo), TagType(TagType),
101 const std::string &getTripleName() const { return TripleName; }
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mc-assemble-fuzzer/
llvm-mc-assemble-fuzzer.cpp 41 TripleName("triple", cl::desc("Target triple to assemble for, "
120 << ": error: this target '" << TripleName
136 Triple TheTriple(Triple::normalize(TripleName));
159 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
167 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
174 TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr));
183 MCInstPrinter *IP = TheTarget->createMCInstPrinter(Triple(TripleName), OutputAsmVariant,
309 if (TripleName.empty())
310 TripleName = sys::getDefaultTargetTriple();
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ml/
llvm-ml.cpp 89 StringRef TripleName =
94 return Triple(Triple::normalize(TripleName));
243 const std::string &TripleName = TheTriple.getTriple();
269 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
273 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
279 TripleName, /*CPU=*/"", /*Features=*/""));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/lib/
FileAnalysis.cpp 372 std::string TripleName = ObjectTriple.getTriple();
389 RegisterInfo.reset(ObjectTarget->createMCRegInfo(TripleName));
396 ObjectTarget->createMCAsmInfo(*RegisterInfo, TripleName, MCOptions));
401 TripleName, MCPU, Features.getString()));
410 Context.reset(new MCContext(Triple(TripleName), AsmInfo.get(),
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
llvm-objdump.cpp 216 std::string objdump::TripleName;
353 if (TripleName.empty()) {
356 TheTriple.setTriple(Triple::normalize(TripleName));
370 TripleName = TheTriple.getTriple();
979 MCContext &Ctx, const Target *Target, StringRef TripleName,
985 Target->createMCRelocationInfo(TripleName, Ctx));
989 TripleName, nullptr, nullptr, &Symbols, &Ctx, std::move(RelInfo)));
1026 RelInfo.reset(Target->createMCRelocationInfo(TripleName, Ctx));
1028 TripleName, nullptr, nullptr, &Symbols, &Ctx, std::move(RelInfo)));
1205 addSymbolizer(Ctx, TheTarget, TripleName, DisAsm, SectionAddr, Bytes
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
ProfiledBinary.cpp 313 std::string TripleName = TheTriple.getTriple();
316 MRI.reset(TheTarget->createMCRegInfo(TripleName));
318 exitWithError("no register info for target " + TripleName, FileName);
321 AsmInfo.reset(TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
323 exitWithError("no assembly info for target " + TripleName, FileName);
327 TheTarget->createMCSubtargetInfo(TripleName, "", Features.getString()));
329 exitWithError("no subtarget info for target " + TripleName, FileName);
333 exitWithError("no instruction info for target " + TripleName, FileName);
335 MCContext Ctx(Triple(TripleName), AsmInfo.get(), MRI.get(), STI.get());
341 exitWithError("no disassembler for target " + TripleName, FileName)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFStreamer.cpp 32 std::string TripleName;
37 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr);
40 TripleName = TheTriple.getTriple();
43 MRI.reset(TheTarget->createMCRegInfo(TripleName));
45 return error(Twine("no register info for target ") + TripleName, Context),
49 MAI.reset(TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
51 return error("no asm info for target " + TripleName, Context), false;
53 MSTI.reset(TheTarget->createMCSubtargetInfo(TripleName, "", ""));
55 return error("no subtarget info for target " + TripleName, Context), false;
63 return error("no asm backend for target " + TripleName, Context), false
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
llvm-jitlink.cpp 1229 auto TripleName = S.TPC->getTargetTriple().str();
1231 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, ErrorStr);
1233 ExitOnErr(make_error<StringError>("Error accessing target '" + TripleName +
1238 TheTarget->createMCSubtargetInfo(TripleName, "", ""));
1241 make_error<StringError>("Unable to create subtarget for " + TripleName,
1244 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
1248 TripleName,
1253 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
1256 TripleName,
1259 MCContext Ctx(Triple(TripleName), MAI.get(), MRI.get(), STI.get())
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/sancov/
sancov.cpp 710 auto TripleName = TheTriple.getTriple();
713 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
717 TheTarget->createMCSubtargetInfo(TripleName, "", ""));
718 failIfEmpty(STI, "no subtarget info for target " + TripleName);
721 TheTarget->createMCRegInfo(TripleName));
722 failIfEmpty(MRI, "no register info for target " + TripleName);
726 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
727 failIfEmpty(AsmInfo, "no asm info for target " + TripleName);
732 failIfEmpty(DisAsm, "no disassembler info for target " + TripleName);
735 failIfEmpty(MII, "no instruction info for target " + TripleName);
    [all...]

Completed in 33 milliseconds