Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DLiveInterval.h595 class SubRange : public LiveRange {
597 SubRange *Next;
601 SubRange(unsigned LaneMask) in SubRange() function
606 SubRange(unsigned LaneMask, const LiveRange &Other, in SubRange() function
613 SubRange *SubRanges; ///< Single linked list of subregister live ranges.
654 typedef SingleLinkedListIterator<SubRange> subrange_iterator;
662 typedef SingleLinkedListIterator<const SubRange> const_subrange_iterator;
680 SubRange *createSubRange(BumpPtrAllocator &Allocator, unsigned LaneMask) { in createSubRange()
681 SubRange *Range = new (Allocator) SubRange(LaneMask); in createSubRange()
688 SubRange *createSubRangeFrom(BumpPtrAllocator &Allocator, unsigned LaneMask, in createSubRangeFrom()
[all …]
DLiveIntervalAnalysis.h164 void shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg);
/external/llvm/lib/CodeGen/
DLiveInterval.cpp752 void LiveInterval::freeSubRange(SubRange *S) { in freeSubRange()
753 S->~SubRange(); in freeSubRange()
758 SubRange **NextPtr = &SubRanges; in removeEmptySubRanges()
759 SubRange *I = *NextPtr; in removeEmptySubRanges()
768 SubRange *Next = I->Next; in removeEmptySubRanges()
777 for (SubRange *I = SubRanges, *Next; I != nullptr; I = Next) { in clearSubRanges()
875 SmallVector<std::pair<const SubRange*, const_iterator>, 4> SRs; in constructMainRangeFromSubranges()
878 for (const SubRange &SR : subranges()) { in constructMainRangeFromSubranges()
909 const SubRange &SR = *SRP.first; in constructMainRangeFromSubranges()
1068 for (const SubRange &SR : subranges()) { in print()
[all …]
DLiveRangeCalc.cpp77 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()
DRegisterCoalescer.cpp537 for (LiveInterval::SubRange &S : IntB.subranges()) { in adjustCopiesBackFrom()
762 for (LiveInterval::SubRange &S : IntB.subranges()) { in removeCopyByCommutingDef()
785 for (LiveInterval::SubRange &SA : IntA.subranges()) { in removeCopyByCommutingDef()
790 for (LiveInterval::SubRange &SB : IntB.subranges()) { in removeCopyByCommutingDef()
799 LiveInterval::SubRange *CommonRange; in removeCopyByCommutingDef()
1064 for (const LiveInterval::SubRange &SR : SrcLI.subranges()) { in eliminateUndefCopy()
1085 for (LiveInterval::SubRange &SR : DstLI.subranges()) { in eliminateUndefCopy()
1107 for (const LiveInterval::SubRange &SR : DstLI.subranges()) { in eliminateUndefCopy()
1178 for (LiveInterval::SubRange &S : DstInt->subranges()) { in updateRegDefsUses()
1289 for (LiveInterval::SubRange &S : LI.subranges()) { in joinCopy()
[all …]
DLiveIntervalAnalysis.cpp409 for (LiveInterval::SubRange &S : li->subranges()) { in shrinkToUses()
498 void LiveIntervals::shrinkToUses(LiveInterval::SubRange &SR, unsigned Reg) in shrinkToUses()
643 SmallVector<std::pair<const LiveInterval::SubRange*, in addKillFlags()
667 for (const LiveInterval::SubRange &SR : LI.subranges()) { in addKillFlags()
720 const LiveInterval::SubRange &SR = *SRP.first; in addKillFlags()
948 for (LiveInterval::SubRange &S : LI.subranges()) { in updateAllRanges()
1387 for (LiveInterval::SubRange &S : LI.subranges()) { in repairIntervalsInRange()
1409 for (LiveInterval::SubRange &S : LI.subranges()) { in removeVRegDefAt()
DLiveRegMatrix.cpp82 for (LiveInterval::SubRange &S : VRegInterval.subranges()) { in foreachUnit()
DVirtRegMap.cpp256 for (LiveInterval::SubRange &S : LI.subranges()) { in addMBBLiveIns()
DMachineVerifier.cpp1659 for (const LiveInterval::SubRange &SR : LI.subranges()) { in verifyLiveInterval()
/external/clang/lib/ARCMigrate/
DTransUnbridgedCasts.cpp288 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/clang/lib/Sema/
DSemaChecking.cpp5751 IntRange SubRange in GetExprRange() local
5756 if (SubRange.Width >= OutputTypeRange.Width) in GetExprRange()
5761 return IntRange(SubRange.Width, in GetExprRange()
5762 SubRange.NonNegative || OutputTypeRange.NonNegative); in GetExprRange()