HomeSort by relevance Sort by last modified time
    Searched defs:Curr (Results 1 - 25 of 25) sorted by null

  /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...]
  /device/linaro/hikey/hifi/xaf/hifi-dpf/include/
xa_profiler.h 74 double Ave=0.0, Curr;
84 Curr = ((double) cycles / samples_decoded * samp_freq / 1000000);
87 p_prof->Sum += Curr;
90 if (p_prof->Peak < Curr) {
91 p_prof->Peak = Curr;
106 (uint32_t)Curr, (uint32_t)Ave, samples_decoded);
110 Curr, Ave, p_prof->Peak, p_prof->Peak_frame, p_prof->id);
  /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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCBoolRetToInt.cpp 79 Value *Curr = WorkList.back();
81 auto *CurrUser = dyn_cast<User>(Curr);
84 if (CurrUser && !isa<CallInst>(Curr))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/AggressiveInstCombine/
TruncInstCombine.cpp 74 Value *Curr = Worklist.back();
76 if (isa<Constant>(Curr)) {
81 auto *I = dyn_cast<Instruction>(Curr);
155 Value *Curr = Worklist.back();
157 if (isa<Constant>(Curr)) {
163 auto *I = cast<Instruction>(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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
ScopedPrinter.h 153 uint64_t Curr = Value;
154 while (Curr > 0) {
155 if (Curr & 1)
157 Curr >>= 1;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
GVN.h 199 LeaderTableEntry &Curr = LeaderTable[N];
200 if (!Curr.Val) {
201 Curr.Val = V;
202 Curr.BB = BB;
209 Node->Next = Curr.Next;
210 Curr.Next = Node;
217 LeaderTableEntry *Curr = &LeaderTable[N];
219 while (Curr && (Curr->Val != I || Curr->BB != BB))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
macho2yaml.cpp 96 const SectionType *Curr =
98 for (; reinterpret_cast<const void *>(Curr) < End; Curr++) {
101 memcpy((void *)&Sec, Curr, sizeof(SectionType));
105 Sections.push_back(constructSection(*Curr));
108 return reinterpret_cast<const char *>(Curr);
173 auto Curr = Start + i * sizeof(MachO::build_tool_version);
175 memcpy((void *)&BV, Curr, sizeof(MachO::build_tool_version));
  /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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 98 User const *Curr = ToVisit.pop_back_val();
99 if (!Visited.insert(Curr).second)
101 if (isa<BlockAddress const>(Curr))
104 if (isa<Instruction>(Curr) && cast<Instruction>(Curr)->getParent() != &BB)
107 for (auto const &U : Curr->operands()) {
    [all...]
SimplifyCFG.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-stress/
llvm-stress.cpp 718 BasicBlock *Curr = Instr->getParent();
720 BasicBlock *Next = Curr->splitBasicBlock(Loc, "CF");
721 Instr->moveBefore(Curr->getTerminator());
722 if (Curr != &F->getEntryBlock()) {
723 BranchInst::Create(Curr, Next, Instr, Curr->getTerminator());
724 Curr->getTerminator()->eraseFromParent();
  /external/swiftshader/third_party/subzero/runtime/
wasm-runtime.cpp 397 int Curr = read(Fd, Iov[I].Ptr.asPtr(), Iov[I].Length);
399 if (Curr < 0) {
402 Count += Curr;
417 int Curr = write(Fd, Iov[I].Ptr.asPtr(), Iov[I].Length);
419 if (Curr < 0) {
422 Count += Curr;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 738 Instruction *Curr = WorkList.pop_back_val();
740 AvailableValues.insert(Curr, TorF);
742 << Curr->getName() << "' as " << *TorF << " in "
748 if (unsigned Count = replaceDominatedUsesWith(Curr, TorF, DT,
755 if (MatchBinOp(Curr, PropagateOpcode))
756 for (auto &Op : cast<BinaryOperator>(Curr)->operands())
    [all...]
  /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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]

Completed in 920 milliseconds