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

Unified Diff: src/compiler/interpreter-assembler.h

Issue 1245133002: [interpreter] Add Interpreter{Entry,Exit}Trampoline builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@oth_bytecode_array
Patch Set: Adding MIPS based on https://codereview.chromium.org/1257953002/ 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/compiler/arm64/linkage-arm64.cc ('k') | src/compiler/interpreter-assembler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/interpreter-assembler.h
diff --git a/src/compiler/interpreter-assembler.h b/src/compiler/interpreter-assembler.h
index b03e57a5f9681fa42ed9326bfedeac9294e9838a..b7ea4385f87d281e4d786e1d47ff848900a11eab 100644
--- a/src/compiler/interpreter-assembler.h
+++ b/src/compiler/interpreter-assembler.h
@@ -11,6 +11,7 @@
#include "src/base/smart-pointers.h"
#include "src/frames.h"
#include "src/interpreter/bytecodes.h"
+#include "src/unique.h"
namespace v8 {
namespace internal {
@@ -40,6 +41,7 @@ class InterpreterAssembler {
// Constants.
Node* Int32Constant(int value);
Node* NumberConstant(double value);
+ Node* HeapConstant(Unique<HeapObject> object);
// Returns the bytecode argument |index| for the current bytecode.
Node* BytecodeArg(int index);
@@ -50,6 +52,9 @@ class InterpreterAssembler {
Node* StoreRegister(Node* value, int index);
Node* StoreRegister(Node* value, Node* index);
+ // Returns from the function.
+ void Return();
+
// Dispatch to the bytecode.
void Dispatch();
« no previous file with comments | « src/compiler/arm64/linkage-arm64.cc ('k') | src/compiler/interpreter-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698