Revision: 23576
Author:   [email protected]
Date:     Tue Sep  2 03:43:04 2014 UTC
Log:      X87: InterfaceDescriptor becomes CallInterfaceDescriptor.

port r23560.

original commit message:

  InterfaceDescriptor becomes CallInterfaceDescriptor.

There was no difference between these two classes in a hierarchical relationship.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/530903002

Patch from Chunyang Dai <[email protected]>.
https://code.google.com/p/v8/source/detail?r=23576

Modified:
 /branches/bleeding_edge/src/x87/lithium-x87.cc
 /branches/bleeding_edge/src/x87/lithium-x87.h

=======================================
--- /branches/bleeding_edge/src/x87/lithium-x87.cc Mon Sep 1 09:31:14 2014 UTC +++ /branches/bleeding_edge/src/x87/lithium-x87.cc Tue Sep 2 03:43:04 2014 UTC
@@ -1119,7 +1119,7 @@

 LInstruction* LChunkBuilder::DoCallWithDescriptor(
     HCallWithDescriptor* instr) {
-  const InterfaceDescriptor* descriptor = instr->descriptor();
+  const CallInterfaceDescriptor* descriptor = instr->descriptor();
   LOperand* target = UseRegisterOrConstantAtStart(instr->target());
   ZoneList<LOperand*> ops(instr->OperandCount(), zone());
   ops.Add(target, zone());
=======================================
--- /branches/bleeding_edge/src/x87/lithium-x87.h Tue Aug 12 13:33:35 2014 UTC +++ /branches/bleeding_edge/src/x87/lithium-x87.h Tue Sep 2 03:43:04 2014 UTC
@@ -1906,10 +1906,9 @@

 class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> {
  public:
-  LCallWithDescriptor(const InterfaceDescriptor* descriptor,
-                      const ZoneList<LOperand*>& operands,
-                      Zone* zone)
-    : inputs_(descriptor->GetRegisterParameterCount() + 1, zone) {
+  LCallWithDescriptor(const CallInterfaceDescriptor* descriptor,
+                      const ZoneList<LOperand*>& operands, Zone* zone)
+      : inputs_(descriptor->GetRegisterParameterCount() + 1, zone) {
DCHECK(descriptor->GetRegisterParameterCount() + 1 == operands.length());
     inputs_.AddAll(operands, zone);
   }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to