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

Side by Side Diff: src/IceTargetLoweringX86Base.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/IceTargetLoweringMIPS32.cpp ('k') | src/IceTargetLoweringX86BaseImpl.h » ('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/IceTargetLoweringX86Base.h - x86 lowering ----*- C++ -*-===// 1 //===- subzero/src/IceTargetLoweringX86Base.h - x86 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 void lowerExtractElement(const InstExtractElement *Instr) override; 253 void lowerExtractElement(const InstExtractElement *Instr) override;
254 void lowerFcmp(const InstFcmp *Instr) override; 254 void lowerFcmp(const InstFcmp *Instr) override;
255 void lowerIcmp(const InstIcmp *Instr) override; 255 void lowerIcmp(const InstIcmp *Instr) override;
256 256
257 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; 257 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override;
258 void lowerInsertElement(const InstInsertElement *Instr) override; 258 void lowerInsertElement(const InstInsertElement *Instr) override;
259 void lowerLoad(const InstLoad *Instr) override; 259 void lowerLoad(const InstLoad *Instr) override;
260 void lowerPhi(const InstPhi *Instr) override; 260 void lowerPhi(const InstPhi *Instr) override;
261 void lowerRet(const InstRet *Instr) override; 261 void lowerRet(const InstRet *Instr) override;
262 void lowerSelect(const InstSelect *Instr) override; 262 void lowerSelect(const InstSelect *Instr) override;
263 void lowerShuffleVector(const InstShuffleVector *Instr) override;
263 void lowerStore(const InstStore *Instr) override; 264 void lowerStore(const InstStore *Instr) override;
264 void lowerSwitch(const InstSwitch *Instr) override; 265 void lowerSwitch(const InstSwitch *Instr) override;
265 void lowerUnreachable(const InstUnreachable *Instr) override; 266 void lowerUnreachable(const InstUnreachable *Instr) override;
266 void lowerOther(const Inst *Instr) override; 267 void lowerOther(const Inst *Instr) override;
267 void lowerRMW(const InstX86FakeRMW *RMW); 268 void lowerRMW(const InstX86FakeRMW *RMW);
268 void prelowerPhis() override; 269 void prelowerPhis() override;
269 uint32_t getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes, 270 uint32_t getCallStackArgumentsSizeBytes(const CfgVector<Type> &ArgTypes,
270 Type ReturnType); 271 Type ReturnType);
271 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override; 272 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override;
272 void genTargetHelperCallFor(Inst *Instr) override; 273 void genTargetHelperCallFor(Inst *Instr) override;
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 1129
1129 explicit TargetHeaderX86(GlobalContext *Ctx) : TargetHeaderLowering(Ctx) {} 1130 explicit TargetHeaderX86(GlobalContext *Ctx) : TargetHeaderLowering(Ctx) {}
1130 }; 1131 };
1131 1132
1132 } // end of namespace X86NAMESPACE 1133 } // end of namespace X86NAMESPACE
1133 } // end of namespace Ice 1134 } // end of namespace Ice
1134 1135
1135 #include "IceTargetLoweringX86BaseImpl.h" 1136 #include "IceTargetLoweringX86BaseImpl.h"
1136 1137
1137 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H 1138 #endif // SUBZERO_SRC_ICETARGETLOWERINGX86BASE_H
OLDNEW
« no previous file with comments | « src/IceTargetLoweringMIPS32.cpp ('k') | src/IceTargetLoweringX86BaseImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698