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

Side by Side Diff: test/cctest/interpreter/bytecode_expectations/IfConditions.golden

Issue 2310103002: [Interpreter] Remove constant pool type in tests (Closed)
Patch Set: Remove warning for pool type Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 # 1 #
2 # Autogenerated by generate-bytecode-expectations. 2 # Autogenerated by generate-bytecode-expectations.
3 # 3 #
4 4
5 --- 5 ---
6 pool type: mixed
7 execute: yes 6 execute: yes
8 wrap: no 7 wrap: no
9 test function name: f 8 test function name: f
10 9
11 --- 10 ---
12 snippet: " 11 snippet: "
13 function f() { 12 function f() {
14 if (0) { 13 if (0) {
15 return 1; 14 return 1;
16 } else { 15 } else {
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 /* 1066 S> */ B(Mov), R(0), R(1), 398 /* 1066 S> */ B(Mov), R(0), R(1),
400 /* 1073 S> */ B(Mov), R(1), R(0), 399 /* 1073 S> */ B(Mov), R(1), R(0),
401 /* 1081 S> */ B(Wide), B(LdaSmi), U16(200), 400 /* 1081 S> */ B(Wide), B(LdaSmi), U16(200),
402 /* 1117 S> */ B(Return), 401 /* 1117 S> */ B(Return),
403 /* 1102 S> */ B(Wide), B(LdaSmi), U16(-200), 402 /* 1102 S> */ B(Wide), B(LdaSmi), U16(-200),
404 /* 1117 S> */ B(Return), 403 /* 1117 S> */ B(Return),
405 B(LdaUndefined), 404 B(LdaUndefined),
406 /* 1117 S> */ B(Return), 405 /* 1117 S> */ B(Return),
407 ] 406 ]
408 constant pool: [ 407 constant pool: [
409 InstanceType::HEAP_NUMBER_TYPE, 408 HEAP_NUMBER_TYPE [0.01],
410 kInstanceTypeDontCare, 409 Smi [391],
411 ] 410 ]
412 handlers: [ 411 handlers: [
413 ] 412 ]
414 413
415 --- 414 ---
416 snippet: " 415 snippet: "
417 function f() { 416 function f() {
418 var a = 0; var b = 0; 417 var a = 0; var b = 0;
419 if (a) { 418 if (a) {
420 b = a; a = b; 419 b = a; a = b;
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 /* 1060 S> */ B(Mov), R(0), R(1), 624 /* 1060 S> */ B(Mov), R(0), R(1),
626 /* 1067 S> */ B(Mov), R(1), R(0), 625 /* 1067 S> */ B(Mov), R(1), R(0),
627 /* 1076 S> */ B(Wide), B(LdaSmi), U16(200), 626 /* 1076 S> */ B(Wide), B(LdaSmi), U16(200),
628 /* 1112 S> */ B(Return), 627 /* 1112 S> */ B(Return),
629 /* 1097 S> */ B(Wide), B(LdaSmi), U16(-200), 628 /* 1097 S> */ B(Wide), B(LdaSmi), U16(-200),
630 /* 1112 S> */ B(Return), 629 /* 1112 S> */ B(Return),
631 B(LdaUndefined), 630 B(LdaUndefined),
632 /* 1112 S> */ B(Return), 631 /* 1112 S> */ B(Return),
633 ] 632 ]
634 constant pool: [ 633 constant pool: [
635 kInstanceTypeDontCare, 634 Smi [391],
636 ] 635 ]
637 handlers: [ 636 handlers: [
638 ] 637 ]
639 638
640 --- 639 ---
641 snippet: " 640 snippet: "
642 function f(a, b) { 641 function f(a, b) {
643 if (a == b) { return 1; } 642 if (a == b) { return 1; }
644 if (a === b) { return 1; } 643 if (a === b) { return 1; }
645 if (a < b) { return 1; } 644 if (a < b) { return 1; }
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 /* 118 S> */ B(LdaSmi), U8(-1), 773 /* 118 S> */ B(LdaSmi), U8(-1),
775 /* 133 S> */ B(Return), 774 /* 133 S> */ B(Return),
776 B(LdaUndefined), 775 B(LdaUndefined),
777 /* 133 S> */ B(Return), 776 /* 133 S> */ B(Return),
778 ] 777 ]
779 constant pool: [ 778 constant pool: [
780 ] 779 ]
781 handlers: [ 780 handlers: [
782 ] 781 ]
783 782
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698