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

Unified Diff: test/cctest/interpreter/ConstVariable.golden

Issue 1717293002: [Interpreter] Refactor bytecode generator test suite. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: std::vector instead of initializer_list, golden path as constant. Created 4 years, 10 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/cctest/interpreter/ConstVariable.golden
diff --git a/test/cctest/interpreter/ConstVariable.golden b/test/cctest/interpreter/ConstVariable.golden
new file mode 100644
index 0000000000000000000000000000000000000000..8445805fea966372514c5437b5f30e4da4c56827
--- /dev/null
+++ b/test/cctest/interpreter/ConstVariable.golden
@@ -0,0 +1,113 @@
+#
+# Autogenerated by generate-bytecode-expectations
+#
+
+---
+pool type: string
+execute: yes
+wrap: yes
+
+---
+snippet: "
+ const x = 10;
+"
+frame size: 1 # in multiples of sizeof(void*)
+parameter count: 1
+bytecodes: [
+ B(LdaTheHole),
+ B(Star), R(0),
+ B(StackCheck),
+ B(LdaSmi8), U8(10),
+ B(Star), R(0),
+ B(LdaUndefined),
+ B(Return),
+]
+constant pool: [
+]
+handlers: [
+]
+
+---
+snippet: "
+ const x = 10; return x;
+"
+frame size: 2 # in multiples of sizeof(void*)
+parameter count: 1
+bytecodes: [
+ B(LdaTheHole),
+ B(Star), R(0),
+ B(StackCheck),
+ B(LdaSmi8), U8(10),
+ B(Star), R(0),
+ B(JumpIfNotHole), U8(11),
+ B(LdaConstant), U8(0),
+ B(Star), R(1),
+ B(CallRuntime), U16(257), R(1), U8(1),
+ B(Return),
+]
+constant pool: [
+ "x",
+]
+handlers: [
+]
+
+---
+snippet: "
+ const x = ( x = 20);
+"
+frame size: 3 # in multiples of sizeof(void*)
+parameter count: 1
+bytecodes: [
+ B(LdaTheHole),
+ B(Star), R(0),
+ B(StackCheck),
+ B(LdaSmi8), U8(20),
+ B(Star), R(1),
+ B(Ldar), R(0),
+ B(JumpIfNotHole), U8(11),
+ B(LdaConstant), U8(0),
+ B(Star), R(2),
+ B(CallRuntime), U16(257), R(2), U8(1),
+ B(CallRuntime), U16(448), R(0), U8(0),
+ B(Ldar), R(1),
+ B(Star), R(0),
+ B(LdaUndefined),
+ B(Return),
+]
+constant pool: [
+ "x",
+]
+handlers: [
+]
+
+---
+snippet: "
+ const x = 10; x = 20;
+"
+frame size: 3 # in multiples of sizeof(void*)
+parameter count: 1
+bytecodes: [
+ B(LdaTheHole),
+ B(Star), R(0),
+ B(StackCheck),
+ B(LdaSmi8), U8(10),
+ B(Star), R(0),
+ B(LdaSmi8), U8(20),
+ B(Star), R(1),
+ B(Ldar), R(0),
+ B(JumpIfNotHole), U8(11),
+ B(LdaConstant), U8(0),
+ B(Star), R(2),
+ B(CallRuntime), U16(257), R(2), U8(1),
+ B(CallRuntime), U16(448), R(0), U8(0),
+ B(Ldar), R(1),
+ B(Star), R(0),
+ B(LdaUndefined),
+ B(Return),
+]
+constant pool: [
+ "x",
+]
+handlers: [
+]
+

Powered by Google App Engine
This is Rietveld 408576698