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

Side by Side Diff: src/IceInstARM32.h

Issue 1241763002: ARM: Add a postRA pass to legalize stack offsets. Greedy approach (reserve IP). (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: ugh add a virtual? Created 5 years, 5 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/IceInstARM32.h - ARM32 machine instructions --*- C++ -*-===// 1 //===- subzero/src/IceInstARM32.h - ARM32 machine 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 235
236 private: 236 private:
237 OperandARM32FlexReg(Cfg *Func, Type Ty, Variable *Reg, ShiftKind ShiftOp, 237 OperandARM32FlexReg(Cfg *Func, Type Ty, Variable *Reg, ShiftKind ShiftOp,
238 Operand *ShiftAmt); 238 Operand *ShiftAmt);
239 239
240 Variable *Reg; 240 Variable *Reg;
241 ShiftKind ShiftOp; 241 ShiftKind ShiftOp;
242 Operand *ShiftAmt; 242 Operand *ShiftAmt;
243 }; 243 };
244 244
245 /// StackVariable represents a Var that isn't assigned a register (stack-only).
246 /// It is assigned a stack slot, but the slot's offset may be too large to
247 /// represent in the native addressing mode, and so it has a separate
248 /// base register from SP/FP, where the offset from that base register is
249 /// then in range.
250 class StackVariable final : public Variable {
251 StackVariable() = delete;
252 StackVariable(const StackVariable &) = delete;
253 StackVariable &operator=(const StackVariable &) = delete;
254
255 public:
256 static StackVariable *create(Cfg *Func, Type Ty, SizeT Index) {
257 return new (Func->allocate<StackVariable>()) StackVariable(Ty, Index);
258 }
259 const static OperandKind StackVariableKind =
260 static_cast<OperandKind>(kVariable_Target);
261 static bool classof(const Operand *Operand) {
262 return Operand->getKind() == StackVariableKind;
263 }
264 void setBaseRegNum(int32_t RegNum) { BaseRegNum = RegNum; }
265 int32_t getBaseRegNum() const override { return BaseRegNum; }
266 // Inherit dump() and emit() from Variable.
267
268 private:
269 StackVariable(Type Ty, SizeT Index)
270 : Variable(StackVariableKind, Ty, Index),
271 BaseRegNum(Variable::NoRegister) {}
272 int32_t BaseRegNum;
Jim Stichnoth 2015/07/24 22:08:29 int32_t BaseRegNum = Variable::NoRegister; Then y
jvoung (off chromium) 2015/07/27 17:02:57 Done.
273 };
274
245 /// Base class for ARM instructions. While most ARM instructions can be 275 /// Base class for ARM instructions. While most ARM instructions can be
246 /// conditionally executed, a few of them are not predicable (halt, 276 /// conditionally executed, a few of them are not predicable (halt,
247 /// memory barriers, etc.). 277 /// memory barriers, etc.).
248 class InstARM32 : public InstTarget { 278 class InstARM32 : public InstTarget {
249 InstARM32() = delete; 279 InstARM32() = delete;
250 InstARM32(const InstARM32 &) = delete; 280 InstARM32(const InstARM32 &) = delete;
251 InstARM32 &operator=(const InstARM32 &) = delete; 281 InstARM32 &operator=(const InstARM32 &) = delete;
252 282
253 public: 283 public:
254 enum InstKindARM32 { 284 enum InstKindARM32 {
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
771 /// hard to pull that from the generic SrcAmount operand. 801 /// hard to pull that from the generic SrcAmount operand.
772 static InstARM32AdjustStack *create(Cfg *Func, Variable *SP, SizeT Amount, 802 static InstARM32AdjustStack *create(Cfg *Func, Variable *SP, SizeT Amount,
773 Operand *SrcAmount) { 803 Operand *SrcAmount) {
774 return new (Func->allocate<InstARM32AdjustStack>()) 804 return new (Func->allocate<InstARM32AdjustStack>())
775 InstARM32AdjustStack(Func, SP, Amount, SrcAmount); 805 InstARM32AdjustStack(Func, SP, Amount, SrcAmount);
776 } 806 }
777 void emit(const Cfg *Func) const override; 807 void emit(const Cfg *Func) const override;
778 void emitIAS(const Cfg *Func) const override; 808 void emitIAS(const Cfg *Func) const override;
779 void dump(const Cfg *Func) const override; 809 void dump(const Cfg *Func) const override;
780 static bool classof(const Inst *Inst) { return isClassof(Inst, Adjuststack); } 810 static bool classof(const Inst *Inst) { return isClassof(Inst, Adjuststack); }
811 SizeT getAmount() const { return Amount; }
781 812
782 private: 813 private:
783 InstARM32AdjustStack(Cfg *Func, Variable *SP, SizeT Amount, 814 InstARM32AdjustStack(Cfg *Func, Variable *SP, SizeT Amount,
784 Operand *SrcAmount); 815 Operand *SrcAmount);
785 const SizeT Amount; 816 const SizeT Amount;
786 }; 817 };
787 818
788 /// Call instruction (bl/blx). Arguments should have already been pushed. 819 /// Call instruction (bl/blx). Arguments should have already been pushed.
789 /// Technically bl and the register form of blx can be predicated, but we'll 820 /// Technically bl and the register form of blx can be predicated, but we'll
790 /// leave that out until needed. 821 /// leave that out until needed.
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 // Declare partial template specializations of emit() methods that 1003 // Declare partial template specializations of emit() methods that
973 // already have default implementations. Without this, there is the 1004 // already have default implementations. Without this, there is the
974 // possibility of ODR violations and link errors. 1005 // possibility of ODR violations and link errors.
975 1006
976 template <> void InstARM32Movw::emit(const Cfg *Func) const; 1007 template <> void InstARM32Movw::emit(const Cfg *Func) const;
977 template <> void InstARM32Movt::emit(const Cfg *Func) const; 1008 template <> void InstARM32Movt::emit(const Cfg *Func) const;
978 1009
979 } // end of namespace Ice 1010 } // end of namespace Ice
980 1011
981 #endif // SUBZERO_SRC_ICEINSTARM32_H 1012 #endif // SUBZERO_SRC_ICEINSTARM32_H
OLDNEW
« no previous file with comments | « src/IceClFlags.cpp ('k') | src/IceInstARM32.cpp » ('j') | src/IceTargetLowering.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698