Searched refs:liveness (Results 1 – 7 of 7) sorted by relevance
/art/compiler/optimizing/ |
D | live_ranges_test.cc | 62 SsaLivenessAnalysis liveness(*graph, codegen); in TEST() local 63 liveness.Analyze(); in TEST() 65 LiveInterval* interval = liveness.GetInstructionFromSsaIndex(0)->GetLiveInterval(); in TEST() 108 SsaLivenessAnalysis liveness(*graph, codegen); in TEST() local 109 liveness.Analyze(); in TEST() 111 LiveInterval* interval = liveness.GetInstructionFromSsaIndex(0)->GetLiveInterval(); in TEST() 157 SsaLivenessAnalysis liveness(*graph, codegen); in TEST() local 158 liveness.Analyze(); in TEST() 161 LiveInterval* interval = liveness.GetInstructionFromSsaIndex(1)->GetLiveInterval(); in TEST() 170 interval = liveness.GetInstructionFromSsaIndex(0)->GetLiveInterval(); in TEST() [all …]
|
D | linearize_test.cc | 49 SsaLivenessAnalysis liveness(*graph, codegen); in TestCode() local 50 liveness.Analyze(); in TestCode() 52 ASSERT_EQ(liveness.GetLinearPostOrder().Size(), number_of_blocks); in TestCode() 54 ASSERT_EQ(liveness.GetLinearPostOrder().Get(number_of_blocks - i - 1)->GetBlockId(), in TestCode()
|
D | optimizing_compiler.cc | 139 SsaLivenessAnalysis liveness(*graph, codegen); in TryCompile() local 140 liveness.Analyze(); in TryCompile() 143 RegisterAllocator register_allocator(graph->GetArena(), codegen, liveness); in TryCompile() 158 SsaLivenessAnalysis liveness(*graph, codegen); in TryCompile() local 159 liveness.Analyze(); in TryCompile()
|
D | liveness_test.cc | 53 SsaLivenessAnalysis liveness(*graph, codegen); in TestCode() local 54 liveness.Analyze(); in TestCode() 60 size_t ssa_values = liveness.GetNumberOfSsaValues(); in TestCode() 61 BitVector* live_in = liveness.GetLiveInSet(*block); in TestCode() 63 BitVector* live_out = liveness.GetLiveOutSet(*block); in TestCode() 65 BitVector* kill = liveness.GetKillSet(*block); in TestCode()
|
D | register_allocator_test.cc | 44 SsaLivenessAnalysis liveness(*graph, codegen); in Check() local 45 liveness.Analyze(); in Check() 46 RegisterAllocator register_allocator(&allocator, codegen, liveness); in Check() 301 SsaLivenessAnalysis liveness(*graph, codegen); in TEST() local 302 liveness.Analyze(); in TEST() 303 RegisterAllocator register_allocator(&allocator, codegen, liveness); in TEST() 333 SsaLivenessAnalysis liveness(*graph, codegen); in TEST() local 334 liveness.Analyze(); in TEST()
|
D | ssa_liveness_analysis.h | 560 explicit HLinearOrderIterator(const SsaLivenessAnalysis& liveness) in HLinearOrderIterator() argument 561 : post_order_(liveness.GetLinearPostOrder()), index_(liveness.GetLinearPostOrder().Size()) {} in HLinearOrderIterator() 576 explicit HLinearPostOrderIterator(const SsaLivenessAnalysis& liveness) in HLinearPostOrderIterator() argument 577 : post_order_(liveness.GetLinearPostOrder()), index_(0) {} in HLinearPostOrderIterator()
|
D | register_allocator.cc | 29 const SsaLivenessAnalysis& liveness) in RegisterAllocator() argument 32 liveness_(liveness), in RegisterAllocator()
|