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

Side by Side Diff: src/IceTargetLoweringMIPS32.h

Issue 1897243002: Subzero. Rematerializes shufflevector instructions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. Created 4 years, 8 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 | « 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 void lowerCast(const InstCast *Instr) override; 292 void lowerCast(const InstCast *Instr) override;
293 void lowerExtractElement(const InstExtractElement *Instr) override; 293 void lowerExtractElement(const InstExtractElement *Instr) override;
294 void lowerFcmp(const InstFcmp *Instr) override; 294 void lowerFcmp(const InstFcmp *Instr) override;
295 void lowerIcmp(const InstIcmp *Instr) override; 295 void lowerIcmp(const InstIcmp *Instr) override;
296 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; 296 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override;
297 void lowerInsertElement(const InstInsertElement *Instr) override; 297 void lowerInsertElement(const InstInsertElement *Instr) override;
298 void lowerLoad(const InstLoad *Instr) override; 298 void lowerLoad(const InstLoad *Instr) override;
299 void lowerPhi(const InstPhi *Instr) override; 299 void lowerPhi(const InstPhi *Instr) override;
300 void lowerRet(const InstRet *Instr) override; 300 void lowerRet(const InstRet *Instr) override;
301 void lowerSelect(const InstSelect *Instr) override; 301 void lowerSelect(const InstSelect *Instr) override;
302 void lowerShuffleVector(const InstShuffleVector *Instr) override;
302 void lowerStore(const InstStore *Instr) override; 303 void lowerStore(const InstStore *Instr) override;
303 void lowerSwitch(const InstSwitch *Instr) override; 304 void lowerSwitch(const InstSwitch *Instr) override;
304 void lowerUnreachable(const InstUnreachable *Instr) override; 305 void lowerUnreachable(const InstUnreachable *Instr) override;
305 void prelowerPhis() override; 306 void prelowerPhis() override;
306 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override { 307 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override {
307 (void)Instr; 308 (void)Instr;
308 return 0; 309 return 0;
309 } 310 }
310 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; } 311 void genTargetHelperCallFor(Inst *Instr) override { (void)Instr; }
311 void doAddressOptLoad() override; 312 void doAddressOptLoad() override;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 explicit TargetHeaderMIPS32(GlobalContext *Ctx); 369 explicit TargetHeaderMIPS32(GlobalContext *Ctx);
369 370
370 private: 371 private:
371 ~TargetHeaderMIPS32() = default; 372 ~TargetHeaderMIPS32() = default;
372 }; 373 };
373 374
374 } // end of namespace MIPS32 375 } // end of namespace MIPS32
375 } // end of namespace Ice 376 } // end of namespace Ice
376 377
377 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H 378 #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