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

Unified Diff: test/cctest/interpreter/bytecode_expectations/Throw.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/Throw.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/Throw.golden b/test/cctest/interpreter/bytecode_expectations/Throw.golden
index 73e203a60bca5eb4fe8350bd1280a7b8ccf260ed..40b019769ad87ff9def5dcbf0ce18578463864c6 100644
--- a/test/cctest/interpreter/bytecode_expectations/Throw.golden
+++ b/test/cctest/interpreter/bytecode_expectations/Throw.golden
@@ -44,20 +44,23 @@ handlers: [
snippet: "
var a = 1; if (a) { throw 'Error'; };
"
-frame size: 1
+frame size: 2
parameter count: 1
-bytecode array length: 12
+bytecode array length: 16
bytecodes: [
/* 30 E> */ B(StackCheck),
- /* 42 S> */ B(LdaSmi), I8(1),
+ /* 42 S> */ B(LdaConstant), U8(0),
+ B(Star), R(1),
+ B(LdaSmi), I8(1),
B(Star), R(0),
/* 45 S> */ B(JumpIfToBooleanFalse), U8(5),
- /* 54 S> */ B(LdaConstant), U8(0),
+ /* 54 S> */ B(LdaConstant), U8(1),
/* 54 E> */ B(Throw),
B(LdaUndefined),
/* 72 S> */ B(Return),
]
constant pool: [
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["a"],
ONE_BYTE_INTERNALIZED_STRING_TYPE ["Error"],
]
handlers: [

Powered by Google App Engine
This is Rietveld 408576698