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

Unified Diff: test/cctest/interpreter/bytecode_expectations/IntegerConstants.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/IntegerConstants.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/IntegerConstants.golden b/test/cctest/interpreter/bytecode_expectations/IntegerConstants.golden
index 1997d02233e6dba6d354c526f94b41d4044c084c..b3602af9307af77a43784f9c008747c7577b2204 100644
--- a/test/cctest/interpreter/bytecode_expectations/IntegerConstants.golden
+++ b/test/cctest/interpreter/bytecode_expectations/IntegerConstants.golden
@@ -26,17 +26,20 @@ handlers: [
snippet: "
var a = 1234; return 5678;
"
-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(Wide), B(LdaSmi), I16(1234),
+ /* 42 S> */ B(LdaConstant), U8(0),
+ B(Star), R(1),
+ B(Wide), B(LdaSmi), I16(1234),
B(Star), R(0),
/* 48 S> */ B(Wide), B(LdaSmi), I16(5678),
/* 61 S> */ B(Return),
]
constant pool: [
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["a"],
]
handlers: [
]
@@ -45,17 +48,20 @@ handlers: [
snippet: "
var a = 1234; return 1234;
"
-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(Wide), B(LdaSmi), I16(1234),
+ /* 42 S> */ B(LdaConstant), U8(0),
+ B(Star), R(1),
+ B(Wide), B(LdaSmi), I16(1234),
B(Star), R(0),
/* 48 S> */ B(Wide), B(LdaSmi), I16(1234),
/* 61 S> */ B(Return),
]
constant pool: [
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["a"],
]
handlers: [
]

Powered by Google App Engine
This is Rietveld 408576698