| 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 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 void testb(const Operand& op, Immediate mask); | 844 void testb(const Operand& op, Immediate mask); |
| 845 void testb(const Operand& op, Register reg); | 845 void testb(const Operand& op, Register reg); |
| 846 | 846 |
| 847 // Bit operations. | 847 // Bit operations. |
| 848 void bt(const Operand& dst, Register src); | 848 void bt(const Operand& dst, Register src); |
| 849 void bts(const Operand& dst, Register src); | 849 void bts(const Operand& dst, Register src); |
| 850 void bsrq(Register dst, Register src); | 850 void bsrq(Register dst, Register src); |
| 851 void bsrq(Register dst, const Operand& src); | 851 void bsrq(Register dst, const Operand& src); |
| 852 void bsrl(Register dst, Register src); | 852 void bsrl(Register dst, Register src); |
| 853 void bsrl(Register dst, const Operand& src); | 853 void bsrl(Register dst, const Operand& src); |
| 854 void bsfq(Register dst, Register src); |
| 855 void bsfq(Register dst, const Operand& src); |
| 854 void bsfl(Register dst, Register src); | 856 void bsfl(Register dst, Register src); |
| 855 void bsfl(Register dst, const Operand& src); | 857 void bsfl(Register dst, const Operand& src); |
| 856 | 858 |
| 857 // Miscellaneous | 859 // Miscellaneous |
| 858 void clc(); | 860 void clc(); |
| 859 void cld(); | 861 void cld(); |
| 860 void cpuid(); | 862 void cpuid(); |
| 861 void hlt(); | 863 void hlt(); |
| 862 void int3(); | 864 void int3(); |
| 863 void nop(); | 865 void nop(); |
| (...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2160 Assembler* assembler_; | 2162 Assembler* assembler_; |
| 2161 #ifdef DEBUG | 2163 #ifdef DEBUG |
| 2162 int space_before_; | 2164 int space_before_; |
| 2163 #endif | 2165 #endif |
| 2164 }; | 2166 }; |
| 2165 | 2167 |
| 2166 } // namespace internal | 2168 } // namespace internal |
| 2167 } // namespace v8 | 2169 } // namespace v8 |
| 2168 | 2170 |
| 2169 #endif // V8_X64_ASSEMBLER_X64_H_ | 2171 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |