Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Unified Diff: src/stub-cache.h

Issue 1605032: Patch trunk to version 2.2.3.1, reverting change 4401. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ic.cc ('k') | src/stub-cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/stub-cache.h
===================================================================
--- src/stub-cache.h (revision 4416)
+++ src/stub-cache.h (working copy)
@@ -56,8 +56,6 @@
// Computes the right stub matching. Inserts the result in the
// cache before returning. This might compile a stub if needed.
- static Object* ComputeLoadNonexistent(String* name, JSObject* receiver);
-
static Object* ComputeLoadField(String* name,
JSObject* receiver,
JSObject* holder,
@@ -463,23 +461,18 @@
class LoadStubCompiler: public StubCompiler {
public:
- Object* CompileLoadNonexistent(JSObject* object);
-
Object* CompileLoadField(JSObject* object,
JSObject* holder,
int index,
String* name);
-
Object* CompileLoadCallback(String* name,
JSObject* object,
JSObject* holder,
AccessorInfo* callback);
-
Object* CompileLoadConstant(JSObject* object,
JSObject* holder,
Object* value,
String* name);
-
Object* CompileLoadInterceptor(JSObject* object,
JSObject* holder,
String* name);
@@ -501,21 +494,17 @@
JSObject* object,
JSObject* holder,
int index);
-
Object* CompileLoadCallback(String* name,
JSObject* object,
JSObject* holder,
AccessorInfo* callback);
-
Object* CompileLoadConstant(String* name,
JSObject* object,
JSObject* holder,
Object* value);
-
Object* CompileLoadInterceptor(JSObject* object,
JSObject* holder,
String* name);
-
Object* CompileLoadArrayLength(String* name);
Object* CompileLoadStringLength(String* name);
Object* CompileLoadFunctionPrototype(String* name);
« no previous file with comments | « src/ic.cc ('k') | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698