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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
294 void lowerIcmp(const InstIcmp *Instr) override; | 294 void lowerIcmp(const InstIcmp *Instr) override; |
295 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; | 295 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; |
296 void lowerInsertElement(const InstInsertElement *Instr) override; | 296 void lowerInsertElement(const InstInsertElement *Instr) override; |
297 void lowerLoad(const InstLoad *Instr) override; | 297 void lowerLoad(const InstLoad *Instr) override; |
298 void lowerPhi(const InstPhi *Instr) override; | 298 void lowerPhi(const InstPhi *Instr) override; |
299 void lowerRet(const InstRet *Instr) override; | 299 void lowerRet(const InstRet *Instr) override; |
300 void lowerSelect(const InstSelect *Instr) override; | 300 void lowerSelect(const InstSelect *Instr) override; |
301 void lowerStore(const InstStore *Instr) override; | 301 void lowerStore(const InstStore *Instr) override; |
302 void lowerSwitch(const InstSwitch *Instr) override; | 302 void lowerSwitch(const InstSwitch *Instr) override; |
303 void lowerUnreachable(const InstUnreachable *Instr) override; | 303 void lowerUnreachable(const InstUnreachable *Instr) override; |
304 void lowerBreakpoint(const InstBreakpoint *Instr) override; | |
Jim Stichnoth
2016/04/14 20:03:44
sort
Eric Holk
2016/04/15 15:24:27
Done.
| |
304 void prelowerPhis() override; | 305 void prelowerPhis() override; |
305 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override { | 306 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override { |
306 (void)Instr; | 307 (void)Instr; |
307 return 0; | 308 return 0; |
308 } | 309 } |
309 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; } | 310 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; } |
310 void doAddressOptLoad() override; | 311 void doAddressOptLoad() override; |
311 void doAddressOptStore() override; | 312 void doAddressOptStore() override; |
312 void randomlyInsertNop(float Probability, | 313 void randomlyInsertNop(float Probability, |
313 RandomNumberGenerator &RNG) override; | 314 RandomNumberGenerator &RNG) override; |
(...skipping 53 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 |