| Index: src/x87/lithium-x87.cc
|
| diff --git a/src/x87/lithium-x87.cc b/src/x87/lithium-x87.cc
|
| index 0ad936e86f6ad9db18f349230fef7aaa0209a437..1ff9f911b7a090cf4d32fe66750b70d424bf2eca 100644
|
| --- a/src/x87/lithium-x87.cc
|
| +++ b/src/x87/lithium-x87.cc
|
| @@ -1119,13 +1119,13 @@ LInstruction* LChunkBuilder::DoCallJSFunction(
|
|
|
| LInstruction* LChunkBuilder::DoCallWithDescriptor(
|
| HCallWithDescriptor* instr) {
|
| - const CallInterfaceDescriptor* descriptor = instr->descriptor();
|
| + CallInterfaceDescriptor descriptor = instr->descriptor();
|
| LOperand* target = UseRegisterOrConstantAtStart(instr->target());
|
| ZoneList<LOperand*> ops(instr->OperandCount(), zone());
|
| ops.Add(target, zone());
|
| for (int i = 1; i < instr->OperandCount(); i++) {
|
| - LOperand* op = UseFixed(instr->OperandAt(i),
|
| - descriptor->GetParameterRegister(i - 1));
|
| + LOperand* op =
|
| + UseFixed(instr->OperandAt(i), descriptor.GetParameterRegister(i - 1));
|
| ops.Add(op, zone());
|
| }
|
|
|
| @@ -2080,10 +2080,10 @@ LInstruction* LChunkBuilder::DoLoadGlobalCell(HLoadGlobalCell* instr) {
|
| LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| LOperand* global_object =
|
| - UseFixed(instr->global_object(), LoadConvention::ReceiverRegister());
|
| + UseFixed(instr->global_object(), LoadDescriptor::ReceiverRegister());
|
| LOperand* vector = NULL;
|
| if (FLAG_vector_ics) {
|
| - vector = FixedTemp(FullVectorLoadConvention::VectorRegister());
|
| + vector = FixedTemp(VectorLoadICDescriptor::VectorRegister());
|
| }
|
|
|
| LLoadGlobalGeneric* result =
|
| @@ -2141,10 +2141,10 @@ LInstruction* LChunkBuilder::DoLoadNamedField(HLoadNamedField* instr) {
|
| LInstruction* LChunkBuilder::DoLoadNamedGeneric(HLoadNamedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| LOperand* object =
|
| - UseFixed(instr->object(), LoadConvention::ReceiverRegister());
|
| + UseFixed(instr->object(), LoadDescriptor::ReceiverRegister());
|
| LOperand* vector = NULL;
|
| if (FLAG_vector_ics) {
|
| - vector = FixedTemp(FullVectorLoadConvention::VectorRegister());
|
| + vector = FixedTemp(VectorLoadICDescriptor::VectorRegister());
|
| }
|
| LLoadNamedGeneric* result = new(zone()) LLoadNamedGeneric(
|
| context, object, vector);
|
| @@ -2205,11 +2205,11 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) {
|
| LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| LOperand* object =
|
| - UseFixed(instr->object(), LoadConvention::ReceiverRegister());
|
| - LOperand* key = UseFixed(instr->key(), LoadConvention::NameRegister());
|
| + UseFixed(instr->object(), LoadDescriptor::ReceiverRegister());
|
| + LOperand* key = UseFixed(instr->key(), LoadDescriptor::NameRegister());
|
| LOperand* vector = NULL;
|
| if (FLAG_vector_ics) {
|
| - vector = FixedTemp(FullVectorLoadConvention::VectorRegister());
|
| + vector = FixedTemp(VectorLoadICDescriptor::VectorRegister());
|
| }
|
| LLoadKeyedGeneric* result =
|
| new(zone()) LLoadKeyedGeneric(context, object, key, vector);
|
| @@ -2295,9 +2295,9 @@ LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
|
| LInstruction* LChunkBuilder::DoStoreKeyedGeneric(HStoreKeyedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| LOperand* object =
|
| - UseFixed(instr->object(), StoreConvention::ReceiverRegister());
|
| - LOperand* key = UseFixed(instr->key(), StoreConvention::NameRegister());
|
| - LOperand* value = UseFixed(instr->value(), StoreConvention::ValueRegister());
|
| + UseFixed(instr->object(), StoreDescriptor::ReceiverRegister());
|
| + LOperand* key = UseFixed(instr->key(), StoreDescriptor::NameRegister());
|
| + LOperand* value = UseFixed(instr->value(), StoreDescriptor::ValueRegister());
|
|
|
| DCHECK(instr->object()->representation().IsTagged());
|
| DCHECK(instr->key()->representation().IsTagged());
|
| @@ -2400,8 +2400,8 @@ LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) {
|
| LInstruction* LChunkBuilder::DoStoreNamedGeneric(HStoreNamedGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), esi);
|
| LOperand* object =
|
| - UseFixed(instr->object(), StoreConvention::ReceiverRegister());
|
| - LOperand* value = UseFixed(instr->value(), StoreConvention::ValueRegister());
|
| + UseFixed(instr->object(), StoreDescriptor::ReceiverRegister());
|
| + LOperand* value = UseFixed(instr->value(), StoreDescriptor::ValueRegister());
|
|
|
| LStoreNamedGeneric* result =
|
| new(zone()) LStoreNamedGeneric(context, object, value);
|
|
|