Searched defs:LiveInterval (Results 1 - 1 of 1) sorted by last modified time

/art/compiler/optimizing/
H A Dssa_liveness_analysis.h96 friend class LiveInterval;
205 class LiveInterval : public ArenaObject<kArenaAllocSsaLiveness> { class in namespace:art
207 static LiveInterval* MakeInterval(ArenaAllocator* allocator,
210 return new (allocator) LiveInterval(allocator, type, instruction);
213 static LiveInterval* MakeSlowPathInterval(ArenaAllocator* allocator, HInstruction* instruction) {
214 return new (allocator) LiveInterval(
218 static LiveInterval* MakeFixedInterval(ArenaAllocator* allocator, int reg, Primitive::Type type) {
219 return new (allocator) LiveInterval(allocator, type, nullptr, true, reg, false);
222 static LiveInterval* MakeTempInterval(ArenaAllocator* allocator, Primitive::Type type) {
223 return new (allocator) LiveInterval(allocato
875 LiveInterval(ArenaAllocator* allocator, function in class:art::LiveInterval
[all...]

Completed in 29 milliseconds