Home
last modified time | relevance | path

Searched refs:Cand (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/CodeGen/
DRegAllocGreedy.cpp257 void growRegion(GlobalSplitCandidate &Cand);
792 void RAGreedy::growRegion(GlobalSplitCandidate &Cand) { in growRegion() argument
795 SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks; in growRegion()
828 if (Cand.PhysReg) in growRegion()
829 addThroughConstraints(Cand.Intf, NewBlocks); in growRegion()
849 bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) { in calcCompactRegion() argument
855 Cand.reset(IntfCache, 0); in calcCompactRegion()
861 SpillPlacer->prepare(Cand.LiveBundles); in calcCompactRegion()
865 if (!addSplitConstraints(Cand.Intf, Cost)) { in calcCompactRegion()
870 growRegion(Cand); in calcCompactRegion()
[all …]
/external/clang/lib/Sema/
DSemaOverload.cpp1097 for (OverloadCandidateSet::iterator Cand = Conversions.begin(); in TryUserDefinedConversion() local
1098 Cand != Conversions.end(); ++Cand) in TryUserDefinedConversion()
1099 if (Cand->Viable) in TryUserDefinedConversion()
1100 ICS.Ambiguous.addConversion(Cand->Function); in TryUserDefinedConversion()
4044 for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(); in FindConversionForRefInit() local
4045 Cand != CandidateSet.end(); ++Cand) in FindConversionForRefInit()
4046 if (Cand->Viable) in FindConversionForRefInit()
4047 ICS.Ambiguous.addConversion(Cand->Function); in FindConversionForRefInit()
7671 for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(), in AddArgumentDependentLookupCandidates() local
7673 Cand != CandEnd; ++Cand) in AddArgumentDependentLookupCandidates()
[all …]
DSemaLookup.cpp2353 Decl *Cand = *I; in LookupSpecialMember() local
2355 if (Cand->isInvalidDecl()) in LookupSpecialMember()
2358 if (UsingShadowDecl *U = dyn_cast<UsingShadowDecl>(Cand)) { in LookupSpecialMember()
2363 Cand = U->getTargetDecl(); in LookupSpecialMember()
2365 if (Cand->isInvalidDecl()) in LookupSpecialMember()
2369 if (CXXMethodDecl *M = dyn_cast<CXXMethodDecl>(Cand)) { in LookupSpecialMember()
2378 dyn_cast<FunctionTemplateDecl>(Cand)) { in LookupSpecialMember()
2389 assert(isa<UsingDecl>(Cand) && "illegal Kind of operator = Decl"); in LookupSpecialMember()
DSemaCodeComplete.cpp3828 for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(), in CodeCompleteCall() local
3830 Cand != CandEnd; ++Cand) { in CodeCompleteCall()
3831 if (Cand->Viable) in CodeCompleteCall()
3832 Results.push_back(ResultCandidate(Cand->Function)); in CodeCompleteCall()
/external/llvm/utils/TableGen/
DCodeGenRegisters.cpp413 CodeGenRegister *Cand = const_cast<CodeGenRegister*>(Leads[i]); in computeSecondarySubRegs() local
415 if (Cand == this || getSubRegIndex(Cand)) in computeSecondarySubRegs()
421 assert(!Cand->ExplicitSubRegs.empty() && in computeSecondarySubRegs()
423 for (unsigned j = 1, e = Cand->ExplicitSubRegs.size(); j != e; ++j) { in computeSecondarySubRegs()
424 if (CodeGenSubRegIndex *Idx = getSubRegIndex(Cand->ExplicitSubRegs[j])) in computeSecondarySubRegs()
440 NewSubRegs.push_back(std::make_pair(Concat, Cand)); in computeSecondarySubRegs()