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

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

Issue 1985753002: [interpreter] Introduce fused bytecodes for common sequences. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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 6 pool type: mixed
7 execute: yes 7 execute: yes
8 wrap: no 8 wrap: no
9 test function name: f 9 test function name: f
10 10
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
657 if (a <= b) { return 1; } 657 if (a <= b) { return 1; }
658 if (a >= b) { return 1; } 658 if (a >= b) { return 1; }
659 if (a in b) { return 1; } 659 if (a in b) { return 1; }
660 if (a instanceof b) { return 1; } 660 if (a instanceof b) { return 1; }
661 return 0; 661 return 0;
662 } 662 }
663 f(1, 1); 663 f(1, 1);
664 " 664 "
665 frame size: 6 665 frame size: 6
666 parameter count: 3 666 parameter count: 3
667 bytecode array length: 226 667 bytecode array length: 227
668 bytecodes: [ 668 bytecodes: [
669 /* 10 E> */ B(StackCheck), 669 /* 10 E> */ B(StackCheck),
670 /* 21 S> */ B(Ldar), R(arg0), 670 /* 21 S> */ B(Ldar), R(arg0),
671 B(Star), R(3), 671 B(Star), R(3),
672 /* 30 E> */ B(Ldar), R(arg1), 672 /* 30 E> */ B(Ldar), R(arg1),
673 /* 27 E> */ B(TestEqual), R(3), 673 /* 27 E> */ B(TestEqual), R(3),
674 B(JumpIfFalse), U8(5), 674 B(JumpIfFalse), U8(5),
675 /* 35 S> */ B(LdaSmi), U8(1), 675 /* 35 S> */ B(LdaSmi), U8(1),
676 /* 262 S> */ B(Return), 676 /* 262 S> */ B(Return),
677 /* 49 S> */ B(Ldar), R(arg0), 677 /* 49 S> */ B(Ldar), R(arg0),
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 B(Jump), U8(16), 726 B(Jump), U8(16),
727 /* 222 S> */ B(LdaSmi), U8(61), 727 /* 222 S> */ B(LdaSmi), U8(61),
728 B(Star), R(3), 728 B(Star), R(3),
729 B(LdaConstant), U8(0), 729 B(LdaConstant), U8(0),
730 B(Star), R(4), 730 B(Star), R(4),
731 B(CallRuntime), U16(Runtime::kNewTypeError), R(3), U8(2), 731 B(CallRuntime), U16(Runtime::kNewTypeError), R(3), U8(2),
732 /* 222 E> */ B(Throw), 732 /* 222 E> */ B(Throw),
733 B(Ldar), R(1), 733 B(Ldar), R(1),
734 B(Star), R(3), 734 B(Star), R(3),
735 /* 222 E> */ B(LdaConstant), U8(1), 735 /* 222 E> */ B(LdaConstant), U8(1),
736 B(KeyedLoadIC), R(3), U8(1), 736 B(LdrKeyedProperty), R(3), U8(1), R(2),
737 B(Star), R(2), 737 B(Ldar), R(2),
738 B(Star), R(3), 738 B(Star), R(3),
739 B(LdaUndefined), 739 B(LdaUndefined),
740 B(TestEqualStrict), R(3), 740 B(TestEqualStrict), R(3),
741 B(JumpIfFalse), U8(55), 741 B(JumpIfFalse), U8(55),
742 B(Ldar), R(1), 742 B(Ldar), R(1),
743 B(TypeOf), 743 B(TypeOf),
744 B(Star), R(3), 744 B(Star), R(3),
745 B(LdaConstant), U8(2), 745 B(LdaConstant), U8(2),
746 B(TestEqualStrict), R(3), 746 B(TestEqualStrict), R(3),
747 B(JumpIfFalse), U8(4), 747 B(JumpIfFalse), U8(4),
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 /* 69 S> */ B(LdaSmi), U8(-20), 812 /* 69 S> */ B(LdaSmi), U8(-20),
813 /* 85 S> */ B(Return), 813 /* 85 S> */ B(Return),
814 B(LdaUndefined), 814 B(LdaUndefined),
815 /* 85 S> */ B(Return), 815 /* 85 S> */ B(Return),
816 ] 816 ]
817 constant pool: [ 817 constant pool: [
818 ] 818 ]
819 handlers: [ 819 handlers: [
820 ] 820 ]
821 821
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698