HomeSort by relevance Sort by last modified time
    Searched defs:TripleName (Results 1 - 3 of 3) sorted by null

  /external/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,
93 MCInstPrinter *iP) : TripleName(tripleName),
106 const std::string &getTripleName() const { return TripleName; }
  /external/llvm/tools/sancov/
sancov.cc 255 auto TripleName = TheTriple.getTriple();
258 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
262 TheTarget->createMCSubtargetInfo(TripleName, "", ""));
263 FailIfEmpty(STI, "no subtarget info for target " + TripleName);
266 TheTarget->createMCRegInfo(TripleName));
267 FailIfEmpty(MRI, "no register info for target " + TripleName);
270 TheTarget->createMCAsmInfo(*MRI, TripleName));
271 FailIfEmpty(AsmInfo, "no asm info for target " + TripleName);
277 FailIfEmpty(DisAsm, "no disassembler info for target " + TripleName);
280 FailIfEmpty(MII, "no instruction info for target " + TripleName);
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 575 std::string TripleName;
580 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr);
583 TripleName = TheTriple.getTriple();
586 MRI.reset(TheTarget->createMCRegInfo(TripleName));
588 return error(Twine("no register info for target ") + TripleName, Context);
590 MAI.reset(TheTarget->createMCAsmInfo(*MRI, TripleName));
592 return error("no asm info for target " + TripleName, Context);
599 MAB = TheTarget->createMCAsmBackend(*MRI, TripleName, "");
601 return error("no asm backend for target " + TripleName, Context);
605 return error("no instr info info for target " + TripleName, Context)
    [all...]

Completed in 161 milliseconds