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

Unified Diff: test/cctest/interpreter/bytecode_expectations/RemoveRedundantLdar.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/RemoveRedundantLdar.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/RemoveRedundantLdar.golden b/test/cctest/interpreter/bytecode_expectations/RemoveRedundantLdar.golden
index 4fb7fbe420784432c08735202b56cc3ef31741c1..12f1e74e7308a88222b1d0d0bdb60ed28041d0ac 100644
--- a/test/cctest/interpreter/bytecode_expectations/RemoveRedundantLdar.golden
+++ b/test/cctest/interpreter/bytecode_expectations/RemoveRedundantLdar.golden
@@ -14,26 +14,31 @@ snippet: "
}
return ld_a;
"
-frame size: 1
+frame size: 2
parameter count: 1
-bytecode array length: 28
+bytecode array length: 36
bytecodes: [
/* 30 E> */ B(StackCheck),
- /* 45 S> */ B(LdaSmi), I8(1),
+ /* 45 S> */ B(LdaConstant), U8(0),
+ B(Star), R(1),
+ B(LdaSmi), I8(1),
B(Star), R(0),
/* 48 E> */ B(StackCheck),
- /* 64 S> */ B(Ldar), R(0),
- /* 76 E> */ B(Add), R(0), U8(2),
+ /* 64 S> */ B(LdaConstant), U8(0),
+ B(Star), R(1),
+ B(Ldar), R(0),
+ /* 76 E> */ B(Add), R(0), U8(4),
B(Star), R(0),
/* 86 S> */ B(LdaSmi), I8(10),
- /* 95 E> */ B(TestGreaterThan), R(0), U8(3),
+ /* 95 E> */ B(TestGreaterThan), R(0), U8(7),
B(JumpIfFalse), U8(4),
/* 101 S> */ B(Jump), U8(5),
- B(JumpLoop), U8(17), I8(0),
+ B(JumpLoop), U8(21), I8(0),
/* 110 S> */ B(Ldar), R(0),
/* 123 S> */ B(Return),
]
constant pool: [
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["ld_a"],
]
handlers: [
]
@@ -47,25 +52,30 @@ snippet: "
} while(false);
return ld_a;
"
-frame size: 1
+frame size: 2
parameter count: 1
-bytecode array length: 24
+bytecode array length: 33
bytecodes: [
/* 30 E> */ B(StackCheck),
- /* 45 S> */ B(LdaSmi), I8(1),
+ /* 45 S> */ B(LdaConstant), U8(0),
+ B(Star), R(1),
+ B(LdaSmi), I8(1),
B(Star), R(0),
/* 48 E> */ B(StackCheck),
- /* 55 S> */ B(Nop),
- /* 67 E> */ B(Add), R(0), U8(2),
+ /* 55 S> */ B(LdaConstant), U8(0),
+ B(Star), R(1),
+ B(Ldar), R(0),
+ /* 67 E> */ B(Add), R(0), U8(4),
B(Star), R(0),
/* 77 S> */ B(LdaSmi), I8(10),
- /* 86 E> */ B(TestGreaterThan), R(0), U8(3),
+ /* 86 E> */ B(TestGreaterThan), R(0), U8(7),
B(JumpIfFalse), U8(4),
/* 92 S> */ B(Jump), U8(2),
/* 118 S> */ B(Ldar), R(0),
/* 131 S> */ B(Return),
]
constant pool: [
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["ld_a"],
]
handlers: [
]
@@ -76,20 +86,25 @@ snippet: "
ld_a = ld_a + ld_a;
return ld_a;
"
-frame size: 1
+frame size: 2
parameter count: 1
-bytecode array length: 13
+bytecode array length: 22
bytecodes: [
/* 30 E> */ B(StackCheck),
- /* 45 S> */ B(LdaSmi), I8(1),
+ /* 45 S> */ B(LdaConstant), U8(0),
+ B(Star), R(1),
+ B(LdaSmi), I8(1),
B(Star), R(0),
- /* 50 S> */ B(Nop),
- /* 62 E> */ B(Add), R(0), U8(2),
+ /* 50 S> */ B(LdaConstant), U8(0),
+ B(Star), R(1),
+ B(Ldar), R(0),
+ /* 62 E> */ B(Add), R(0), U8(4),
B(Star), R(0),
/* 72 S> */ B(Nop),
/* 85 S> */ B(Return),
]
constant pool: [
+ ONE_BYTE_INTERNALIZED_STRING_TYPE ["ld_a"],
]
handlers: [
]

Powered by Google App Engine
This is Rietveld 408576698