Lines Matching refs:TripleName
417 std::string TripleName; in init() local
421 TargetRegistry::lookupTarget(TripleName, TheTriple, ErrorStr); in init()
425 TripleName = TheTriple.getTriple(); in init()
428 MRI.reset(TheTarget->createMCRegInfo(TripleName)); in init()
431 TripleName, in init()
435 MAI.reset(TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions)); in init()
437 return make_error<StringError>("no asm info for target " + TripleName, in init()
440 MSTI.reset(TheTarget->createMCSubtargetInfo(TripleName, "", "")); in init()
442 return make_error<StringError>("no subtarget info for target " + TripleName, in init()
447 return make_error<StringError>("no asm backend for target " + TripleName, in init()
453 TripleName, in init()
456 TM.reset(TheTarget->createTargetMachine(TripleName, "", "", TargetOptions(), in init()
459 return make_error<StringError>("no target machine for target " + TripleName, in init()
469 return make_error<StringError>("no code emitter for target " + TripleName, in init()
481 TripleName, in init()
488 return make_error<StringError>("no asm printer for target " + TripleName, in init()