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

Unified Diff: src/stub-cache.h

Issue 8375053: Handlify CompileLoadGlobal, CompileLoadElement, CompileLoadPolymorphic. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 2 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
Index: src/stub-cache.h
diff --git a/src/stub-cache.h b/src/stub-cache.h
index 454bb57459c72649f34fc06f51ae5c82e2c3bf29..ccc3a4d9cb17a3ff0f2090bbbc669b7dcf022b9f 100644
--- a/src/stub-cache.h
+++ b/src/stub-cache.h
@@ -627,12 +627,6 @@ class LoadStubCompiler: public StubCompiler {
Handle<String> name,
bool is_dont_delete);
- MUST_USE_RESULT MaybeObject* CompileLoadGlobal(JSObject* object,
- GlobalObject* holder,
- JSGlobalPropertyCell* cell,
- String* name,
- bool is_dont_delete);
-
private:
MUST_USE_RESULT MaybeObject* TryGetCode(PropertyType type, String* name);
@@ -680,15 +674,9 @@ class KeyedLoadStubCompiler: public StubCompiler {
Handle<Code> CompileLoadElement(Handle<Map> receiver_map);
- MUST_USE_RESULT MaybeObject* CompileLoadElement(Map* receiver_map);
-
Handle<Code> CompileLoadPolymorphic(MapHandleList* receiver_maps,
CodeHandleList* handler_ics);
- MUST_USE_RESULT MaybeObject* CompileLoadPolymorphic(
- MapList* receiver_maps,
- CodeList* handler_ics);
-
static void GenerateLoadExternalArray(MacroAssembler* masm,
ElementsKind elements_kind);

Powered by Google App Engine
This is Rietveld 408576698