| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringMIPS32.h - MIPS32 lowering ---*- C++-*-===// | 1 //===- subzero/src/IceTargetLoweringMIPS32.h - MIPS32 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 explicit TargetMIPS32(Cfg *Func); | 280 explicit TargetMIPS32(Cfg *Func); |
| 281 | 281 |
| 282 void postLower() override; | 282 void postLower() override; |
| 283 | 283 |
| 284 void lowerAlloca(const InstAlloca *Instr) override; | 284 void lowerAlloca(const InstAlloca *Instr) override; |
| 285 void lowerArithmetic(const InstArithmetic *Instr) override; | 285 void lowerArithmetic(const InstArithmetic *Instr) override; |
| 286 void lowerInt64Arithmetic(const InstArithmetic *Instr, Variable *Dest, | 286 void lowerInt64Arithmetic(const InstArithmetic *Instr, Variable *Dest, |
| 287 Operand *Src0, Operand *Src1); | 287 Operand *Src0, Operand *Src1); |
| 288 void lowerAssign(const InstAssign *Instr) override; | 288 void lowerAssign(const InstAssign *Instr) override; |
| 289 void lowerBr(const InstBr *Instr) override; | 289 void lowerBr(const InstBr *Instr) override; |
| 290 void lowerBreakpoint(const InstBreakpoint *Instr) override; |
| 290 void lowerCall(const InstCall *Instr) override; | 291 void lowerCall(const InstCall *Instr) override; |
| 291 void lowerCast(const InstCast *Instr) override; | 292 void lowerCast(const InstCast *Instr) override; |
| 292 void lowerExtractElement(const InstExtractElement *Instr) override; | 293 void lowerExtractElement(const InstExtractElement *Instr) override; |
| 293 void lowerFcmp(const InstFcmp *Instr) override; | 294 void lowerFcmp(const InstFcmp *Instr) override; |
| 294 void lowerIcmp(const InstIcmp *Instr) override; | 295 void lowerIcmp(const InstIcmp *Instr) override; |
| 295 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; | 296 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; |
| 296 void lowerInsertElement(const InstInsertElement *Instr) override; | 297 void lowerInsertElement(const InstInsertElement *Instr) override; |
| 297 void lowerLoad(const InstLoad *Instr) override; | 298 void lowerLoad(const InstLoad *Instr) override; |
| 298 void lowerPhi(const InstPhi *Instr) override; | 299 void lowerPhi(const InstPhi *Instr) override; |
| 299 void lowerRet(const InstRet *Instr) override; | 300 void lowerRet(const InstRet *Instr) override; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 explicit TargetHeaderMIPS32(GlobalContext *Ctx); | 368 explicit TargetHeaderMIPS32(GlobalContext *Ctx); |
| 368 | 369 |
| 369 private: | 370 private: |
| 370 ~TargetHeaderMIPS32() = default; | 371 ~TargetHeaderMIPS32() = default; |
| 371 }; | 372 }; |
| 372 | 373 |
| 373 } // end of namespace MIPS32 | 374 } // end of namespace MIPS32 |
| 374 } // end of namespace Ice | 375 } // end of namespace Ice |
| 375 | 376 |
| 376 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H | 377 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H |
| OLD | NEW |