| 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 |
| 11 /// This file declares the Operand class and its target-independent subclasses. | 11 /// \brief Declares the Operand class and its target-independent subclasses. |
| 12 /// |
| 12 /// The main classes are Variable, which represents an LLVM variable that is | 13 /// The main classes are Variable, which represents an LLVM variable that is |
| 13 /// either register- or stack-allocated, and the Constant hierarchy, which | 14 /// either register- or stack-allocated, and the Constant hierarchy, which |
| 14 /// represents integer, floating-point, and/or symbolic constants. | 15 /// represents integer, floating-point, and/or symbolic constants. |
| 15 /// | 16 /// |
| 16 //===----------------------------------------------------------------------===// | 17 //===----------------------------------------------------------------------===// |
| 17 | 18 |
| 18 #ifndef SUBZERO_SRC_ICEOPERAND_H | 19 #ifndef SUBZERO_SRC_ICEOPERAND_H |
| 19 #define SUBZERO_SRC_ICEOPERAND_H | 20 #define SUBZERO_SRC_ICEOPERAND_H |
| 20 | 21 |
| 21 #include "IceCfg.h" | 22 #include "IceCfg.h" |
| (...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 767 private: | 768 private: |
| 768 const Cfg *Func; | 769 const Cfg *Func; |
| 769 MetadataKind Kind; | 770 MetadataKind Kind; |
| 770 CfgVector<VariableTracking> Metadata; | 771 CfgVector<VariableTracking> Metadata; |
| 771 const static InstDefList NoDefinitions; | 772 const static InstDefList NoDefinitions; |
| 772 }; | 773 }; |
| 773 | 774 |
| 774 } // end of namespace Ice | 775 } // end of namespace Ice |
| 775 | 776 |
| 776 #endif // SUBZERO_SRC_ICEOPERAND_H | 777 #endif // SUBZERO_SRC_ICEOPERAND_H |
| OLD | NEW |