Revision: 16726
Author:   [email protected]
Date:     Mon Sep 16 09:30:43 2013 UTC
Log:      Rename StubType MAP_TRANSITION to TRANSITION.

[email protected]

Review URL: https://chromiumcodereview.appspot.com/24120007
http://code.google.com/p/v8/source/detail?r=16726

Modified:
 /branches/bleeding_edge/src/objects.cc
 /branches/bleeding_edge/src/objects.h
 /branches/bleeding_edge/src/stub-cache.cc

=======================================
--- /branches/bleeding_edge/src/objects.cc      Fri Sep 13 10:23:04 2013 UTC
+++ /branches/bleeding_edge/src/objects.cc      Mon Sep 16 09:30:43 2013 UTC
@@ -10784,7 +10784,7 @@
     case CONSTANT: return "CONSTANT";
     case CALLBACKS: return "CALLBACKS";
     case INTERCEPTOR: return "INTERCEPTOR";
-    case MAP_TRANSITION: return "MAP_TRANSITION";
+    case TRANSITION: return "TRANSITION";
     case NONEXISTENT: return "NONEXISTENT";
   }
   UNREACHABLE();  // keep the compiler happy
=======================================
--- /branches/bleeding_edge/src/objects.h       Fri Sep 13 10:23:04 2013 UTC
+++ /branches/bleeding_edge/src/objects.h       Mon Sep 16 09:30:43 2013 UTC
@@ -4812,7 +4812,7 @@
     CONSTANT,
     CALLBACKS,
     INTERCEPTOR,
-    MAP_TRANSITION,
+    TRANSITION,
     NONEXISTENT
   };

=======================================
--- /branches/bleeding_edge/src/stub-cache.cc   Thu Sep 12 22:04:04 2013 UTC
+++ /branches/bleeding_edge/src/stub-cache.cc   Mon Sep 16 09:30:43 2013 UTC
@@ -520,7 +520,7 @@
                                                Handle<Map> transition,
StrictModeFlag strict_mode) {
   Handle<Code> stub = FindStoreHandler(
-      name, receiver, Code::STORE_IC, Code::MAP_TRANSITION, strict_mode);
+      name, receiver, Code::STORE_IC, Code::TRANSITION, strict_mode);
   if (!stub.is_null()) return stub;

   StoreStubCompiler compiler(isolate_, strict_mode);
@@ -702,7 +702,7 @@
     Handle<Map> transition,
     StrictModeFlag strict_mode) {
   Handle<Code> stub = FindStoreHandler(
- name, receiver, Code::KEYED_STORE_IC, Code::MAP_TRANSITION, strict_mode);
+      name, receiver, Code::KEYED_STORE_IC, Code::TRANSITION, strict_mode);
   if (!stub.is_null()) return stub;

   KeyedStoreStubCompiler compiler(isolate(), strict_mode, STANDARD_STORE);
@@ -1849,7 +1849,7 @@
   TailCallBuiltin(masm(), SlowBuiltin(kind()));

   // Return the generated code.
-  return GetCode(kind(), Code::MAP_TRANSITION, name);
+  return GetCode(kind(), Code::TRANSITION, name);
 }


--
--
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/groups/opt_out.

Reply via email to