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 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1127 void jmp(Register adr); | 1127 void jmp(Register adr); |
1128 | 1128 |
1129 // Jump near absolute indirect (m64) | 1129 // Jump near absolute indirect (m64) |
1130 void jmp(const Operand& src); | 1130 void jmp(const Operand& src); |
1131 | 1131 |
1132 // Short jump | 1132 // Short jump |
1133 void jmp(NearLabel* L); | 1133 void jmp(NearLabel* L); |
1134 | 1134 |
1135 // Conditional jumps | 1135 // Conditional jumps |
1136 void j(Condition cc, Label* L); | 1136 void j(Condition cc, Label* L); |
1137 void j(Condition cc, byte* entry, RelocInfo::Mode rmode); | |
1138 void j(Condition cc, Handle<Code> target, RelocInfo::Mode rmode); | 1137 void j(Condition cc, Handle<Code> target, RelocInfo::Mode rmode); |
1139 | 1138 |
1140 // Conditional short jump | 1139 // Conditional short jump |
1141 void j(Condition cc, NearLabel* L, Hint hint = no_hint); | 1140 void j(Condition cc, NearLabel* L, Hint hint = no_hint); |
1142 | 1141 |
1143 // Floating-point operations | 1142 // Floating-point operations |
1144 void fld(int i); | 1143 void fld(int i); |
1145 | 1144 |
1146 void fld1(); | 1145 void fld1(); |
1147 void fldz(); | 1146 void fldz(); |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1536 private: | 1535 private: |
1537 Assembler* assembler_; | 1536 Assembler* assembler_; |
1538 #ifdef DEBUG | 1537 #ifdef DEBUG |
1539 int space_before_; | 1538 int space_before_; |
1540 #endif | 1539 #endif |
1541 }; | 1540 }; |
1542 | 1541 |
1543 } } // namespace v8::internal | 1542 } } // namespace v8::internal |
1544 | 1543 |
1545 #endif // V8_X64_ASSEMBLER_X64_H_ | 1544 #endif // V8_X64_ASSEMBLER_X64_H_ |
OLD | NEW |