Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: src/arm/lithium-arm.cc

Issue 1287383003: Re-reland: Remove register index/code indirection (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Updated to ToT Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/arm/lithium-arm.h" 5 #include "src/arm/lithium-arm.h"
6 6
7 #include <sstream> 7 #include <sstream>
8 8
9 #include "src/arm/lithium-codegen-arm.h" 9 #include "src/arm/lithium-codegen-arm.h"
10 #include "src/hydrogen-osr.h" 10 #include "src/hydrogen-osr.h"
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 if (i < blocks->length() - 1) next = blocks->at(i + 1); 437 if (i < blocks->length() - 1) next = blocks->at(i + 1);
438 DoBasicBlock(blocks->at(i), next); 438 DoBasicBlock(blocks->at(i), next);
439 if (is_aborted()) return NULL; 439 if (is_aborted()) return NULL;
440 } 440 }
441 status_ = DONE; 441 status_ = DONE;
442 return chunk_; 442 return chunk_;
443 } 443 }
444 444
445 445
446 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { 446 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
447 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, 447 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
448 Register::ToAllocationIndex(reg));
449 } 448 }
450 449
451 450
452 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) { 451 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) {
453 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, 452 return new (zone())
454 DoubleRegister::ToAllocationIndex(reg)); 453 LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, reg.code());
455 } 454 }
456 455
457 456
458 LOperand* LChunkBuilder::UseFixed(HValue* value, Register fixed_register) { 457 LOperand* LChunkBuilder::UseFixed(HValue* value, Register fixed_register) {
459 return Use(value, ToUnallocated(fixed_register)); 458 return Use(value, ToUnallocated(fixed_register));
460 } 459 }
461 460
462 461
463 LOperand* LChunkBuilder::UseFixedDouble(HValue* value, DoubleRegister reg) { 462 LOperand* LChunkBuilder::UseFixedDouble(HValue* value, DoubleRegister reg) {
464 return Use(value, ToUnallocated(reg)); 463 return Use(value, ToUnallocated(reg));
(...skipping 2227 matching lines...) Expand 10 before | Expand all | Expand 10 after
2692 HAllocateBlockContext* instr) { 2691 HAllocateBlockContext* instr) {
2693 LOperand* context = UseFixed(instr->context(), cp); 2692 LOperand* context = UseFixed(instr->context(), cp);
2694 LOperand* function = UseRegisterAtStart(instr->function()); 2693 LOperand* function = UseRegisterAtStart(instr->function());
2695 LAllocateBlockContext* result = 2694 LAllocateBlockContext* result =
2696 new(zone()) LAllocateBlockContext(context, function); 2695 new(zone()) LAllocateBlockContext(context, function);
2697 return MarkAsCall(DefineFixed(result, cp), instr); 2696 return MarkAsCall(DefineFixed(result, cp), instr);
2698 } 2697 }
2699 2698
2700 } // namespace internal 2699 } // namespace internal
2701 } // namespace v8 2700 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698