OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |