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

Unified Diff: src/ia32/lithium-ia32.h

Issue 5550003: Add optimized compiler support for generic global loads.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years 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/ia32/lithium-ia32.h
===================================================================
--- src/ia32/lithium-ia32.h (revision 5936)
+++ src/ia32/lithium-ia32.h (working copy)
@@ -88,6 +88,7 @@
// LLabel
// LLayzBailout
// LLoadGlobal
+// LLoadGlobalGeneric
// LMaterializedLiteral
// LArrayLiteral
// LObjectLiteral
@@ -217,6 +218,7 @@
V(LazyBailout) \
V(LoadElements) \
V(LoadGlobal) \
+ V(LoadGlobalGeneric) \
V(LoadKeyedFastElement) \
V(LoadKeyedGeneric) \
V(LoadNamedField) \
@@ -1260,6 +1262,13 @@
};
+class LLoadGlobalGeneric: public LInstruction {
+ public:
+ DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic")
+ DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric)
+};
+
+
class LStoreGlobal: public LUnaryOperation {
public:
explicit LStoreGlobal(LOperand* value) : LUnaryOperation(value) {}

Powered by Google App Engine
This is Rietveld 408576698