/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/ |
H A D | GVN.h | 205 LeaderTableEntry &Curr = LeaderTable[N]; in addToLeaderTable() local 206 if (!Curr.Val) { in addToLeaderTable() 207 Curr.Val = V; in addToLeaderTable() 208 Curr.BB = BB; in addToLeaderTable() 215 Node->Next = Curr.Next; in addToLeaderTable() 216 Curr.Next = Node; in addToLeaderTable() 223 LeaderTableEntry *Curr = &LeaderTable[N]; in removeFromLeaderTable() local 225 while (Curr && (Curr->Val != I || Curr in removeFromLeaderTable() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
H A D | GsymCreator.cpp | 191 auto Curr = Funcs.begin(); in finalize() local 193 while (Curr != Funcs.end()) { in finalize() 197 if (Prev->Range.intersects(Curr->Range)) { in finalize() 199 if (Prev->Range == Curr->Range) { in finalize() 204 if (*Prev == *Curr) { in finalize() 208 << *Curr << '\n'; in finalize() local 209 Curr = Funcs.erase(Prev); in finalize() 211 if (!Prev->hasRichInfo() && Curr->hasRichInfo()) { in finalize() 214 Curr = Funcs.erase(Prev); in finalize() 219 << *Curr << "\ in finalize() local 227 << *Curr << "\\n"; finalize() local 233 << *Curr << "\\n"; finalize() local [all...] |
H A D | LineTable.cpp | 201 for (const auto &Curr : Lines) { in encode() 202 if (Curr.Addr < BaseAddr) in encode() 206 PRIx64, Curr.Addr, BaseAddr); in encode() 207 if (Curr.Addr < Prev.Addr) in encode() 210 const uint64_t AddrDelta = Curr.Addr - Prev.Addr; in encode() 212 if (Curr.Line > Prev.Line) in encode() 213 LineDelta = Curr.Line - Prev.Line; in encode() 214 else if (Prev.Line > Curr.Line) in encode() 215 LineDelta = -((int32_t)(Prev.Line - Curr.Line)); in encode() 218 if (Curr in encode() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/AggressiveInstCombine/ |
H A D | TruncInstCombine.cpp | 73 Value *Curr = Worklist.back(); in buildTruncExpressionDag() local 75 if (isa<Constant>(Curr)) { in buildTruncExpressionDag() 80 auto *I = dyn_cast<Instruction>(Curr); in buildTruncExpressionDag() 154 Value *Curr = Worklist.back(); in getMinBitWidth() local 156 if (isa<Constant>(Curr)) { in getMinBitWidth() 162 auto *I = cast<Instruction>(Curr); in getMinBitWidth()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/runtime/ |
H A D | wasm-runtime.cpp | 397 int Curr = read(Fd, Iov[I].Ptr.asPtr(), Iov[I].Length); in env$$__syscall145() local 399 if (Curr < 0) { in env$$__syscall145() 402 Count += Curr; in env$$__syscall145() 417 int Curr = write(Fd, Iov[I].Ptr.asPtr(), Iov[I].Length); in env$$__syscall146() local 419 if (Curr < 0) { in env$$__syscall146() 422 Count += Curr; in env$$__syscall146()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCBoolRetToInt.cpp | 78 Value *Curr = WorkList.back(); in findAllDefs() local 80 auto *CurrUser = dyn_cast<User>(Curr); in findAllDefs() 83 if (CurrUser && !isa<CallInst>(Curr)) in findAllDefs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFVerifier.cpp | 217 DWARFDie Curr = Die.getParent(); in verifyDebugInfoCallSite() 218 for (; Curr.isValid() && !Curr.isSubprogramDIE(); Curr = Die.getParent()) { in verifyDebugInfoCallSite() 219 if (Curr.getTag() == DW_TAG_inlined_subroutine) { in verifyDebugInfoCallSite() 221 Curr.dump(OS); in verifyDebugInfoCallSite() 226 if (!Curr.isValid()) { in verifyDebugInfoCallSite() 233 Curr.find({DW_AT_call_all_calls, DW_AT_call_all_source_calls, in verifyDebugInfoCallSite() 239 Curr.dump(OS); in verifyDebugInfoCallSite()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | ScopedPrinter.h | 152 uint64_t Curr = Value; in printFlags() local 153 while (Curr > 0) { in printFlags() 154 if (Curr & 1) in printFlags() 156 Curr >>= 1; in printFlags()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | SparseBitVector.h | 146 /// "Curr" bit. Returns -1 if the next set bit is not found. 147 int find_next(unsigned Curr) const { 148 if (Curr >= BITS_PER_ELEMENT) 151 unsigned WordPos = Curr / BITWORD_SIZE; 152 unsigned BitPos = Curr % BITWORD_SIZE;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | MachineOutliner.cpp | 527 SuffixTreeNode *Curr = ToVisit.back(); in advance() local 533 unsigned Length = Curr->ConcatLen; in advance() 538 for (auto &ChildPair : Curr->Children) { in advance() 551 if (Curr->isRoot()) in advance() 557 N = Curr; in advance()
|
H A D | CodeGenPrepare.cpp | 2841 std::unique_ptr<TypePromotionAction> Curr = Actions.pop_back_val(); in rollback() local 2842 Curr->undo(); in rollback()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | EarlyCSE.cpp | 874 Instruction *Curr = WorkList.pop_back_val(); in handleBranchCondition() local 876 AvailableValues.insert(Curr, TorF); in handleBranchCondition() 878 << Curr->getName() << "' as " << *TorF << " in " in handleBranchCondition() 884 if (unsigned Count = replaceDominatedUsesWith(Curr, TorF, DT, in handleBranchCondition() 891 if (MatchBinOp(Curr, PropagateOpcode)) in handleBranchCondition() 892 for (auto &Op : cast<BinaryOperator>(Curr)->operands()) in handleBranchCondition()
|
H A D | LoopDistribute.cpp | 485 for (auto Curr = PartitionContainer.cbegin(), in cloneLoops() 488 Next != E; ++Curr, ++Next) in cloneLoops() 491 Curr->getDistributedLoop()->getExitingBlock()); in cloneLoops()
|
H A D | IndVarSimplify.cpp | 558 const Instruction *Curr = WorkList.pop_back_val(); in hasHardUserWithinLoop() local 560 if (!L->contains(Curr)) in hasHardUserWithinLoop() 563 if (Curr->mayHaveSideEffects()) in hasHardUserWithinLoop() 566 for (auto U : Curr->users()) { in hasHardUserWithinLoop()
|
H A D | GVN.cpp | 2228 BasicBlock *Curr, unsigned int ValNo) { in performScalarPREInsertion() 2247 VN.phiTranslate(Pred, Curr, VN.lookup(Op), *this); in performScalarPREInsertion() 2227 performScalarPREInsertion(Instruction *Instr, BasicBlock *Pred, BasicBlock *Curr, unsigned int ValNo) performScalarPREInsertion() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | CodeExtractor.cpp | 101 User const *Curr = ToVisit.pop_back_val(); in isBlockValidForExtraction() local 102 if (!Visited.insert(Curr).second) in isBlockValidForExtraction() 104 if (isa<BlockAddress const>(Curr)) in isBlockValidForExtraction() 107 if (isa<Instruction>(Curr) && cast<Instruction>(Curr)->getParent() != &BB) in isBlockValidForExtraction() 110 for (auto const &U : Curr->operands()) { in isBlockValidForExtraction()
|
H A D | SimplifyCFG.cpp | 2607 Instruction *Curr = &*I++; in FoldBranchToCommonDest() local 2608 if (isa<CmpInst>(Curr)) { in FoldBranchToCommonDest() 2609 Cond = Curr; in FoldBranchToCommonDest() 2613 if (!tryCSEWithPredecessor(Curr, PB)) in FoldBranchToCommonDest()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/ |
H A D | Record.h | 1795 const char *Curr = Start; in RecordParts() local 1796 bool isDigitPart = ascii_isdigit(Curr[0]); in RecordParts() 1798 bool isDigit = ascii_isdigit(Curr[I]); in RecordParts() 1802 Start = &Curr[I]; in RecordParts() 1803 isDigitPart = ascii_isdigit(Curr[I]); in RecordParts()
|
/third_party/ffmpeg/libavcodec/ |
H A D | hevc_mvs.c | 78 int Curr = MIN_TB_ADDR_ZS((xCurr >> s->ps.sps->log2_min_tb_size) & s->ps.sps->tb_mask, in z_scan_block_avail() local 82 return N <= Curr; in z_scan_block_avail()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | WasmObjectFile.cpp | 1648 int Curr = Order; in isValidSectionOrder() local 1652 int Next = DisallowedPredecessors[Curr][I]; in isValidSectionOrder() 1665 Curr = WorkList.pop_back_val(); in isValidSectionOrder() 1666 if (Seen[Curr]) in isValidSectionOrder()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 2038 auto *Curr = WorkList.pop_back_val(); in isKnownNonNullFromDominatingCondition() local 2045 if (auto *BO = dyn_cast<BinaryOperator>(Curr)) in isKnownNonNullFromDominatingCondition() 2053 if (const BranchInst *BI = dyn_cast<BranchInst>(Curr)) { in isKnownNonNullFromDominatingCondition() 2061 } else if (Pred == ICmpInst::ICMP_NE && isGuard(Curr) && in isKnownNonNullFromDominatingCondition() 2062 DT->dominates(cast<Instruction>(Curr), CtxI)) { in isKnownNonNullFromDominatingCondition() 3951 // Prev = Curr; // Prev = PHI (Prev_0, Curr) in GetUnderlyingObjects() 3952 // Curr = A[i]; in GetUnderlyingObjects() 3953 // *Prev, *Curr; in GetUnderlyingObjects() 3955 // Prev is tracking Curr on in GetUnderlyingObjects() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 22512 SDValue Curr = In; 22513 SDValue SignExt = Curr; 22532 Curr = DAG.getVectorShuffle(InVT, dl, In, In, Mask); 22533 Curr = DAG.getBitcast(DestVT, Curr); 22536 SignExt = DAG.getNode(X86ISD::VSRAI, dl, DestVT, Curr, 22541 assert(Curr.getValueType() == MVT::v4i32 && "Unexpected input VT"); 22543 SDValue Sign = DAG.getSetCC(dl, MVT::v4i32, Zero, Curr, ISD::SETGT); [all...] |