Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: src/IceAssemblerX86BaseImpl.h

Issue 1365433004: Use three-address form of imul (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Rebase to head. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 //===- subzero/src/IceAssemblerX86BaseImpl.h - base x86 assembler -*- C++ -*-=// 1 //===- subzero/src/IceAssemblerX86BaseImpl.h - base x86 assembler -*- C++ -*-=//
2 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a 3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file. 4 // BSD-style license that can be found in the LICENSE file.
5 // 5 //
6 // Modified by the Subzero authors. 6 // Modified by the Subzero authors.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // The Subzero Code Generator 10 // The Subzero Code Generator
(...skipping 2563 matching lines...) Expand 10 before | Expand all | Expand 10 after
2574 emitOperandSizeOverride(); 2574 emitOperandSizeOverride();
2575 emitRex(Ty, address, RexRegIrrelevant); 2575 emitRex(Ty, address, RexRegIrrelevant);
2576 if (isByteSizedArithType(Ty)) 2576 if (isByteSizedArithType(Ty))
2577 emitUint8(0xF6); 2577 emitUint8(0xF6);
2578 else 2578 else
2579 emitUint8(0xF7); 2579 emitUint8(0xF7);
2580 emitOperand(5, address); 2580 emitOperand(5, address);
2581 } 2581 }
2582 2582
2583 template <class Machine> 2583 template <class Machine>
2584 void AssemblerX86Base<Machine>::imul_imm(Type Ty,
2585 typename Traits::GPRRegister dst,
2586 typename Traits::GPRRegister src,
2587 const Immediate &imm) {
2588 AssemblerBuffer::EnsureCapacity ensured(&Buffer);
2589 assert(Ty == IceType_i16 || Ty == IceType_i32);
2590 if (Ty == IceType_i16)
2591 emitOperandSizeOverride();
2592 emitRexRB(Ty, dst, src);
2593 if (imm.is_int8()) {
2594 emitUint8(0x6B);
2595 emitRegisterOperand(gprEncoding(dst), gprEncoding(src));
2596 emitUint8(imm.value() & 0xFF);
2597 } else {
2598 emitUint8(0x69);
2599 emitRegisterOperand(gprEncoding(dst), gprEncoding(src));
2600 emitImmediate(Ty, imm);
2601 }
2602 }
2603
2604 template <class Machine>
2605 void AssemblerX86Base<Machine>::imul_imm(Type Ty,
2606 typename Traits::GPRRegister dst,
2607 const typename Traits::Address
2608 &address,
2609 const Immediate &imm) {
2610 AssemblerBuffer::EnsureCapacity ensured(&Buffer);
2611 assert(Ty == IceType_i16 || Ty == IceType_i32);
2612 if (Ty == IceType_i16)
2613 emitOperandSizeOverride();
2614 emitRex(Ty, address, dst);
2615 if (imm.is_int8()) {
2616 emitUint8(0x6B);
2617 emitOperand(gprEncoding(dst), address);
2618 emitUint8(imm.value() & 0xFF);
2619 } else {
2620 emitUint8(0x69);
2621 emitOperand(gprEncoding(dst), address);
2622 emitImmediate(Ty, imm);
2623 }
2624 emitImmediate(Ty, imm);
2625 }
2626
2627 template <class Machine>
2584 void AssemblerX86Base<Machine>::mul(Type Ty, typename Traits::GPRRegister reg) { 2628 void AssemblerX86Base<Machine>::mul(Type Ty, typename Traits::GPRRegister reg) {
2585 AssemblerBuffer::EnsureCapacity ensured(&Buffer); 2629 AssemblerBuffer::EnsureCapacity ensured(&Buffer);
2586 if (Ty == IceType_i16) 2630 if (Ty == IceType_i16)
2587 emitOperandSizeOverride(); 2631 emitOperandSizeOverride();
2588 emitRexB(Ty, reg); 2632 emitRexB(Ty, reg);
2589 if (isByteSizedArithType(Ty)) 2633 if (isByteSizedArithType(Ty))
2590 emitUint8(0xF6); 2634 emitUint8(0xF6);
2591 else 2635 else
2592 emitUint8(0xF7); 2636 emitUint8(0xF7);
2593 emitRegisterOperand(4, gprEncoding(reg)); 2637 emitRegisterOperand(4, gprEncoding(reg));
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
3396 (void)shifter; 3440 (void)shifter;
3397 if (Ty == IceType_i16) 3441 if (Ty == IceType_i16)
3398 emitOperandSizeOverride(); 3442 emitOperandSizeOverride();
3399 emitRexB(Ty, operand.rm()); 3443 emitRexB(Ty, operand.rm());
3400 emitUint8(isByteSizedArithType(Ty) ? 0xD2 : 0xD3); 3444 emitUint8(isByteSizedArithType(Ty) ? 0xD2 : 0xD3);
3401 emitOperand(rm, operand); 3445 emitOperand(rm, operand);
3402 } 3446 }
3403 3447
3404 } // end of namespace X86Internal 3448 } // end of namespace X86Internal
3405 } // end of namespace Ice 3449 } // end of namespace Ice
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698