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

Unified Diff: src/mips/lithium-mips.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 | « src/mips/lithium-codegen-mips.cc ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/lithium-mips.h
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h
index 301be8fdf2c7054a13bb74e51e7b5841a98eed35..4df0a9a65ee53afc885428900b85bcb8d0b755f1 100644
--- a/src/mips/lithium-mips.h
+++ b/src/mips/lithium-mips.h
@@ -62,6 +62,7 @@ class LCodeGen;
V(CallNewArray) \
V(CallRuntime) \
V(CallStub) \
+ V(CallExternal) \
V(CheckInstanceType) \
V(CheckMaps) \
V(CheckMapValue) \
@@ -487,6 +488,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 | « src/mips/lithium-codegen-mips.cc ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698