Index: src/lithium-allocator.cc |
diff --git a/src/lithium-allocator.cc b/src/lithium-allocator.cc |
index 1fd921f191b82beb6f2e840a55ecaf65e7f7e08c..4e1c6e57761fba46c72ad465f718840167626ef8 100644 |
--- a/src/lithium-allocator.cc |
+++ b/src/lithium-allocator.cc |
@@ -1101,7 +1101,7 @@ bool LAllocator::Allocate(LChunk* chunk) { |
void LAllocator::MeetRegisterConstraints() { |
- HPhase phase("L_Register constraints", chunk_); |
+ LPhase phase("L_Register constraints", chunk_); |
first_artificial_register_ = next_virtual_register_; |
const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); |
for (int i = 0; i < blocks->length(); ++i) { |
@@ -1113,7 +1113,7 @@ void LAllocator::MeetRegisterConstraints() { |
void LAllocator::ResolvePhis() { |
- HPhase phase("L_Resolve phis", chunk_); |
+ LPhase phase("L_Resolve phis", chunk_); |
// Process the blocks in reverse order. |
const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); |
@@ -1204,7 +1204,7 @@ HBasicBlock* LAllocator::GetBlock(LifetimePosition pos) { |
void LAllocator::ConnectRanges() { |
- HPhase phase("L_Connect ranges", this); |
+ LPhase phase("L_Connect ranges", this); |
for (int i = 0; i < live_ranges()->length(); ++i) { |
LiveRange* first_range = live_ranges()->at(i); |
if (first_range == NULL || first_range->parent() != NULL) continue; |
@@ -1244,7 +1244,7 @@ bool LAllocator::CanEagerlyResolveControlFlow(HBasicBlock* block) const { |
void LAllocator::ResolveControlFlow() { |
- HPhase phase("L_Resolve control flow", this); |
+ LPhase phase("L_Resolve control flow", this); |
const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); |
for (int block_id = 1; block_id < blocks->length(); ++block_id) { |
HBasicBlock* block = blocks->at(block_id); |
@@ -1265,7 +1265,7 @@ void LAllocator::ResolveControlFlow() { |
void LAllocator::BuildLiveRanges() { |
- HPhase phase("L_Build live ranges", this); |
+ LPhase phase("L_Build live ranges", this); |
InitializeLivenessAnalysis(); |
// Process the blocks in reverse order. |
const ZoneList<HBasicBlock*>* blocks = graph_->blocks(); |
@@ -1377,7 +1377,7 @@ bool LAllocator::SafePointsAreInOrder() const { |
void LAllocator::PopulatePointerMaps() { |
- HPhase phase("L_Populate pointer maps", this); |
+ LPhase phase("L_Populate pointer maps", this); |
const ZoneList<LPointerMap*>* pointer_maps = chunk_->pointer_maps(); |
ASSERT(SafePointsAreInOrder()); |
@@ -1496,14 +1496,14 @@ void LAllocator::ProcessOsrEntry() { |
void LAllocator::AllocateGeneralRegisters() { |
- HPhase phase("L_Allocate general registers", this); |
+ LPhase phase("L_Allocate general registers", this); |
num_registers_ = Register::NumAllocatableRegisters(); |
AllocateRegisters(); |
} |
void LAllocator::AllocateDoubleRegisters() { |
- HPhase phase("L_Allocate double registers", this); |
+ LPhase phase("L_Allocate double registers", this); |
num_registers_ = DoubleRegister::NumAllocatableRegisters(); |
mode_ = DOUBLE_REGISTERS; |
AllocateRegisters(); |