| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index 6b86088ee7c9462469abb1a21af4559a0b2a0b8e..fc3de67f9e865084f68e0d947cef118235a30bf8 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -2102,11 +2102,11 @@ LInstruction* LChunkBuilder::DoLoadGlobalCell(HLoadGlobalCell* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* global_object = UseFixed(instr->global_object(),
|
| - LoadIC::ReceiverRegister());
|
| + LOperand* global_object =
|
| + UseFixed(instr->global_object(), LoadConvention::ReceiverRegister());
|
| LOperand* vector = NULL;
|
| if (FLAG_vector_ics) {
|
| - vector = FixedTemp(LoadIC::VectorRegister());
|
| + vector = FixedTemp(FullVectorLoadConvention::VectorRegister());
|
| }
|
| LLoadGlobalGeneric* result =
|
| new(zone()) LLoadGlobalGeneric(context, global_object, vector);
|
| @@ -2161,10 +2161,11 @@ LInstruction* LChunkBuilder::DoLoadNamedField(HLoadNamedField* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoLoadNamedGeneric(HLoadNamedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* object = UseFixed(instr->object(), LoadIC::ReceiverRegister());
|
| + LOperand* object =
|
| + UseFixed(instr->object(), LoadConvention::ReceiverRegister());
|
| LOperand* vector = NULL;
|
| if (FLAG_vector_ics) {
|
| - vector = FixedTemp(LoadIC::VectorRegister());
|
| + vector = FixedTemp(FullVectorLoadConvention::VectorRegister());
|
| }
|
|
|
| LInstruction* result =
|
| @@ -2226,11 +2227,12 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* object = UseFixed(instr->object(), LoadIC::ReceiverRegister());
|
| - LOperand* key = UseFixed(instr->key(), LoadIC::NameRegister());
|
| + LOperand* object =
|
| + UseFixed(instr->object(), LoadConvention::ReceiverRegister());
|
| + LOperand* key = UseFixed(instr->key(), LoadConvention::NameRegister());
|
| LOperand* vector = NULL;
|
| if (FLAG_vector_ics) {
|
| - vector = FixedTemp(LoadIC::VectorRegister());
|
| + vector = FixedTemp(FullVectorLoadConvention::VectorRegister());
|
| }
|
|
|
| LInstruction* result =
|
| @@ -2286,9 +2288,10 @@ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* obj = UseFixed(instr->object(), KeyedStoreIC::ReceiverRegister());
|
| - LOperand* key = UseFixed(instr->key(), KeyedStoreIC::NameRegister());
|
| - LOperand* val = UseFixed(instr->value(), KeyedStoreIC::ValueRegister());
|
| + LOperand* obj =
|
| + UseFixed(instr->object(), StoreConvention::ReceiverRegister());
|
| + LOperand* key = UseFixed(instr->key(), StoreConvention::NameRegister());
|
| + LOperand* val = UseFixed(instr->value(), StoreConvention::ValueRegister());
|
|
|
| DCHECK(instr->object()->representation().IsTagged());
|
| DCHECK(instr->key()->representation().IsTagged());
|
| @@ -2362,8 +2365,9 @@ LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* obj = UseFixed(instr->object(), StoreIC::ReceiverRegister());
|
| - LOperand* val = UseFixed(instr->value(), StoreIC::ValueRegister());
|
| + LOperand* obj =
|
| + UseFixed(instr->object(), StoreConvention::ReceiverRegister());
|
| + LOperand* val = UseFixed(instr->value(), StoreConvention::ValueRegister());
|
|
|
| LInstruction* result = new(zone()) LStoreNamedGeneric(context, obj, val);
|
| return MarkAsCall(result, instr);
|
|
|