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

Side by Side Diff: src/x64/assembler-x64.h

Issue 113832: Add implementation of control flow and label binding to x64 assembler. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/x64/assembler-x64.cc » ('j') | src/x64/assembler-x64.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 void call(const Operand& adr); 669 void call(const Operand& adr);
670 void call(Handle<Code> code, RelocInfo::Mode rmode); 670 void call(Handle<Code> code, RelocInfo::Mode rmode);
671 671
672 // Jumps 672 // Jumps
673 void jmp(Label* L); // unconditional jump to L 673 void jmp(Label* L); // unconditional jump to L
674 void jmp(byte* entry, RelocInfo::Mode rmode); 674 void jmp(byte* entry, RelocInfo::Mode rmode);
675 void jmp(const Operand& adr); 675 void jmp(const Operand& adr);
676 void jmp(Handle<Code> code, RelocInfo::Mode rmode); 676 void jmp(Handle<Code> code, RelocInfo::Mode rmode);
677 677
678 // Conditional jumps 678 // Conditional jumps
679 void j(Condition cc, Label* L, Hint hint = no_hint); 679 void j(Condition cc, Label* L);
680 void j(Condition cc, byte* entry, RelocInfo::Mode rmode, Hint hint = no_hint); 680 void j(Condition cc, byte* entry, RelocInfo::Mode rmode);
681 void j(Condition cc, Handle<Code> code, Hint hint = no_hint); 681 void j(Condition cc, Handle<Code> code);
682 682
683 // Floating-point operations 683 // Floating-point operations
684 void fld(int i); 684 void fld(int i);
685 685
686 void fld1(); 686 void fld1();
687 void fldz(); 687 void fldz();
688 688
689 void fld_s(const Operand& adr); 689 void fld_s(const Operand& adr);
690 void fld_d(const Operand& adr); 690 void fld_d(const Operand& adr);
691 691
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
909 private: 909 private:
910 Assembler* assembler_; 910 Assembler* assembler_;
911 #ifdef DEBUG 911 #ifdef DEBUG
912 int space_before_; 912 int space_before_;
913 #endif 913 #endif
914 }; 914 };
915 915
916 } } // namespace v8::internal 916 } } // namespace v8::internal
917 917
918 #endif // V8_X64_ASSEMBLER_X64_H_ 918 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/assembler-x64.cc » ('j') | src/x64/assembler-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698