Reviewers: danno, Jakob, mtbrandyberry, Sven Panne,

Message:
Next PPC port

Description:
PPC: Load from PropertyCells using PropertyCell::kValueOffset rather than
Cell::kValueOffset

Port dda2bd6f4f952c604ab836f04052684722480849

Original commit message:

[email protected], [email protected], [email protected],
[email protected]

BUG=

Please review this at https://codereview.chromium.org/1028323002/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+1, -1 lines):
  M src/ic/ppc/handler-compiler-ppc.cc


Index: src/ic/ppc/handler-compiler-ppc.cc
diff --git a/src/ic/ppc/handler-compiler-ppc.cc b/src/ic/ppc/handler-compiler-ppc.cc index 0b053a93d4fe0696d2e8a2aaf480fc00553c36dc..d7a70d7446559320bc5e5d0116fbfcaf68e4c556 100644
--- a/src/ic/ppc/handler-compiler-ppc.cc
+++ b/src/ic/ppc/handler-compiler-ppc.cc
@@ -722,7 +722,7 @@ Handle<Code> NamedLoadHandlerCompiler::CompileLoadGlobal(
   Register result = StoreDescriptor::ValueRegister();
   Handle<WeakCell> weak_cell = factory()->NewWeakCell(cell);
   __ LoadWeakValue(result, weak_cell, &miss);
-  __ LoadP(result, FieldMemOperand(result, Cell::kValueOffset));
+  __ LoadP(result, FieldMemOperand(result, PropertyCell::kValueOffset));

   // Check for deleted property if property can actually be deleted.
   if (is_configurable) {


--
--
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