OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 1555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1566 | 1566 |
1567 void Assembler::movzxbl(Register dst, const Operand& src) { | 1567 void Assembler::movzxbl(Register dst, const Operand& src) { |
1568 EnsureSpace ensure_space(this); | 1568 EnsureSpace ensure_space(this); |
1569 emit_optional_rex_32(dst, src); | 1569 emit_optional_rex_32(dst, src); |
1570 emit(0x0F); | 1570 emit(0x0F); |
1571 emit(0xB6); | 1571 emit(0xB6); |
1572 emit_operand(dst, src); | 1572 emit_operand(dst, src); |
1573 } | 1573 } |
1574 | 1574 |
1575 | 1575 |
| 1576 void Assembler::movzxbl(Register dst, Register src) { |
| 1577 EnsureSpace ensure_space(this); |
| 1578 if (!src.is_byte_register()) { |
| 1579 // Register is not one of al, bl, cl, dl. Its encoding needs REX. |
| 1580 emit_rex_32(src); |
| 1581 } |
| 1582 emit(0x0F); |
| 1583 emit(0xB6); |
| 1584 emit_modrm(dst, src); |
| 1585 } |
| 1586 |
| 1587 |
1576 void Assembler::movzxwq(Register dst, const Operand& src) { | 1588 void Assembler::movzxwq(Register dst, const Operand& src) { |
1577 EnsureSpace ensure_space(this); | 1589 EnsureSpace ensure_space(this); |
1578 emit_optional_rex_32(dst, src); | 1590 emit_optional_rex_32(dst, src); |
1579 emit(0x0F); | 1591 emit(0x0F); |
1580 emit(0xB7); | 1592 emit(0xB7); |
1581 emit_operand(dst, src); | 1593 emit_operand(dst, src); |
1582 } | 1594 } |
1583 | 1595 |
1584 | 1596 |
1585 void Assembler::movzxwl(Register dst, const Operand& src) { | 1597 void Assembler::movzxwl(Register dst, const Operand& src) { |
(...skipping 1628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3214 | 3226 |
3215 | 3227 |
3216 bool RelocInfo::IsInConstantPool() { | 3228 bool RelocInfo::IsInConstantPool() { |
3217 return false; | 3229 return false; |
3218 } | 3230 } |
3219 | 3231 |
3220 | 3232 |
3221 } } // namespace v8::internal | 3233 } } // namespace v8::internal |
3222 | 3234 |
3223 #endif // V8_TARGET_ARCH_X64 | 3235 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |