HomeSort by relevance Sort by last modified time
    Searched refs:Segments (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/CodeGen/
LiveIntervalUnion.h 10 // LiveIntervalUnion is a union of live segments across multiple live virtual
46 // A set of live virtual register segments that supports fast insertion,
65 LiveSegments Segments; // union of virtual reg segments
68 LiveIntervalUnion(unsigned r, Allocator &a) : RepReg(r), Tag(0), Segments(a)
71 // Iterate over all segments in the union of live virtual registers ordered
73 SegmentIter begin() { return Segments.begin(); }
74 SegmentIter end() { return Segments.end(); }
75 SegmentIter find(SlotIndex x) { return Segments.find(x); }
76 bool empty() const { return Segments.empty();
    [all...]
LiveIntervalUnion.cpp 29 // Merge a LiveInterval's segments. Guarantee no overlaps.
35 // Insert each of the virtual register's live segments into the map.
38 SegmentIter SegPos = Segments.find(RegPos->start);
47 // We have reached the end of Segments, so it is no longer necessary to search
56 // Remove a live virtual register's segments from this union.
62 // Remove each of the virtual register's live segments from the map.
65 SegmentIter SegPos = Segments.find(RegPos->start);
73 // Skip all segments that may have been coalesced.
89 for (LiveSegments::const_iterator SI = Segments.begin(); SI.valid(); ++SI) {
99 for (SegmentIter SI = Segments.begin(); SI.valid(); ++SI
    [all...]
  /external/chromium/chrome/browser/history/
history_unittest.cc 244 // PageUsageData vector to test segments.
601 TEST_F(HistoryTest, Segments) {

Completed in 40 milliseconds