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

Side by Side Diff: src/IceInstX86BaseImpl.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
OLDNEW
1 //===- subzero/src/IceInstX86BaseImpl.h - Generic X86 instructions -*- C++ -*=// 1 //===- subzero/src/IceInstX86BaseImpl.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 2007 matching lines...) Expand 10 before | Expand all | Expand 10 after
2018 Str << "storeq." << this->getSrc(0)->getType() << " "; 2018 Str << "storeq." << this->getSrc(0)->getType() << " ";
2019 this->getSrc(1)->dump(Func); 2019 this->getSrc(1)->dump(Func);
2020 Str << ", "; 2020 Str << ", ";
2021 this->getSrc(0)->dump(Func); 2021 this->getSrc(0)->dump(Func);
2022 } 2022 }
2023 2023
2024 template <typename TraitsType> 2024 template <typename TraitsType>
2025 void InstImpl<TraitsType>::InstX86Lea::emit(const Cfg *Func) const { 2025 void InstImpl<TraitsType>::InstX86Lea::emit(const Cfg *Func) const {
2026 if (!BuildDefs::dump()) 2026 if (!BuildDefs::dump())
2027 return; 2027 return;
2028
2029 auto *MemOp = llvm::dyn_cast<X86OperandMem>(this->getSrc(0));
Jim Stichnoth 2016/07/29 14:27:26 This needs a comment to explain what's going on, w
2030 if (MemOp && getFlags().getAggressiveLea() &&
Jim Stichnoth 2016/07/29 14:27:26 MemOp != nullptr
manasijm 2016/08/01 19:36:21 Done.
2031 MemOp->getBase()->getRegNum() == this->getDest()->getRegNum() &&
2032 MemOp->getIndex() == nullptr && MemOp->getShift() == 0) {
2033 auto *Add = InstImpl<TraitsType>::InstX86Add::create(
2034 const_cast<Cfg *>(Func), this->getDest(), MemOp->getOffset());
Jim Stichnoth 2016/07/29 14:27:26 const_cast - yuck! This often indicates a design
manasijm 2016/08/01 19:36:21 Done.
manasijm 2016/08/01 19:36:21 Using the allocator 'trick' does not seem to help
Jim Stichnoth 2016/08/01 21:08:41 well actually, asType() has the same problem with
2035 Add->emit(Func);
2036 return;
2037 }
2038
2028 Ostream &Str = Func->getContext()->getStrEmit(); 2039 Ostream &Str = Func->getContext()->getStrEmit();
2029 assert(this->getSrcSize() == 1); 2040 assert(this->getSrcSize() == 1);
2030 assert(this->getDest()->hasReg()); 2041 assert(this->getDest()->hasReg());
2031 Str << "\t" 2042 Str << "\t"
2032 "lea" << this->getWidthString(this->getDest()->getType()) << "\t"; 2043 "lea" << this->getWidthString(this->getDest()->getType()) << "\t";
2033 Operand *Src0 = this->getSrc(0); 2044 Operand *Src0 = this->getSrc(0);
2034 if (const auto *Src0Var = llvm::dyn_cast<Variable>(Src0)) { 2045 if (const auto *Src0Var = llvm::dyn_cast<Variable>(Src0)) {
2035 Type Ty = Src0Var->getType(); 2046 Type Ty = Src0Var->getType();
2036 // lea on x86-32 doesn't accept mem128 operands, so cast VSrc0 to an 2047 // lea on x86-32 doesn't accept mem128 operands, so cast VSrc0 to an
2037 // acceptable type. 2048 // acceptable type.
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after
2938 return; 2949 return;
2939 Ostream &Str = Func->getContext()->getStrDump(); 2950 Ostream &Str = Func->getContext()->getStrDump();
2940 Str << "IACA_END"; 2951 Str << "IACA_END";
2941 } 2952 }
2942 2953
2943 } // end of namespace X86NAMESPACE 2954 } // end of namespace X86NAMESPACE
2944 2955
2945 } // end of namespace Ice 2956 } // end of namespace Ice
2946 2957
2947 #endif // SUBZERO_SRC_ICEINSTX86BASEIMPL_H 2958 #endif // SUBZERO_SRC_ICEINSTX86BASEIMPL_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698