| 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 826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 void testb(Register dst, Register src); | 837 void testb(Register dst, Register src); |
| 838 void testb(Register reg, Immediate mask); | 838 void testb(Register reg, Immediate mask); |
| 839 void testb(const Operand& op, Immediate mask); | 839 void testb(const Operand& op, Immediate mask); |
| 840 void testb(const Operand& op, Register reg); | 840 void testb(const Operand& op, Register reg); |
| 841 | 841 |
| 842 // Bit operations. | 842 // Bit operations. |
| 843 void bt(const Operand& dst, Register src); | 843 void bt(const Operand& dst, Register src); |
| 844 void bts(const Operand& dst, Register src); | 844 void bts(const Operand& dst, Register src); |
| 845 void bsrl(Register dst, Register src); | 845 void bsrl(Register dst, Register src); |
| 846 void bsrl(Register dst, const Operand& src); | 846 void bsrl(Register dst, const Operand& src); |
| 847 void bsfl(Register dst, Register src); |
| 848 void bsfl(Register dst, const Operand& src); |
| 847 | 849 |
| 848 // Miscellaneous | 850 // Miscellaneous |
| 849 void clc(); | 851 void clc(); |
| 850 void cld(); | 852 void cld(); |
| 851 void cpuid(); | 853 void cpuid(); |
| 852 void hlt(); | 854 void hlt(); |
| 853 void int3(); | 855 void int3(); |
| 854 void nop(); | 856 void nop(); |
| 855 void ret(int imm16); | 857 void ret(int imm16); |
| 856 void ud2(); | 858 void ud2(); |
| (...skipping 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2104 Assembler* assembler_; | 2106 Assembler* assembler_; |
| 2105 #ifdef DEBUG | 2107 #ifdef DEBUG |
| 2106 int space_before_; | 2108 int space_before_; |
| 2107 #endif | 2109 #endif |
| 2108 }; | 2110 }; |
| 2109 | 2111 |
| 2110 } // namespace internal | 2112 } // namespace internal |
| 2111 } // namespace v8 | 2113 } // namespace v8 |
| 2112 | 2114 |
| 2113 #endif // V8_X64_ASSEMBLER_X64_H_ | 2115 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |