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

Unified Diff: runtime/vm/intermediate_language_x64.cc

Issue 10909169: Add support for WritableRegister policy in the register allocator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/intermediate_language_x64.cc
diff --git a/runtime/vm/intermediate_language_x64.cc b/runtime/vm/intermediate_language_x64.cc
index c0ebaea494348aa0d08572d8f6c91940e15658e4..e4060c8797baa20d908ac22fd81bb07afc55eb78 100644
--- a/runtime/vm/intermediate_language_x64.cc
+++ b/runtime/vm/intermediate_language_x64.cc
@@ -932,21 +932,18 @@ void LoadIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
LocationSummary* StoreIndexedInstr::MakeLocationSummary() const {
const intptr_t kNumInputs = 3;
+ const intptr_t kNumTemps =
+ (receiver_type() == kGrowableObjectArrayCid) ? 1 : 0;
+ LocationSummary* locs =
+ new LocationSummary(kNumInputs, kNumTemps, LocationSummary::kNoCall);
+ locs->set_in(0, Location::RequiresRegister());
+ locs->set_in(1, Location::RequiresRegister());
+ locs->set_in(2, value()->NeedsStoreBuffer() ? Location::WritableRegister()
+ : Location::RequiresRegister());
if (receiver_type() == kGrowableObjectArrayCid) {
- const intptr_t kNumTemps = 1;
- LocationSummary* locs =
- new LocationSummary(kNumInputs, kNumTemps, LocationSummary::kNoCall);
- locs->set_in(0, Location::RequiresRegister());
- locs->set_in(1, Location::RequiresRegister());
- locs->set_in(2, Location::RequiresRegister());
locs->set_temp(0, Location::RequiresRegister());
- return locs;
- } else {
- ASSERT(receiver_type() == kArrayCid);
- return LocationSummary::Make(kNumInputs,
- Location::NoLocation(),
- LocationSummary::kNoCall);
}
+ return locs;
}
@@ -961,7 +958,8 @@ void StoreIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
// Note that index is Smi, i.e, times 4.
ASSERT(kSmiTagShift == 1);
if (this->value()->NeedsStoreBuffer()) {
- __ StoreIntoObject(receiver,
+ __ StoreIntoObject(
+ receiver,
FieldAddress(receiver, index, TIMES_4, sizeof(RawArray)),
value);
} else {
@@ -977,7 +975,8 @@ void StoreIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
// Note that index is Smi, i.e, times 4.
ASSERT(kSmiTagShift == 1);
if (this->value()->NeedsStoreBuffer()) {
- __ StoreIntoObject(temp,
+ __ StoreIntoObject(
+ temp,
FieldAddress(temp, index, TIMES_4, sizeof(RawArray)),
value);
} else {
@@ -1019,7 +1018,9 @@ LocationSummary* StoreInstanceFieldInstr::MakeLocationSummary() const {
LocationSummary* summary =
new LocationSummary(kNumInputs, num_temps, LocationSummary::kNoCall);
summary->set_in(0, Location::RequiresRegister());
- summary->set_in(1, Location::RequiresRegister());
+ summary->set_in(1,
+ value()->NeedsStoreBuffer() ? Location::WritableRegister()
+ : Location::RequiresRegister());
return summary;
}
@@ -1029,7 +1030,8 @@ void StoreInstanceFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
Register value_reg = locs()->in(1).reg();
if (this->value()->NeedsStoreBuffer()) {
__ StoreIntoObject(instance_reg,
- FieldAddress(instance_reg, field().Offset()), value_reg);
+ FieldAddress(instance_reg, field().Offset()),
+ value_reg);
} else {
__ StoreIntoObjectNoBarrier(instance_reg,
FieldAddress(instance_reg, field().Offset()), value_reg);
@@ -1053,10 +1055,9 @@ void LoadStaticFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
LocationSummary* StoreStaticFieldInstr::MakeLocationSummary() const {
LocationSummary* locs = new LocationSummary(1, 1, LocationSummary::kNoCall);
- locs->set_in(0, Location::RequiresRegister());
+ locs->set_in(0, value()->NeedsStoreBuffer() ? Location::WritableRegister()
+ : Location::RequiresRegister());
locs->set_temp(0, Location::RequiresRegister());
- locs->set_out(is_used() ? Location::SameAsFirstInput()
- : Location::NoLocation());
return locs;
}
@@ -1064,11 +1065,12 @@ LocationSummary* StoreStaticFieldInstr::MakeLocationSummary() const {
void StoreStaticFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
Register value = locs()->in(0).reg();
Register temp = locs()->temp(0).reg();
- ASSERT(!is_used() || (locs()->out().reg() == value));
__ LoadObject(temp, field());
if (this->value()->NeedsStoreBuffer()) {
- __ StoreIntoObject(temp, FieldAddress(temp, Field::value_offset()), value);
+ __ StoreIntoObject(temp,
Ivan Posva 2012/09/11 11:57:30 ditto
Vyacheslav Egorov (Google) 2012/09/11 12:18:05 Done.
+ FieldAddress(temp, Field::value_offset()),
+ value);
} else {
__ StoreIntoObjectNoBarrier(
temp, FieldAddress(temp, Field::value_offset()), value);

Powered by Google App Engine
This is Rietveld 408576698