OLD | NEW |
1 //===- subzero/src/IceOperand.h - High-level operands -----------*- C++ -*-===// | 1 //===- subzero/src/IceOperand.h - High-level operands -----------*- 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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 bool getIsArg() const { return IsArgument; } | 435 bool getIsArg() const { return IsArgument; } |
436 virtual void setIsArg(bool Val = true) { IsArgument = Val; } | 436 virtual void setIsArg(bool Val = true) { IsArgument = Val; } |
437 bool getIsImplicitArg() const { return IsImplicitArgument; } | 437 bool getIsImplicitArg() const { return IsImplicitArgument; } |
438 void setIsImplicitArg(bool Val = true) { IsImplicitArgument = Val; } | 438 void setIsImplicitArg(bool Val = true) { IsImplicitArgument = Val; } |
439 | 439 |
440 void setIgnoreLiveness() { IgnoreLiveness = true; } | 440 void setIgnoreLiveness() { IgnoreLiveness = true; } |
441 bool getIgnoreLiveness() const { return IgnoreLiveness; } | 441 bool getIgnoreLiveness() const { return IgnoreLiveness; } |
442 | 442 |
443 int32_t getStackOffset() const { return StackOffset; } | 443 int32_t getStackOffset() const { return StackOffset; } |
444 void setStackOffset(int32_t Offset) { StackOffset = Offset; } | 444 void setStackOffset(int32_t Offset) { StackOffset = Offset; } |
| 445 /// Returns the variable's stack offset in symbolic form, to improve |
| 446 /// readability in DecorateAsm mode. |
| 447 IceString getSymbolicStackOffset(const Cfg *Func) const { |
| 448 return "lv$" + getName(Func); |
| 449 } |
445 | 450 |
446 static const int32_t NoRegister = -1; | 451 static const int32_t NoRegister = -1; |
447 bool hasReg() const { return getRegNum() != NoRegister; } | 452 bool hasReg() const { return getRegNum() != NoRegister; } |
448 int32_t getRegNum() const { return RegNum; } | 453 int32_t getRegNum() const { return RegNum; } |
449 void setRegNum(int32_t NewRegNum) { | 454 void setRegNum(int32_t NewRegNum) { |
450 // Regnum shouldn't be set more than once. | 455 // Regnum shouldn't be set more than once. |
451 assert(!hasReg() || RegNum == NewRegNum); | 456 assert(!hasReg() || RegNum == NewRegNum); |
452 RegNum = NewRegNum; | 457 RegNum = NewRegNum; |
453 } | 458 } |
454 bool hasRegTmp() const { return getRegNumTmp() != NoRegister; } | 459 bool hasRegTmp() const { return getRegNumTmp() != NoRegister; } |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 private: | 705 private: |
701 const Cfg *Func; | 706 const Cfg *Func; |
702 MetadataKind Kind; | 707 MetadataKind Kind; |
703 CfgVector<VariableTracking> Metadata; | 708 CfgVector<VariableTracking> Metadata; |
704 const static InstDefList NoDefinitions; | 709 const static InstDefList NoDefinitions; |
705 }; | 710 }; |
706 | 711 |
707 } // end of namespace Ice | 712 } // end of namespace Ice |
708 | 713 |
709 #endif // SUBZERO_SRC_ICEOPERAND_H | 714 #endif // SUBZERO_SRC_ICEOPERAND_H |
OLD | NEW |