Searched refs:Candidate (Results 1 - 10 of 10) sorted by relevance

/freebsd-10-stable/contrib/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp202 /// This function checks if it is valid to move Candidate to the delay slot
205 bool delayHasHazard(const MachineInstr &Candidate, RegDefsUses &RegDU,
243 bool terminateSearch(const MachineInstr &Candidate) const;
705 bool Filler::delayHasHazard(const MachineInstr &Candidate, RegDefsUses &RegDU, argument
707 bool HasHazard = (Candidate.isImplicitDef() || Candidate.isKill());
709 HasHazard |= IM.hasHazard(Candidate);
710 HasHazard |= RegDU.update(Candidate, 0, Candidate.getNumOperands());
715 bool Filler::terminateSearch(const MachineInstr &Candidate) cons
[all...]
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/
H A DHexagonMachineScheduler.cpp467 SchedCandidate &Candidate,
533 SchedCandidate &Candidate) {
547 int CurrentCost = SchedulingCost(Q, *I, Candidate, RPDelta, false);
550 if (!Candidate.SU) {
551 Candidate.SU = *I;
552 Candidate.RPDelta = RPDelta;
553 Candidate.SCost = CurrentCost;
559 if (CurrentCost > Candidate.SCost) {
561 Candidate.SU = *I;
562 Candidate
466 SchedulingCost(ReadyQueue &Q, SUnit *SU, SchedCandidate &Candidate, RegPressureDelta &Delta, bool verbose) argument
532 pickNodeFromQueue(ReadyQueue &Q, const RegPressureTracker &RPTracker, SchedCandidate &Candidate) argument
[all...]
H A DHexagonMachineScheduler.h228 SUnit *SU, SchedCandidate &Candidate,
233 SchedCandidate &Candidate);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOverload.cpp5508 OverloadCandidate &Candidate = CandidateSet.addCandidate(Args.size()); local
5509 Candidate.FoundDecl = FoundDecl;
5510 Candidate.Function = Function;
5511 Candidate.Viable = true;
5512 Candidate.IsSurrogate = false;
5513 Candidate.IgnoreObjectArgument = false;
5514 Candidate.ExplicitCallArguments = Args.size();
5523 Candidate.Viable = false;
5524 Candidate.FailureKind = ovl_fail_too_many_arguments;
5536 Candidate
5681 OverloadCandidate &Candidate = CandidateSet.addCandidate(Args.size() + 1); local
5789 OverloadCandidate &Candidate = CandidateSet.addCandidate(); local
5839 OverloadCandidate &Candidate = CandidateSet.addCandidate(); local
5937 OverloadCandidate &Candidate = CandidateSet.addCandidate(1); local
6080 OverloadCandidate &Candidate = CandidateSet.addCandidate(); local
6118 OverloadCandidate &Candidate = CandidateSet.addCandidate(Args.size() + 1); local
6272 OverloadCandidate &Candidate = CandidateSet.addCandidate(Args.size()); local
[all...]
H A DSemaLookup.cpp3964 TypoCorrection &Candidate) {
3965 Candidate.setCallbackDistance(CCC.RankCandidate(Candidate));
3966 return Candidate.getEditDistance(false) != TypoCorrection::InvalidDistance;
4295 TypoCorrection &Candidate = I->second.front(); variable
4296 IdentifierInfo *Name = Candidate.getCorrectionAsIdentifierInfo();
4304 !Candidate.WillReplaceSpecifier());
4313 Candidate.WillReplaceSpecifier(true);
4322 QualifiedResults.push_back(Candidate);
4343 Candidate
3963 isCandidateViable(CorrectionCandidateCallback &CCC, TypoCorrection &Candidate) argument
[all...]
H A DSemaOpenMP.cpp384 virtual bool ValidateCandidate(const TypoCorrection &Candidate) { argument
385 NamedDecl *ND = Candidate.getCorrectionDecl();
H A DSemaDeclCXX.cpp7277 bool ValidateCandidate(const TypoCorrection &Candidate) LLVM_OVERRIDE {
7278 NamedDecl *ND = Candidate.getCorrectionDecl();
7289 if (Candidate.WillReplaceSpecifier() && !Candidate.getCorrectionSpecifier())
H A DSemaDecl.cpp7409 NamedDecl *Candidate = Previous.getFoundDecl(); local
7410 if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) {
7412 OldDecl = Candidate;
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/
H A DSink.cpp183 assert(SuccToSinkTo && "Candidate sink target is null");
243 BasicBlock *Candidate = (*I)->getBlock(); local
245 IsAcceptableTarget(Inst, Candidate))
246 SuccToSinkTo = Candidate;
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1670 SchedCandidate &Candidate);

Completed in 191 milliseconds