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

Unified Diff: test/cctest/interpreter/bytecode_expectations/ThisFunction.golden

Issue 2677163003: WIP: type profiling. (Closed)
Patch Set: Rebaseline. Created 3 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/bytecode_expectations/ThisFunction.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/ThisFunction.golden b/test/cctest/interpreter/bytecode_expectations/ThisFunction.golden
index 5d1c7c914384fc5f55953d5e8160f69b9d4c567d..078adb0c6c6ab6ad96f7b429df8274b0cce4ba54 100644
--- a/test/cctest/interpreter/bytecode_expectations/ThisFunction.golden
+++ b/test/cctest/interpreter/bytecode_expectations/ThisFunction.golden
@@ -12,16 +12,19 @@ snippet: "
f = function f() {};
f();
"
-frame size: 1
+frame size: 2
parameter count: 1
-bytecode array length: 6
+bytecode array length: 10
bytecodes: [
/* 21 E> */ B(StackCheck),
+ B(LdaConstant), U8(0),
+ B(Star), R(1),
B(Mov), R(closure), R(0),
B(LdaUndefined),
/* 25 S> */ B(Return),
]
constant pool: [
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["f"],
]
handlers: [
]
@@ -32,16 +35,19 @@ snippet: "
f = function f() { return f; };
f();
"
-frame size: 1
+frame size: 2
parameter count: 1
-bytecode array length: 7
+bytecode array length: 11
bytecodes: [
/* 21 E> */ B(StackCheck),
+ B(LdaConstant), U8(0),
+ B(Star), R(1),
B(Mov), R(closure), R(0),
/* 26 S> */ B(Ldar), R(0),
/* 36 S> */ B(Return),
]
constant pool: [
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["f"],
]
handlers: [
]

Powered by Google App Engine
This is Rietveld 408576698