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

Unified Diff: test/unittests/compiler/interpreter-assembler-unittest.h

Issue 1370893002: [Interpreter] Add support for short (16 bit) operands. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Win bots. Created 5 years, 3 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
Index: test/unittests/compiler/interpreter-assembler-unittest.h
diff --git a/test/unittests/compiler/interpreter-assembler-unittest.h b/test/unittests/compiler/interpreter-assembler-unittest.h
index 0ed91eb4011ae87d2dacb68d2bf6e9e9cc98c7ae..eb0dbc326663ef609a35afe6b95f0a2e8d8863d7 100644
--- a/test/unittests/compiler/interpreter-assembler-unittest.h
+++ b/test/unittests/compiler/interpreter-assembler-unittest.h
@@ -43,8 +43,9 @@ class InterpreterAssemblerTest : public TestWithIsolateAndZone {
const Matcher<const CallDescriptor*>& descriptor_matcher,
A... args);
- Matcher<Node*> IsBytecodeOperand(int operand);
- Matcher<Node*> IsBytecodeOperandSignExtended(int operand);
+ Matcher<Node*> IsBytecodeOperand(int offset);
+ Matcher<Node*> IsBytecodeOperandSignExtended(int offset);
+ Matcher<Node*> IsBytecodeOperandWide(int offset);
using InterpreterAssembler::call_descriptor;
using InterpreterAssembler::graph;

Powered by Google App Engine
This is Rietveld 408576698