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

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

Issue 2051783002: [interpreter] Fix debug stepping for generators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/Generators.golden
diff --git a/test/cctest/interpreter/bytecode_expectations/Generators.golden b/test/cctest/interpreter/bytecode_expectations/Generators.golden
index 9561a0585ffec20f3e69e754605b441728ce8be6..a0b51fce43ff9179272dd1c827c28f02387116e3 100644
--- a/test/cctest/interpreter/bytecode_expectations/Generators.golden
+++ b/test/cctest/interpreter/bytecode_expectations/Generators.golden
@@ -34,7 +34,7 @@ bytecodes: [
B(StaContextSlot), R(context), U8(4),
/* 11 E> */ B(StackCheck),
B(Mov), R(context), R(4),
- B(LdrContextSlot), R(context), U8(4), R(6),
+ /* 11 E> */ B(LdrContextSlot), R(context), U8(4), R(6),
B(Ldar), R(6),
B(Mov), R(closure), R(5),
B(CallRuntime), U16(Runtime::kCreateJSGeneratorObject), R(5), U8(2),
@@ -44,7 +44,7 @@ bytecodes: [
B(LdaZero),
B(SuspendGenerator), R(6),
B(Ldar), R(5),
- B(Return),
+ /* 16 S> */ B(Return),
B(LdaSmi), U8(-2),
B(Star), R(1),
B(CallRuntime), U16(Runtime::k_GeneratorGetInput), R(6), U8(1),
@@ -66,7 +66,7 @@ bytecodes: [
B(LdaZero),
B(Star), R(2),
B(Jump), U8(35),
- B(Ldar), R(7),
+ /* 11 E> */ B(Ldar), R(7),
B(Throw),
B(LdrUndefined), R(5),
B(LdaTrue),
@@ -140,7 +140,7 @@ bytecodes: [
B(StaContextSlot), R(context), U8(4),
/* 11 E> */ B(StackCheck),
B(Mov), R(context), R(4),
- B(LdrContextSlot), R(context), U8(4), R(6),
+ /* 11 E> */ B(LdrContextSlot), R(context), U8(4), R(6),
B(Ldar), R(6),
B(Mov), R(closure), R(5),
B(CallRuntime), U16(Runtime::kCreateJSGeneratorObject), R(5), U8(2),
@@ -150,7 +150,7 @@ bytecodes: [
B(LdaZero),
B(SuspendGenerator), R(6),
B(Ldar), R(5),
- B(Return),
+ /* 25 S> */ B(Return),
B(LdaSmi), U8(-2),
B(Star), R(1),
B(CallRuntime), U16(Runtime::k_GeneratorGetInput), R(6), U8(1),
@@ -172,7 +172,7 @@ bytecodes: [
B(LdaZero),
B(Star), R(2),
B(Jump), U8(113),
- B(Ldar), R(7),
+ /* 11 E> */ B(Ldar), R(7),
B(Throw),
/* 16 S> */ B(LdaSmi), U8(42),
B(Star), R(5),
@@ -184,7 +184,7 @@ bytecodes: [
B(LdaSmi), U8(1),
B(SuspendGenerator), R(5),
B(Ldar), R(7),
- B(Return),
+ /* 25 S> */ B(Return),
B(LdaSmi), U8(-2),
B(Star), R(1),
B(CallRuntime), U16(Runtime::k_GeneratorGetInput), R(5), U8(1),
@@ -206,7 +206,7 @@ bytecodes: [
B(LdaSmi), U8(1),
B(Star), R(2),
B(Jump), U8(35),
- B(Ldar), R(6),
+ /* 16 E> */ B(Ldar), R(6),
B(Throw),
B(LdrUndefined), R(5),
B(LdaTrue),
@@ -286,7 +286,7 @@ bytecodes: [
B(StaContextSlot), R(context), U8(4),
/* 11 E> */ B(StackCheck),
B(Mov), R(context), R(6),
- B(LdrContextSlot), R(context), U8(4), R(8),
+ /* 11 E> */ B(LdrContextSlot), R(context), U8(4), R(8),
B(Ldar), R(8),
B(Mov), R(closure), R(7),
B(CallRuntime), U16(Runtime::kCreateJSGeneratorObject), R(7), U8(2),
@@ -296,7 +296,7 @@ bytecodes: [
B(LdaZero),
B(SuspendGenerator), R(8),
B(Ldar), R(7),
- B(Return),
+ /* 44 S> */ B(Return),
B(LdaSmi), U8(-2),
B(Star), R(3),
B(CallRuntime), U16(Runtime::k_GeneratorGetInput), R(8), U8(1),
@@ -318,7 +318,7 @@ bytecodes: [
B(LdaZero),
B(Star), R(4),
B(JumpConstant), U8(16),
- B(Ldar), R(9),
+ /* 11 E> */ B(Ldar), R(9),
B(Throw),
B(LdaConstant), U8(0),
B(Star), R(7),
@@ -391,7 +391,7 @@ bytecodes: [
B(LdaSmi), U8(1),
B(SuspendGenerator), R(11),
B(Ldar), R(13),
- B(Return),
+ /* 44 S> */ B(Return),
B(LdaSmi), U8(-2),
B(Star), R(3),
B(CallRuntime), U16(Runtime::k_GeneratorGetInput), R(11), U8(1),
@@ -420,7 +420,7 @@ bytecodes: [
B(LdaZero),
B(Star), R(7),
B(Jump), U8(75),
- B(Ldar), R(12),
+ /* 36 E> */ B(Ldar), R(12),
B(Throw),
B(Ldar), R(12),
B(PopContext), R(2),

Powered by Google App Engine
This is Rietveld 408576698