| Index: src/lithium-allocator.cc
|
| ===================================================================
|
| --- src/lithium-allocator.cc (revision 10869)
|
| +++ src/lithium-allocator.cc (working copy)
|
| @@ -1105,7 +1105,7 @@
|
|
|
|
|
| void LAllocator::MeetRegisterConstraints() {
|
| - HPhase phase("Register constraints", chunk_);
|
| + HPhase 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) {
|
| @@ -1117,7 +1117,7 @@
|
|
|
|
|
| void LAllocator::ResolvePhis() {
|
| - HPhase phase("Resolve phis", chunk_);
|
| + HPhase phase("L Resolve phis", chunk_);
|
|
|
| // Process the blocks in reverse order.
|
| const ZoneList<HBasicBlock*>* blocks = graph_->blocks();
|
| @@ -1207,7 +1207,7 @@
|
|
|
|
|
| void LAllocator::ConnectRanges() {
|
| - HPhase phase("Connect ranges", this);
|
| + HPhase 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;
|
| @@ -1247,7 +1247,7 @@
|
|
|
|
|
| void LAllocator::ResolveControlFlow() {
|
| - HPhase phase("Resolve control flow", this);
|
| + HPhase 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);
|
| @@ -1268,7 +1268,7 @@
|
|
|
|
|
| void LAllocator::BuildLiveRanges() {
|
| - HPhase phase("Build live ranges", this);
|
| + HPhase phase("L Build live ranges", this);
|
| InitializeLivenessAnalysis();
|
| // Process the blocks in reverse order.
|
| const ZoneList<HBasicBlock*>* blocks = graph_->blocks();
|
| @@ -1373,7 +1373,7 @@
|
|
|
|
|
| void LAllocator::PopulatePointerMaps() {
|
| - HPhase phase("Populate pointer maps", this);
|
| + HPhase phase("L Populate pointer maps", this);
|
| const ZoneList<LPointerMap*>* pointer_maps = chunk_->pointer_maps();
|
|
|
| ASSERT(SafePointsAreInOrder());
|
| @@ -1492,14 +1492,14 @@
|
|
|
|
|
| void LAllocator::AllocateGeneralRegisters() {
|
| - HPhase phase("Allocate general registers", this);
|
| + HPhase phase("L Allocate general registers", this);
|
| num_registers_ = Register::kNumAllocatableRegisters;
|
| AllocateRegisters();
|
| }
|
|
|
|
|
| void LAllocator::AllocateDoubleRegisters() {
|
| - HPhase phase("Allocate double registers", this);
|
| + HPhase phase("L Allocate double registers", this);
|
| num_registers_ = DoubleRegister::kNumAllocatableRegisters;
|
| mode_ = DOUBLE_REGISTERS;
|
| AllocateRegisters();
|
|
|