HomeSort by relevance Sort by last modified time
    Searched refs:CTM (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Object/
MachOUniversal.cpp 116 static bool getCTMForArch(Triple::ArchType Arch, mach::CPUTypeMachine &CTM) {
118 case Triple::x86: CTM = mach::CTM_i386; return true;
119 case Triple::x86_64: CTM = mach::CTM_x86_64; return true;
120 case Triple::arm: CTM = mach::CTM_ARM; return true;
121 case Triple::sparc: CTM = mach::CTM_SPARC; return true;
122 case Triple::ppc: CTM = mach::CTM_PowerPC; return true;
123 case Triple::ppc64: CTM = mach::CTM_PowerPC64; return true;
131 mach::CPUTypeMachine CTM;
132 if (!getCTMForArch(Arch, CTM))
135 if (I->getCPUType() == static_cast<uint32_t>(CTM))
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 420 CheckTypeMatcher *CTM =
423 if (CTM == 0 ||
426 CTM->getType() == MVT::iPTR ||
428 CTM->getResNo() != 0 ||
431 !CTM->canMoveBefore(NewOptionsToMatch[i])) {
463 CheckTypeMatcher *CTM =
466 Matcher *MatcherWithoutCTM = NewOptionsToMatch[i]->unlinkNode(CTM);
467 MVT::SimpleValueType CTMTy = CTM->getType();
468 delete CTM;

Completed in 138 milliseconds