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

Side by Side Diff: src/IceInstX86Base.h

Issue 2135403002: Subzero: Aggressive LEA (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Address Comments Created 4 years, 4 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
« no previous file with comments | « src/IceClFlags.def ('k') | src/IceInstX86BaseImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceInstX86Base.h - Generic x86 instructions -*- C++ -*--===// 1 //===- subzero/src/IceInstX86Base.h - Generic x86 instructions -*- C++ -*--===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 this->getSrc(0)->emit(Func); 613 this->getSrc(0)->emit(Func);
614 Str << ", "; 614 Str << ", ";
615 this->getDest()->emit(Func); 615 this->getDest()->emit(Func);
616 } 616 }
617 void emitIAS(const Cfg *Func) const override { 617 void emitIAS(const Cfg *Func) const override {
618 assert(this->getSrcSize() == 1); 618 assert(this->getSrcSize() == 1);
619 const Variable *Var = this->getDest(); 619 const Variable *Var = this->getDest();
620 Type Ty = Var->getType(); 620 Type Ty = Var->getType();
621 const Operand *Src = this->getSrc(0); 621 const Operand *Src = this->getSrc(0);
622 constexpr bool IsLea = K == InstX86Base::Lea; 622 constexpr bool IsLea = K == InstX86Base::Lea;
623
624 if (IsLea) {
625 if (auto *Add = deoptLeaToAddOrNull(Func)) {
626 Add->emitIAS(Func);
627 return;
628 }
629 }
623 emitIASRegOpTyGPR(Func, IsLea, Ty, Var, Src, Emitter); 630 emitIASRegOpTyGPR(Func, IsLea, Ty, Var, Src, Emitter);
624 } 631 }
625 void dump(const Cfg *Func) const override { 632 void dump(const Cfg *Func) const override {
626 if (!BuildDefs::dump()) 633 if (!BuildDefs::dump())
627 return; 634 return;
628 Ostream &Str = Func->getContext()->getStrDump(); 635 Ostream &Str = Func->getContext()->getStrDump();
629 this->dumpDest(Func); 636 this->dumpDest(Func);
630 Str << " = " << Opcode << "." << this->getSrc(0)->getType() << " "; 637 Str << " = " << Opcode << "." << this->getSrc(0)->getType() << " ";
631 this->dumpSources(Func); 638 this->dumpSources(Func);
632 } 639 }
640
633 static bool classof(const Inst *Instr) { 641 static bool classof(const Inst *Instr) {
634 return InstX86Base::isClassof(Instr, InstX86Base::K); 642 return InstX86Base::isClassof(Instr, InstX86Base::K);
635 } 643 }
636 644
637 protected: 645 protected:
638 InstX86BaseUnaryopGPR(Cfg *Func, Variable *Dest, Operand *Src) 646 InstX86BaseUnaryopGPR(Cfg *Func, Variable *Dest, Operand *Src)
639 : InstX86Base(Func, K, 1, Dest) { 647 : InstX86Base(Func, K, 1, Dest) {
640 this->addSource(Src); 648 this->addSource(Src);
641 } 649 }
642 650
651 Inst *deoptLeaToAddOrNull(const Cfg *Func) const {
652 // Revert back to Add when the Lea is a 2-address instruction.
653 // Caller has to emit, this just produces the add instruction.
654 if (auto *MemOp = llvm::dyn_cast<X86OperandMem>(this->getSrc(0))) {
655 if (getFlags().getAggressiveLea() &&
656 MemOp->getBase()->getRegNum() == this->getDest()->getRegNum() &&
657 MemOp->getIndex() == nullptr && MemOp->getShift() == 0) {
658 auto *Add = InstImpl<TraitsType>::InstX86Add::create(
659 const_cast<Cfg *>(Func), this->getDest(), MemOp->getOffset());
660 // TODO(manasijm): Remove const_cast by emitting code for add
661 // directly.
662 return Add;
663 }
664 }
665 return nullptr;
666 }
667
643 static const char *Opcode; 668 static const char *Opcode;
644 static const GPREmitterRegOp Emitter; 669 static const GPREmitterRegOp Emitter;
645 }; 670 };
646 671
647 template <typename InstX86Base::InstKindX86 K> 672 template <typename InstX86Base::InstKindX86 K>
648 class InstX86BaseUnaryopXmm : public InstX86Base { 673 class InstX86BaseUnaryopXmm : public InstX86Base {
649 InstX86BaseUnaryopXmm() = delete; 674 InstX86BaseUnaryopXmm() = delete;
650 InstX86BaseUnaryopXmm(const InstX86BaseUnaryopXmm &) = delete; 675 InstX86BaseUnaryopXmm(const InstX86BaseUnaryopXmm &) = delete;
651 InstX86BaseUnaryopXmm &operator=(const InstX86BaseUnaryopXmm &) = delete; 676 InstX86BaseUnaryopXmm &operator=(const InstX86BaseUnaryopXmm &) = delete;
652 677
(...skipping 2958 matching lines...) Expand 10 before | Expand all | Expand 10 after
3611 &InstImpl<TraitsType>::Assembler::punpckldq}; \ 3636 &InstImpl<TraitsType>::Assembler::punpckldq}; \
3612 } \ 3637 } \
3613 } 3638 }
3614 3639
3615 } // end of namespace X86NAMESPACE 3640 } // end of namespace X86NAMESPACE
3616 } // end of namespace Ice 3641 } // end of namespace Ice
3617 3642
3618 #include "IceInstX86BaseImpl.h" 3643 #include "IceInstX86BaseImpl.h"
3619 3644
3620 #endif // SUBZERO_SRC_ICEINSTX86BASE_H 3645 #endif // SUBZERO_SRC_ICEINSTX86BASE_H
OLDNEW
« no previous file with comments | « src/IceClFlags.def ('k') | src/IceInstX86BaseImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698