| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 void lowerExtractElement(const InstExtractElement *Instr) override; | 253 void lowerExtractElement(const InstExtractElement *Instr) override; |
| 254 void lowerFcmp(const InstFcmp *Instr) override; | 254 void lowerFcmp(const InstFcmp *Instr) override; |
| 255 void lowerIcmp(const InstIcmp *Instr) override; | 255 void lowerIcmp(const InstIcmp *Instr) override; |
| 256 | 256 |
| 257 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; | 257 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; |
| 258 void lowerInsertElement(const InstInsertElement *Instr) override; | 258 void lowerInsertElement(const InstInsertElement *Instr) override; |
| 259 void lowerLoad(const InstLoad *Instr) override; | 259 void lowerLoad(const InstLoad *Instr) override; |
| 260 void lowerPhi(const InstPhi *Instr) override; | 260 void lowerPhi(const InstPhi *Instr) override; |
| 261 void lowerRet(const InstRet *Instr) override; | 261 void lowerRet(const InstRet *Instr) override; |
| 262 void lowerSelect(const InstSelect *Instr) override; | 262 void lowerSelect(const InstSelect *Instr) override; |
| 263 void lowerShuffleVector(const InstShuffleVector *Instr) override; |
| 263 void lowerStore(const InstStore *Instr) override; | 264 void lowerStore(const InstStore *Instr) override; |
| 264 void lowerSwitch(const InstSwitch *Instr) override; | 265 void lowerSwitch(const InstSwitch *Instr) override; |
| 265 void lowerUnreachable(const InstUnreachable *Instr) override; | 266 void lowerUnreachable(const InstUnreachable *Instr) override; |
| 266 void lowerOther(const Inst *Instr) override; | 267 void lowerOther(const Inst *Instr) override; |
| 267 void lowerRMW(const InstX86FakeRMW *RMW); | 268 void lowerRMW(const InstX86FakeRMW *RMW); |
| 268 void prelowerPhis() override; | 269 void prelowerPhis() override; |
| 269 uint32_t getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes, | 270 uint32_t getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes, |
| 270 Type ReturnType); | 271 Type ReturnType); |
| 271 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override; | 272 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override; |
| 272 void genTargetHelperCallFor(Inst *Instr) override; | 273 void genTargetHelperCallFor(Inst *Instr) override; |
| (...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1128 | 1129 |
| 1129 explicit TargetHeaderX86(GlobalContext *Ctx) : TargetHeaderLowering(Ctx) {} | 1130 explicit TargetHeaderX86(GlobalContext *Ctx) : TargetHeaderLowering(Ctx) {} |
| 1130 }; | 1131 }; |
| 1131 | 1132 |
| 1132 } // end of namespace X86NAMESPACE | 1133 } // end of namespace X86NAMESPACE |
| 1133 } // end of namespace Ice | 1134 } // end of namespace Ice |
| 1134 | 1135 |
| 1135 #include "IceTargetLoweringX86BaseImpl.h" | 1136 #include "IceTargetLoweringX86BaseImpl.h" |
| 1136 | 1137 |
| 1137 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H | 1138 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H |
| OLD | NEW |