Searched defs:LiveRange (Results 1 - 1 of 1) sorted by relevance

/art/compiler/optimizing/
H A Dssa_liveness_analysis.h53 class LiveRange : public ArenaObject { class in namespace:art
55 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) { function in class:art::LiveRange
62 LiveRange* GetNext() const { return next_; }
64 bool IntersectsWith(const LiveRange& other) {
69 bool IsBefore(const LiveRange& other) {
80 LiveRange* next_;
84 DISALLOW_COPY_AND_ASSIGN(LiveRange);
167 first_range_ = last_range_ = new (allocator_) LiveRange(start_block_position, position, nullptr);
177 first_range_ = new (allocator_) LiveRange(start_block_positio
[all...]

Completed in 92 milliseconds