Home
last modified time | relevance | path

Searched refs:Curr (Results 1 – 11 of 11) sorted by relevance

/external/clang/lib/ARCMigrate/
DTransProtectedScope.cpp64 SwitchCase *Curr = S->getSwitchCaseList(); in VisitSwitchStmt() local
65 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 …]
/external/llvm/lib/Transforms/Scalar/
DADCE.cpp70 Instruction *Curr = Worklist.pop_back_val(); in runOnFunction() local
71 for (Use &OI : Curr->operands()) { in runOnFunction()
DGVN.cpp639 LeaderTableEntry &Curr = LeaderTable[N]; in addToLeaderTable() local
640 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() local
659 while (Curr->Val != I || Curr->BB != BB) { in removeFromLeaderTable()
660 Prev = Curr; in removeFromLeaderTable()
661 Curr = Curr->Next; in removeFromLeaderTable()
[all …]
/external/llvm/tools/llvm-readobj/
DStreamWriter.h130 uint64_t Curr = Value; in printFlags() local
131 while (Curr > 0) { in printFlags()
132 if (Curr & 1) in printFlags()
134 Curr >>= 1; in printFlags()
/external/skia/include/xml/
DSkXMLParser.h132 struct Curr {
147 Curr fCurr;
/external/llvm/tools/llvm-stress/
Dllvm-stress.cpp674 BasicBlock *Curr = Instr->getParent(); in IntroduceControlFlow() local
676 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()
/external/llvm/include/llvm/ADT/
DSparseBitVector.h141 int find_next(unsigned Curr) const {
142 if (Curr >= BITS_PER_ELEMENT)
145 unsigned WordPos = Curr / BITWORD_SIZE;
146 unsigned BitPos = Curr % BITWORD_SIZE;
/external/skia/src/xml/
DSkXMLPullParser.cpp11 static void reset(SkXMLPullParser::Curr* curr) in reset()
/external/llvm/include/llvm/TableGen/
DRecord.h1754 const char *Curr = Start; in RecordParts() local
1755 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()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp2070 Instruction *Curr = I++; in FoldBranchToCommonDest() local
2071 if (isa<CmpInst>(Curr)) { in FoldBranchToCommonDest()
2072 Cond = Curr; in FoldBranchToCommonDest()
2076 if (!checkCSEInPredecessor(Curr, PB)) in FoldBranchToCommonDest()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp2037 std::unique_ptr<TypePromotionAction> Curr = Actions.pop_back_val(); in rollback() local
2038 Curr->undo(); in rollback()