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

Side by Side Diff: src/IceTargetLoweringMIPS32.h

Issue 1455033005: Subzero. Adds a pass for target-specific helper call generation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 1 month 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 | « src/IceTargetLoweringARM32.cpp ('k') | src/IceTargetLoweringMIPS32.cpp » ('j') | no next file with comments »
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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 void lowerIntrinsicCall(const InstIntrinsicCall *Inst) override; 228 void lowerIntrinsicCall(const InstIntrinsicCall *Inst) override;
229 void lowerInsertElement(const InstInsertElement *Inst) override; 229 void lowerInsertElement(const InstInsertElement *Inst) override;
230 void lowerLoad(const InstLoad *Inst) override; 230 void lowerLoad(const InstLoad *Inst) override;
231 void lowerPhi(const InstPhi *Inst) override; 231 void lowerPhi(const InstPhi *Inst) override;
232 void lowerRet(const InstRet *Inst) override; 232 void lowerRet(const InstRet *Inst) override;
233 void lowerSelect(const InstSelect *Inst) override; 233 void lowerSelect(const InstSelect *Inst) override;
234 void lowerStore(const InstStore *Inst) override; 234 void lowerStore(const InstStore *Inst) override;
235 void lowerSwitch(const InstSwitch *Inst) override; 235 void lowerSwitch(const InstSwitch *Inst) override;
236 void lowerUnreachable(const InstUnreachable *Inst) override; 236 void lowerUnreachable(const InstUnreachable *Inst) override;
237 void prelowerPhis() override; 237 void prelowerPhis() override;
238 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; }
238 void doAddressOptLoad() override; 239 void doAddressOptLoad() override;
239 void doAddressOptStore() override; 240 void doAddressOptStore() override;
240 void randomlyInsertNop(float Probability, 241 void randomlyInsertNop(float Probability,
241 RandomNumberGenerator &RNG) override; 242 RandomNumberGenerator &RNG) override;
242 void 243 void
243 makeRandomRegisterPermutation(llvm::SmallVectorImpl<int32_t> &Permutation, 244 makeRandomRegisterPermutation(llvm::SmallVectorImpl<int32_t> &Permutation,
244 const llvm::SmallBitVector &ExcludeRegisters, 245 const llvm::SmallBitVector &ExcludeRegisters,
245 uint64_t Salt) const override; 246 uint64_t Salt) const override;
246 247
247 bool UsesFramePointer = false; 248 bool UsesFramePointer = false;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 protected: 295 protected:
295 explicit TargetHeaderMIPS32(GlobalContext *Ctx); 296 explicit TargetHeaderMIPS32(GlobalContext *Ctx);
296 297
297 private: 298 private:
298 ~TargetHeaderMIPS32() = default; 299 ~TargetHeaderMIPS32() = default;
299 }; 300 };
300 301
301 } // end of namespace Ice 302 } // end of namespace Ice
302 303
303 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H 304 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H
OLDNEW
« no previous file with comments | « src/IceTargetLoweringARM32.cpp ('k') | src/IceTargetLoweringMIPS32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698