Searched refs:Curr (Results 1 – 11 of 11) sorted by relevance
64 SwitchCase *Curr = S->getSwitchCaseList(); in VisitSwitchStmt() local65 if (!Curr) in VisitSwitchStmt()67 Stmt *Parent = getCaseParent(Curr); in VisitSwitchStmt()68 Curr = Curr->getNextSwitchCase(); in VisitSwitchStmt()70 while (Curr) { in VisitSwitchStmt()71 if (getCaseParent(Curr) != Parent) in VisitSwitchStmt()73 Curr = Curr->getNextSwitchCase(); in VisitSwitchStmt()77 Curr = S->getSwitchCaseList(); in VisitSwitchStmt()79 while (Curr) { in VisitSwitchStmt()80 Cases.push_back(CaseInfo(Curr,SourceRange(Curr->getLocStart(), NextLoc))); in VisitSwitchStmt()[all …]
70 Instruction *Curr = Worklist.pop_back_val(); in runOnFunction() local71 for (Use &OI : Curr->operands()) { in runOnFunction()
639 LeaderTableEntry &Curr = LeaderTable[N]; in addToLeaderTable() local640 if (!Curr.Val) { in addToLeaderTable()641 Curr.Val = V; in addToLeaderTable()642 Curr.BB = BB; in addToLeaderTable()649 Node->Next = Curr.Next; in addToLeaderTable()650 Curr.Next = Node; in addToLeaderTable()657 LeaderTableEntry* Curr = &LeaderTable[N]; in removeFromLeaderTable() local659 while (Curr->Val != I || Curr->BB != BB) { in removeFromLeaderTable()660 Prev = Curr; in removeFromLeaderTable()661 Curr = Curr->Next; in removeFromLeaderTable()[all …]
130 uint64_t Curr = Value; in printFlags() local131 while (Curr > 0) { in printFlags()132 if (Curr & 1) in printFlags()134 Curr >>= 1; in printFlags()
132 struct Curr {147 Curr fCurr;
674 BasicBlock *Curr = Instr->getParent(); in IntroduceControlFlow() local676 BasicBlock *Next = Curr->splitBasicBlock(Loc, "CF"); in IntroduceControlFlow()677 Instr->moveBefore(Curr->getTerminator()); in IntroduceControlFlow()678 if (Curr != &F->getEntryBlock()) { in IntroduceControlFlow()679 BranchInst::Create(Curr, Next, Instr, Curr->getTerminator()); in IntroduceControlFlow()680 Curr->getTerminator()->eraseFromParent(); in IntroduceControlFlow()
141 int find_next(unsigned Curr) const {142 if (Curr >= BITS_PER_ELEMENT)145 unsigned WordPos = Curr / BITWORD_SIZE;146 unsigned BitPos = Curr % BITWORD_SIZE;
11 static void reset(SkXMLPullParser::Curr* curr) in reset()
1754 const char *Curr = Start; in RecordParts() local1755 bool isDigitPart = ascii_isdigit(Curr[0]); in RecordParts()1757 bool isDigit = ascii_isdigit(Curr[I]); in RecordParts()1761 Start = &Curr[I]; in RecordParts()1762 isDigitPart = ascii_isdigit(Curr[I]); in RecordParts()
2070 Instruction *Curr = I++; in FoldBranchToCommonDest() local2071 if (isa<CmpInst>(Curr)) { in FoldBranchToCommonDest()2072 Cond = Curr; in FoldBranchToCommonDest()2076 if (!checkCSEInPredecessor(Curr, PB)) in FoldBranchToCommonDest()
2037 std::unique_ptr<TypePromotionAction> Curr = Actions.pop_back_val(); in rollback() local2038 Curr->undo(); in rollback()