/external/llvm/include/llvm/CodeGen/ |
D | LiveInterval.h | 601 class SubRange : public LiveRange { 603 SubRange *Next; 607 SubRange(LaneBitmask LaneMask) in SubRange() function 612 SubRange(LaneBitmask LaneMask, const LiveRange &Other, in SubRange() function 622 SubRange *SubRanges; ///< Single linked list of subregister live ranges. 663 typedef SingleLinkedListIterator<SubRange> subrange_iterator; 671 typedef SingleLinkedListIterator<const SubRange> const_subrange_iterator; 689 SubRange *createSubRange(BumpPtrAllocator &Allocator, in createSubRange() 691 SubRange *Range = new (Allocator) SubRange(LaneMask); in createSubRange() 698 SubRange *createSubRangeFrom(BumpPtrAllocator &Allocator, in createSubRangeFrom() [all …]
|
D | LiveIntervalAnalysis.h | 164 void shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | LiveInterval.h | 685 class SubRange : public LiveRange { 687 SubRange *Next = nullptr; 691 SubRange(LaneBitmask LaneMask) : LaneMask(LaneMask) {} in SubRange() function 694 SubRange(LaneBitmask LaneMask, const LiveRange &Other, in SubRange() function 703 SubRange *SubRanges = nullptr; ///< Single linked list of subregister live 746 using subrange_iterator = SingleLinkedListIterator<SubRange>; 747 using const_subrange_iterator = SingleLinkedListIterator<const SubRange>; 773 SubRange *createSubRange(BumpPtrAllocator &Allocator, in createSubRange() 775 SubRange *Range = new (Allocator) SubRange(LaneMask); in createSubRange() 782 SubRange *createSubRangeFrom(BumpPtrAllocator &Allocator, in createSubRangeFrom() [all …]
|
/external/llvm/lib/CodeGen/ |
D | RenameIndependentSubregs.cpp | 69 LiveInterval::SubRange *SR; 72 SubRangeInfo(LiveIntervals &LIS, LiveInterval::SubRange &SR, in SubRangeInfo() 161 for (LiveInterval::SubRange &SR : LI.subranges()) { in findComponents() 186 const LiveInterval::SubRange &SR = *SRInfo.SR; in findComponents() 230 const LiveInterval::SubRange &SR = *SRInfo.SR; in rewriteOperands() 258 SmallVector<LiveInterval::SubRange*, 8> SubRanges; in distribute() 261 LiveInterval::SubRange &SR = *SRInfo.SR; in distribute() 280 for (const LiveInterval::SubRange &SR : LI.subranges()) { in subRangeLiveAt() 302 for (const LiveInterval::SubRange &SR : LI.subranges()) { in computeMainRangesFixFlags() 325 for (LiveInterval::SubRange &SR : LI.subranges()) { in computeMainRangesFixFlags()
|
D | LiveInterval.cpp | 788 void LiveInterval::freeSubRange(SubRange *S) { in freeSubRange() 789 S->~SubRange(); in freeSubRange() 794 SubRange **NextPtr = &SubRanges; in removeEmptySubRanges() 795 SubRange *I = *NextPtr; in removeEmptySubRanges() 804 SubRange *Next = I->Next; in removeEmptySubRanges() 813 for (SubRange *I = SubRanges, *Next; I != nullptr; I = Next) { in clearSubRanges() 867 void LiveInterval::SubRange::print(raw_ostream &OS) const { in print() 876 for (const SubRange &SR : subranges()) in print() 885 LLVM_DUMP_METHOD void LiveInterval::SubRange::dump() const { in dump() 917 for (const SubRange &SR : subranges()) { in verify() [all …]
|
D | LiveRangeCalc.cpp | 77 for (LiveInterval::SubRange &S : LI.subranges()) { in calculate() 84 LiveInterval::SubRange *CommonRange; in calculate() 99 LiveInterval::SubRange *NewRange = LI.createSubRange(*Alloc, Mask); in calculate() 118 for (LiveInterval::SubRange &S : LI.subranges()) { in calculate() 136 for (const LiveInterval::SubRange &SR : LI.subranges()) { in constructMainRangeFromSubranges()
|
D | RegisterCoalescer.cpp | 557 for (LiveInterval::SubRange &S : IntB.subranges()) { in adjustCopiesBackFrom() 787 for (LiveInterval::SubRange &S : IntB.subranges()) { in removeCopyByCommutingDef() 810 for (LiveInterval::SubRange &SA : IntA.subranges()) { in removeCopyByCommutingDef() 815 for (LiveInterval::SubRange &SB : IntB.subranges()) { in removeCopyByCommutingDef() 824 LiveInterval::SubRange *CommonRange; in removeCopyByCommutingDef() 1030 for (LiveInterval::SubRange &SR : DstInt.subranges()) { in reMaterializeTrivialDef() 1058 for (LiveInterval::SubRange &SR : DstInt.subranges()) { in reMaterializeTrivialDef() 1064 LiveInterval::SubRange *SR = DstInt.createSubRange(Alloc, MaxMask); in reMaterializeTrivialDef() 1155 for (const LiveInterval::SubRange &SR : SrcLI.subranges()) { in eliminateUndefCopy() 1176 for (LiveInterval::SubRange &SR : DstLI.subranges()) { in eliminateUndefCopy() [all …]
|
D | VirtRegMap.cpp | 249 typedef std::pair<const LiveInterval::SubRange *, in addLiveInsForSubRanges() 254 for (const LiveInterval::SubRange &SR : LI.subranges()) { in addLiveInsForSubRanges() 271 const LiveInterval::SubRange *SR = RangeIterPair.first; in addLiveInsForSubRanges() 343 for (const LiveInterval::SubRange &SR : LI.subranges()) { in readsUndefSubreg()
|
D | LiveIntervalAnalysis.cpp | 413 for (LiveInterval::SubRange &S : li->subranges()) { in shrinkToUses() 507 void LiveIntervals::shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg) in shrinkToUses() 652 SmallVector<std::pair<const LiveInterval::SubRange*, in addKillFlags() 676 for (const LiveInterval::SubRange &SR : LI.subranges()) { in addKillFlags() 729 const LiveInterval::SubRange &SR = *SRP.first; in addKillFlags() 958 for (LiveInterval::SubRange &S : LI.subranges()) { in updateAllRanges() 1525 for (LiveInterval::SubRange &S : LI.subranges()) { in repairIntervalsInRange() 1547 for (LiveInterval::SubRange &S : LI.subranges()) { in removeVRegDefAt()
|
D | LiveRegMatrix.cpp | 80 for (LiveInterval::SubRange &S : VRegInterval.subranges()) { in foreachUnit()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | RenameIndependentSubregs.cpp | 69 LiveInterval::SubRange *SR; 72 SubRangeInfo(LiveIntervals &LIS, LiveInterval::SubRange &SR, in SubRangeInfo() 161 for (LiveInterval::SubRange &SR : LI.subranges()) { in findComponents() 186 const LiveInterval::SubRange &SR = *SRInfo.SR; in findComponents() 231 const LiveInterval::SubRange &SR = *SRInfo.SR; in rewriteOperands() 270 SmallVector<LiveInterval::SubRange*, 8> SubRanges; in distribute() 273 LiveInterval::SubRange &SR = *SRInfo.SR; in distribute() 292 for (const LiveInterval::SubRange &SR : LI.subranges()) { in subRangeLiveAt() 314 for (const LiveInterval::SubRange &SR : LI.subranges()) { in computeMainRangesFixFlags() 337 for (LiveInterval::SubRange &SR : LI.subranges()) { in computeMainRangesFixFlags()
|
D | LiveInterval.cpp | 848 void LiveInterval::freeSubRange(SubRange *S) { in freeSubRange() 849 S->~SubRange(); in freeSubRange() 854 SubRange **NextPtr = &SubRanges; in removeEmptySubRanges() 855 SubRange *I = *NextPtr; in removeEmptySubRanges() 864 SubRange *Next = I->Next; in removeEmptySubRanges() 873 for (SubRange *I = SubRanges, *Next; I != nullptr; I = Next) { in clearSubRanges() 883 static void stripValuesNotDefiningMask(unsigned Reg, LiveInterval::SubRange &SR, in stripValuesNotDefiningMask() 932 std::function<void(LiveInterval::SubRange &)> Apply, in refineSubRanges() 936 for (SubRange &SR : subranges()) { in refineSubRanges() 942 SubRange *MatchingRange; in refineSubRanges() [all …]
|
D | RegisterCoalescer.cpp | 670 for (LiveInterval::SubRange &S : IntB.subranges()) { in adjustCopiesBackFrom() 700 for (LiveInterval::SubRange &S : IntA.subranges()) { in adjustCopiesBackFrom() 930 for (LiveInterval::SubRange &S : IntB.subranges()) { in removeCopyByCommutingDef() 957 for (LiveInterval::SubRange &SA : IntA.subranges()) { in removeCopyByCommutingDef() 972 &ShrinkB](LiveInterval::SubRange &SR) { in removeCopyByCommutingDef() 986 for (LiveInterval::SubRange &SB : IntB.subranges()) { in removeCopyByCommutingDef() 1158 for (LiveInterval::SubRange &SR : IntB.subranges()) in removePartialRedundancy() 1187 for (LiveInterval::SubRange &SR : IntB.subranges()) { in removePartialRedundancy() 1385 for (LiveInterval::SubRange &SR : DstInt.subranges()) { in reMaterializeTrivialDef() 1418 for (LiveInterval::SubRange &SR : DstInt.subranges()) { in reMaterializeTrivialDef() [all …]
|
D | VirtRegMap.cpp | 272 std::pair<const LiveInterval::SubRange *, LiveInterval::const_iterator>; in addLiveInsForSubRanges() 277 for (const LiveInterval::SubRange &SR : LI.subranges()) { in addLiveInsForSubRanges() 294 const LiveInterval::SubRange *SR = RangeIterPair.first; in addLiveInsForSubRanges() 367 for (const LiveInterval::SubRange &SR : LI.subranges()) { in readsUndefSubreg()
|
D | LiveIntervals.cpp | 377 for (const LiveInterval::SubRange &SR : I.subranges()) { in extendSegmentsToUses() 454 for (LiveInterval::SubRange &S : li->subranges()) { in shrinkToUses() 553 void LiveIntervals::shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg) { in shrinkToUses() 698 SmallVector<std::pair<const LiveInterval::SubRange*, in addKillFlags() 722 for (const LiveInterval::SubRange &SR : LI.subranges()) { in addKillFlags() 775 const LiveInterval::SubRange &SR = *SRP.first; in addKillFlags() 1009 for (LiveInterval::SubRange &S : LI.subranges()) { in updateAllRanges() 1630 for (LiveInterval::SubRange &S : LI.subranges()) in repairIntervalsInRange() 1655 for (LiveInterval::SubRange &S : LI.subranges()) { in removeVRegDefAt()
|
D | SplitKit.cpp | 407 LiveInterval::SubRange &SplitEditor::getSubRangeForMask(LaneBitmask LM, in getSubRangeForMask() 409 for (LiveInterval::SubRange &S : LI.subranges()) in getSubRangeForMask() 426 for (LiveInterval::SubRange &S : LI.subranges()) { in addDeadDef() 450 for (LiveInterval::SubRange &S : LI.subranges()) in addDeadDef() 531 [Def, &Allocator](LiveInterval::SubRange &SR) { in buildSingleSubRegCopy() 659 for (LiveInterval::SubRange &S : LI->subranges()) in defFromParent() 1282 for (LiveInterval::SubRange &PS : ParentLI.subranges()) { in extendPHIKillRanges() 1288 LiveInterval::SubRange &S = getSubRangeForMask(PS.LaneMask, LI); in extendPHIKillRanges() 1379 for (LiveInterval::SubRange &S : LI.subranges()) { in rewriteAssigned()
|
D | LiveRangeCalc.cpp | 98 [&MO, this](LiveInterval::SubRange &SR) { in calculate() 118 for (LiveInterval::SubRange &S : LI.subranges()) { in calculate() 137 for (const LiveInterval::SubRange &SR : LI.subranges()) { in constructMainRangeFromSubranges()
|
D | LiveRangeEdit.cpp | 48 for (LiveInterval::SubRange &S : OldLI.subranges()) in createEmptyIntervalFrom() 252 for (const LiveInterval::SubRange &S : LI.subranges()) { in useIsKill()
|
D | LiveRegMatrix.cpp | 87 for (LiveInterval::SubRange &S : VRegInterval.subranges()) { in foreachUnit()
|
D | SplitKit.h | 351 LiveInterval::SubRange &getSubRangeForMask(LaneBitmask LM, LiveInterval &LI);
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/ranges/range.adaptors/range.elements/ |
D | general.pass.cpp | 84 using SubRange = std::ranges::subrange<Iter, Sent>; in main() typedef 85 SubRange sr[] = { in main()
|
/external/clang/lib/ARCMigrate/ |
D | TransUnbridgedCasts.cpp | 288 SourceRange SubRange = E->getSubExpr()->IgnoreParenImpCasts()->getSourceRange(); in getBlockMacroRanges() local 289 SourceLocation InnerBegin = SM.getImmediateMacroCallerLoc(SubRange.getBegin()); in getBlockMacroRanges() 290 SourceLocation InnerEnd = SM.getImmediateMacroCallerLoc(SubRange.getEnd()); in getBlockMacroRanges()
|
/external/openscreen/third_party/abseil/src/absl/strings/ |
D | cord.cc | 1006 struct SubRange { struct 1007 SubRange(CordRep* a_node, size_t a_pos, size_t a_n) in SubRange() function 1016 absl::InlinedVector<SubRange, kInlinedVectorSize> todo; in NewSubRange() 1017 todo.push_back(SubRange(node, pos, n)); in NewSubRange() 1019 const SubRange& sr = todo.back(); in NewSubRange() 1041 todo.push_back(SubRange(node->concat()->left, pos, n)); in NewSubRange() 1044 todo.push_back(SubRange(node->concat()->right, pos, n)); in NewSubRange() 1047 todo.push_back(SubRange(nullptr, 0, 0)); // Concat() in NewSubRange() 1048 todo.push_back(SubRange(node->concat()->right, 0, n - left_n)); in NewSubRange() 1049 todo.push_back(SubRange(node->concat()->left, pos, left_n)); in NewSubRange()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/ |
D | cord.cc | 899 struct SubRange { struct 900 SubRange(CordRep* a_node, size_t a_pos, size_t a_n) in SubRange() function 909 absl::InlinedVector<SubRange, kInlinedVectorSize> todo; in NewSubRange() 910 todo.push_back(SubRange(node, pos, n)); in NewSubRange() 912 const SubRange& sr = todo.back(); in NewSubRange() 934 todo.push_back(SubRange(node->concat()->left, pos, n)); in NewSubRange() 937 todo.push_back(SubRange(node->concat()->right, pos, n)); in NewSubRange() 940 todo.push_back(SubRange(nullptr, 0, 0)); // Concat() in NewSubRange() 941 todo.push_back(SubRange(node->concat()->right, 0, n - left_n)); in NewSubRange() 942 todo.push_back(SubRange(node->concat()->left, pos, left_n)); in NewSubRange()
|
/external/libtextclassifier/abseil-cpp/absl/strings/ |
D | cord.cc | 1009 struct SubRange { struct 1010 SubRange(CordRep* a_node, size_t a_pos, size_t a_n) in SubRange() function 1019 absl::InlinedVector<SubRange, kInlinedVectorSize> todo; in NewSubRange() 1020 todo.push_back(SubRange(node, pos, n)); in NewSubRange() 1022 const SubRange& sr = todo.back(); in NewSubRange() 1044 todo.push_back(SubRange(node->concat()->left, pos, n)); in NewSubRange() 1047 todo.push_back(SubRange(node->concat()->right, pos, n)); in NewSubRange() 1050 todo.push_back(SubRange(nullptr, 0, 0)); // Concat() in NewSubRange() 1051 todo.push_back(SubRange(node->concat()->right, 0, n - left_n)); in NewSubRange() 1052 todo.push_back(SubRange(node->concat()->left, pos, left_n)); in NewSubRange()
|