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

Side by Side Diff: src/IceTargetLoweringMIPS32.h

Issue 1467473003: Subzero. ARM32. No more SP frobbing. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fixes the Offsetis typo. 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
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 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override {
239 (void)Instr;
240 return 0;
241 }
238 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; } 242 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; }
239 void doAddressOptLoad() override; 243 void doAddressOptLoad() override;
240 void doAddressOptStore() override; 244 void doAddressOptStore() override;
241 void randomlyInsertNop(float Probability, 245 void randomlyInsertNop(float Probability,
242 RandomNumberGenerator &RNG) override; 246 RandomNumberGenerator &RNG) override;
243 void 247 void
244 makeRandomRegisterPermutation(llvm::SmallVectorImpl<int32_t> &Permutation, 248 makeRandomRegisterPermutation(llvm::SmallVectorImpl<int32_t> &Permutation,
245 const llvm::SmallBitVector &ExcludeRegisters, 249 const llvm::SmallBitVector &ExcludeRegisters,
246 uint64_t Salt) const override; 250 uint64_t Salt) const override;
247 251
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 protected: 299 protected:
296 explicit TargetHeaderMIPS32(GlobalContext *Ctx); 300 explicit TargetHeaderMIPS32(GlobalContext *Ctx);
297 301
298 private: 302 private:
299 ~TargetHeaderMIPS32() = default; 303 ~TargetHeaderMIPS32() = default;
300 }; 304 };
301 305
302 } // end of namespace Ice 306 } // end of namespace Ice
303 307
304 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H 308 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698