/external/llvm/lib/Transforms/Scalar/ |
ADCE.cpp | 96 Instruction *Curr = Worklist.pop_back_val(); 99 if (const DILocation *DL = Curr->getDebugLoc()) 102 for (Use &OI : Curr->operands()) {
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/ |
VfrServices.cpp | 190 IFR_BYTE *Curr;
252 Curr = mIfrBytes;
254 while (Curr != NULL) {
258 if (Curr->KeyByte != 0) {
259 fprintf (IfrBinFptr, "/*%c*/ ", Curr->KeyByte);
261 fprintf (IfrBinFptr, "0x%02X, ", Curr->OpcodeByte);
263 Curr = Curr->Next;
310 Curr = mIfrBytes;
312 while (Curr != NULL) { [all...] |
/external/clang/lib/ARCMigrate/ |
TransProtectedScope.cpp | 64 SwitchCase *Curr = S->getSwitchCaseList(); 65 if (!Curr) 67 Stmt *Parent = getCaseParent(Curr); 68 Curr = Curr->getNextSwitchCase(); 70 while (Curr) { 71 if (getCaseParent(Curr) != Parent) 73 Curr = Curr->getNextSwitchCase(); 77 Curr = S->getSwitchCaseList() [all...] |
/external/llvm/include/llvm/Transforms/Scalar/ |
GVN.h | 141 LeaderTableEntry &Curr = LeaderTable[N]; 142 if (!Curr.Val) { 143 Curr.Val = V; 144 Curr.BB = BB; 151 Node->Next = Curr.Next; 152 Curr.Next = Node; 159 LeaderTableEntry *Curr = &LeaderTable[N]; 161 while (Curr && (Curr->Val != I || Curr->BB != BB)) [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCBoolRetToInt.cpp | 67 Value *Curr = WorkList.back(); 69 if (User *CurrUser = dyn_cast<User>(Curr))
|
/external/llvm/include/llvm/Support/ |
ScopedPrinter.h | 151 uint64_t Curr = Value; 152 while (Curr > 0) { 153 if (Curr & 1) 155 Curr >>= 1;
|
/external/llvm/tools/obj2yaml/ |
macho2yaml.cpp | 91 const SectionType *Curr = 93 for (; reinterpret_cast<const void *>(Curr) < End; Curr++) { 96 memcpy((void *)&Sec, Curr, sizeof(SectionType)); 100 Sections.push_back(constructSection(*Curr)); 103 return reinterpret_cast<const char *>(Curr);
|
/external/llvm/tools/llvm-stress/ |
llvm-stress.cpp | 668 BasicBlock *Curr = Instr->getParent(); 670 BasicBlock *Next = Curr->splitBasicBlock(Loc, "CF"); 671 Instr->moveBefore(Curr->getTerminator()); 672 if (Curr != &F->getEntryBlock()) { 673 BranchInst::Create(Curr, Next, Instr, Curr->getTerminator()); 674 Curr->getTerminator()->eraseFromParent();
|
/external/llvm/include/llvm/TableGen/ |
Record.h | [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
GVN.cpp | 487 LeaderTableEntry &Curr = LeaderTable[N]; 488 if (!Curr.Val) { 489 Curr.Val = V; 490 Curr.BB = BB; 497 Node->Next = Curr.Next; 498 Curr.Next = Node; 505 LeaderTableEntry* Curr = &LeaderTable[N]; 507 while (Curr->Val != V || Curr->BB != BB) { 508 Prev = Curr; [all...] |
/external/llvm/lib/CodeGen/ |
CodeGenPrepare.cpp | [all...] |
/external/llvm/lib/Transforms/Utils/ |
SimplifyCFG.cpp | [all...] |