Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(906)

Side by Side Diff: src/IceTargetLoweringMIPS32.h

Issue 2317653004: Subzero, MIPS32: Introduction of genTargetHelperCallFor (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/IceTargetLoweringMIPS32.cpp » ('j') | src/IceTargetLoweringMIPS32.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 void lowerSelect(const InstSelect *Instr) override; 558 void lowerSelect(const InstSelect *Instr) override;
559 void lowerShuffleVector(const InstShuffleVector *Instr) override; 559 void lowerShuffleVector(const InstShuffleVector *Instr) override;
560 void lowerStore(const InstStore *Instr) override; 560 void lowerStore(const InstStore *Instr) override;
561 void lowerSwitch(const InstSwitch *Instr) override; 561 void lowerSwitch(const InstSwitch *Instr) override;
562 void lowerUnreachable(const InstUnreachable *Instr) override; 562 void lowerUnreachable(const InstUnreachable *Instr) override;
563 void prelowerPhis() override; 563 void prelowerPhis() override;
564 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override { 564 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override {
565 (void)Instr; 565 (void)Instr;
566 return 0; 566 return 0;
567 } 567 }
568 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; } 568 void genTargetHelperCallFor(Inst *Instr) override;
569 void doAddressOptLoad() override; 569 void doAddressOptLoad() override;
570 void doAddressOptStore() override; 570 void doAddressOptStore() override;
571 void randomlyInsertNop(float Probability, 571 void randomlyInsertNop(float Probability,
572 RandomNumberGenerator &RNG) override; 572 RandomNumberGenerator &RNG) override;
573 void 573 void
574 makeRandomRegisterPermutation(llvm::SmallVectorImpl<RegNumT> &Permutation, 574 makeRandomRegisterPermutation(llvm::SmallVectorImpl<RegNumT> &Permutation,
575 const SmallBitVector &ExcludeRegisters, 575 const SmallBitVector &ExcludeRegisters,
576 uint64_t Salt) const override; 576 uint64_t Salt) const override;
577 577
578 OperandMIPS32Mem *formMemoryOperand(Operand *Ptr, Type Ty); 578 OperandMIPS32Mem *formMemoryOperand(Operand *Ptr, Type Ty);
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 explicit TargetHeaderMIPS32(GlobalContext *Ctx); 726 explicit TargetHeaderMIPS32(GlobalContext *Ctx);
727 727
728 private: 728 private:
729 ~TargetHeaderMIPS32() = default; 729 ~TargetHeaderMIPS32() = default;
730 }; 730 };
731 731
732 } // end of namespace MIPS32 732 } // end of namespace MIPS32
733 } // end of namespace Ice 733 } // end of namespace Ice
734 734
735 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H 735 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H
OLDNEW
« no previous file with comments | « no previous file | src/IceTargetLoweringMIPS32.cpp » ('j') | src/IceTargetLoweringMIPS32.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698