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

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

Issue 1228113008: Crankshaft part of the 'loads and stores to global vars through property cell shortcuts' feature. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed comments + regression test Created 5 years, 5 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/arm/lithium-codegen-arm.cc ('k') | src/arm64/lithium-arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm64/lithium-arm64.h
diff --git a/src/arm64/lithium-arm64.h b/src/arm64/lithium-arm64.h
index da690c1eddb46708dcc42fe9d182d6984d784bdd..6ab7ebf1bf2af137ddc210a95a095ab893272b63 100644
--- a/src/arm64/lithium-arm64.h
+++ b/src/arm64/lithium-arm64.h
@@ -104,6 +104,7 @@ class LCodeGen;
V(LoadFieldByIndex) \
V(LoadFunctionPrototype) \
V(LoadGlobalGeneric) \
+ V(LoadGlobalViaContext) \
V(LoadKeyedExternal) \
V(LoadKeyedFixed) \
V(LoadKeyedFixedDouble) \
@@ -152,6 +153,7 @@ class LCodeGen;
V(StoreCodeEntry) \
V(StoreContextSlot) \
V(StoreFrameContext) \
+ V(StoreGlobalViaContext) \
V(StoreKeyedExternal) \
V(StoreKeyedFixed) \
V(StoreKeyedFixedDouble) \
@@ -1673,6 +1675,23 @@ class LIsUndetectableAndBranch final : public LControlInstruction<1, 1> {
};
+class LLoadGlobalViaContext final : public LTemplateInstruction<1, 1, 1> {
+ public:
+ explicit LLoadGlobalViaContext(LOperand* context) { inputs_[0] = context; }
+
+ DECLARE_CONCRETE_INSTRUCTION(LoadGlobalViaContext, "load-global-via-context")
+ DECLARE_HYDROGEN_ACCESSOR(LoadGlobalViaContext)
+
+ void PrintDataTo(StringStream* stream) override;
+
+ LOperand* context() { return inputs_[0]; }
+
+ Handle<Object> name() const { return hydrogen()->name(); }
+ int depth() const { return hydrogen()->depth(); }
+ int slot_index() const { return hydrogen()->slot_index(); }
+};
+
+
class LLoadContextSlot final : public LTemplateInstruction<1, 1, 0> {
public:
explicit LLoadContextSlot(LOperand* context) {
@@ -2455,6 +2474,29 @@ class LStackCheck final : public LTemplateInstruction<0, 1, 0> {
};
+class LStoreGlobalViaContext final : public LTemplateInstruction<0, 2, 0> {
+ public:
+ LStoreGlobalViaContext(LOperand* context, LOperand* value) {
+ inputs_[0] = context;
+ inputs_[1] = value;
+ }
+
+ LOperand* context() { return inputs_[0]; }
+ LOperand* value() { return inputs_[1]; }
+
+ DECLARE_CONCRETE_INSTRUCTION(StoreGlobalViaContext,
+ "store-global-via-context")
+ DECLARE_HYDROGEN_ACCESSOR(StoreGlobalViaContext)
+
+ void PrintDataTo(StringStream* stream) override;
+
+ Handle<Object> name() const { return hydrogen()->name(); }
+ int depth() { return hydrogen()->depth(); }
+ int slot_index() { return hydrogen()->slot_index(); }
+ LanguageMode language_mode() { return hydrogen()->language_mode(); }
+};
+
+
template<int T>
class LStoreKeyed : public LTemplateInstruction<0, 3, T> {
public:
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/arm64/lithium-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698