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

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

Issue 2096653003: [ic] Don't pass receiver and name to LoadGlobalIC. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@store-name-in-metavector
Patch Set: Removed name parameter. Created 4 years, 6 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/LoadGlobal.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/LoadGlobal.golden b/test/cctest/interpreter/bytecode_expectations/LoadGlobal.golden
index 2d22369e48ab13b549aafb916bc624b8c3ea4aba..dd9f7143948663553b50b6e093d4e778387d0445 100644
--- a/test/cctest/interpreter/bytecode_expectations/LoadGlobal.golden
+++ b/test/cctest/interpreter/bytecode_expectations/LoadGlobal.golden
@@ -16,14 +16,13 @@ snippet: "
"
frame size: 0
parameter count: 1
-bytecode array length: 5
+bytecode array length: 4
bytecodes: [
/* 21 E> */ B(StackCheck),
- /* 26 S> */ B(LdaGlobal), U8(0), U8(1),
+ /* 26 S> */ B(LdaGlobal), U8(1),
/* 36 S> */ B(Return),
]
constant pool: [
- "a",
]
handlers: [
]
@@ -36,14 +35,13 @@ snippet: "
"
frame size: 0
parameter count: 1
-bytecode array length: 5
+bytecode array length: 4
bytecodes: [
/* 27 E> */ B(StackCheck),
- /* 32 S> */ B(LdaGlobal), U8(0), U8(1),
+ /* 32 S> */ B(LdaGlobal), U8(1),
/* 42 S> */ B(Return),
]
constant pool: [
- "t",
]
handlers: [
]
@@ -56,14 +54,13 @@ snippet: "
"
frame size: 0
parameter count: 1
-bytecode array length: 5
+bytecode array length: 4
bytecodes: [
/* 17 E> */ B(StackCheck),
- /* 22 S> */ B(LdaGlobal), U8(0), U8(1),
+ /* 22 S> */ B(LdaGlobal), U8(1),
/* 32 S> */ B(Return),
]
constant pool: [
- "a",
]
handlers: [
]
@@ -206,7 +203,7 @@ snippet: "
"
frame size: 0
parameter count: 2
-bytecode array length: 648
+bytecode array length: 646
bytecodes: [
/* 17 E> */ B(StackCheck),
/* 25 S> */ B(Nop),
@@ -465,12 +462,11 @@ bytecodes: [
/* 1286 E> */ B(LdaNamedProperty), R(arg0), U8(0), U8(253),
/* 1295 S> */ B(Nop),
/* 1296 E> */ B(LdaNamedProperty), R(arg0), U8(0), U8(255),
- /* 1305 S> */ B(Wide), B(LdaGlobal), U16(1), U16(257),
+ /* 1305 S> */ B(Wide), B(LdaGlobal), U16(257),
/* 1315 S> */ B(Return),
]
constant pool: [
"name",
- "a",
]
handlers: [
]

Powered by Google App Engine
This is Rietveld 408576698