| Index: src/x87/lithium-x87.cc
|
| diff --git a/src/x87/lithium-x87.cc b/src/x87/lithium-x87.cc
|
| index f2eb9f0a00e8de13145c426b4f68c41f06770d23..35d3e3f5b479a22569154702f8c2feb34f44e7d3 100644
|
| --- a/src/x87/lithium-x87.cc
|
| +++ b/src/x87/lithium-x87.cc
|
| @@ -2079,11 +2079,11 @@ LInstruction* LChunkBuilder::DoLoadGlobalCell(HLoadGlobalCell* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| - 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 =
|
| @@ -2140,10 +2140,11 @@ LInstruction* LChunkBuilder::DoLoadNamedField(HLoadNamedField* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoLoadNamedGeneric(HLoadNamedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| - 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());
|
| }
|
| LLoadNamedGeneric* result = new(zone()) LLoadNamedGeneric(
|
| context, object, vector);
|
| @@ -2203,11 +2204,12 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| - 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());
|
| }
|
| LLoadKeyedGeneric* result =
|
| new(zone()) LLoadKeyedGeneric(context, object, key, vector);
|
| @@ -2292,10 +2294,10 @@ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| - LOperand* object = UseFixed(instr->object(),
|
| - KeyedStoreIC::ReceiverRegister());
|
| - LOperand* key = UseFixed(instr->key(), KeyedStoreIC::NameRegister());
|
| - LOperand* value = UseFixed(instr->value(), KeyedStoreIC::ValueRegister());
|
| + LOperand* object =
|
| + UseFixed(instr->object(), StoreConvention::ReceiverRegister());
|
| + LOperand* key = UseFixed(instr->key(), StoreConvention::NameRegister());
|
| + LOperand* value = UseFixed(instr->value(), StoreConvention::ValueRegister());
|
|
|
| DCHECK(instr->object()->representation().IsTagged());
|
| DCHECK(instr->key()->representation().IsTagged());
|
| @@ -2397,8 +2399,9 @@ LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) {
|
|
|
| LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| - LOperand* object = UseFixed(instr->object(), StoreIC::ReceiverRegister());
|
| - LOperand* value = UseFixed(instr->value(), StoreIC::ValueRegister());
|
| + LOperand* object =
|
| + UseFixed(instr->object(), StoreConvention::ReceiverRegister());
|
| + LOperand* value = UseFixed(instr->value(), StoreConvention::ValueRegister());
|
|
|
| LStoreNamedGeneric* result =
|
| new(zone()) LStoreNamedGeneric(context, object, value);
|
|
|