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

/art/compiler/optimizing/
H A Dssa_liveness_analysis.h59 class LiveRange FINAL : public ArenaObject<kArenaAllocSsaLiveness> {
61 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) { function in class:art::FINAL
68 LiveRange* GetNext() const { return next_; }
70 bool IntersectsWith(const LiveRange& other) const {
75 bool IsBefore(const LiveRange& other) const {
83 LiveRange* Dup(ArenaAllocator* allocator) const {
84 return new (allocator) LiveRange(
88 LiveRange* GetLastRange() {
95 LiveRange* next
[all...]

Completed in 45 milliseconds