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/arm/lithium-arm.h

Issue 40153003: AllocationProfiler: Inital version of RecordObjectAllocation for hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: mips, ia32 and arm platforms were added Created 7 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
« no previous file with comments | « no previous file | src/arm/lithium-arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/lithium-arm.h
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
index 6c036c7b5dd3204b1250736e4c5e770c699053d4..b30f7086c8822b9f9a40a9ebda871d7b5b7e1c12 100644
--- a/src/arm/lithium-arm.h
+++ b/src/arm/lithium-arm.h
@@ -62,6 +62,7 @@ class LCodeGen;
V(CallNewArray) \
V(CallRuntime) \
V(CallStub) \
+ V(CallExternal) \
V(CheckInstanceType) \
V(CheckNonSmi) \
V(CheckMaps) \
@@ -488,6 +489,19 @@ class LCallStub V8_FINAL : public LTemplateInstruction<1, 1, 0> {
};
+class LCallExternal V8_FINAL : public LTemplateInstruction<0, 2, 0> {
+ public:
+ LCallExternal() { }
+ DECLARE_CONCRETE_INSTRUCTION(CallExternal, "call-external")
+ DECLARE_HYDROGEN_ACCESSOR(CallExternal)
+
+ int arity() const { return hydrogen()->argument_count(); }
+ ExternalReference external_reference() const {
+ return hydrogen()->external_reference();
+ }
+};
+
+
class LUnknownOSRValue V8_FINAL : public LTemplateInstruction<1, 0, 0> {
public:
virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
« no previous file with comments | « no previous file | src/arm/lithium-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698