| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 lowering ----*- C++ -*-===// | 1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 lowering ----*- 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 protected: | 121 protected: |
| 122 explicit TargetX86Base(Cfg *Func); | 122 explicit TargetX86Base(Cfg *Func); |
| 123 | 123 |
| 124 void postLower() override; | 124 void postLower() override; |
| 125 | 125 |
| 126 void lowerAlloca(const InstAlloca *Inst) override; | 126 void lowerAlloca(const InstAlloca *Inst) override; |
| 127 void lowerArithmetic(const InstArithmetic *Inst) override; | 127 void lowerArithmetic(const InstArithmetic *Inst) override; |
| 128 void lowerAssign(const InstAssign *Inst) override; | 128 void lowerAssign(const InstAssign *Inst) override; |
| 129 void lowerBr(const InstBr *Inst) override; | 129 void lowerBr(const InstBr *Inst) override; |
| 130 void lowerCall(const InstCall *Inst) override; | |
| 131 void lowerCast(const InstCast *Inst) override; | 130 void lowerCast(const InstCast *Inst) override; |
| 132 void lowerExtractElement(const InstExtractElement *Inst) override; | 131 void lowerExtractElement(const InstExtractElement *Inst) override; |
| 133 void lowerFcmp(const InstFcmp *Inst) override; | 132 void lowerFcmp(const InstFcmp *Inst) override; |
| 134 void lowerIcmp(const InstIcmp *Inst) override; | 133 void lowerIcmp(const InstIcmp *Inst) override; |
| 135 void lowerIntrinsicCall(const InstIntrinsicCall *Inst) override; | 134 void lowerIntrinsicCall(const InstIntrinsicCall *Inst) override; |
| 136 void lowerInsertElement(const InstInsertElement *Inst) override; | 135 void lowerInsertElement(const InstInsertElement *Inst) override; |
| 137 void lowerLoad(const InstLoad *Inst) override; | 136 void lowerLoad(const InstLoad *Inst) override; |
| 138 void lowerPhi(const InstPhi *Inst) override; | 137 void lowerPhi(const InstPhi *Inst) override; |
| 139 void lowerRet(const InstRet *Inst) override; | 138 void lowerRet(const InstRet *Inst) override; |
| 140 void lowerSelect(const InstSelect *Inst) override; | 139 void lowerSelect(const InstSelect *Inst) override; |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 } | 621 } |
| 623 | 622 |
| 624 BoolFolding FoldingInfo; | 623 BoolFolding FoldingInfo; |
| 625 }; | 624 }; |
| 626 } // end of namespace X86Internal | 625 } // end of namespace X86Internal |
| 627 } // end of namespace Ice | 626 } // end of namespace Ice |
| 628 | 627 |
| 629 #include "IceTargetLoweringX86BaseImpl.h" | 628 #include "IceTargetLoweringX86BaseImpl.h" |
| 630 | 629 |
| 631 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H | 630 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H |
| OLD | NEW |