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

Side by Side Diff: src/IceTargetLoweringARM32.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/IceTargetLowering.cpp ('k') | src/IceTargetLoweringARM32.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/IceTargetLoweringARM32.h - ARM32 lowering ----*- C++ -*-===// 1 //===- subzero/src/IceTargetLoweringARM32.h - ARM32 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 Operand *Val); 278 Operand *Val);
279 void lowerAtomicRMW(Variable *Dest, uint32_t Operation, Operand *Ptr, 279 void lowerAtomicRMW(Variable *Dest, uint32_t Operation, Operand *Ptr,
280 Operand *Val); 280 Operand *Val);
281 void lowerBreakpoint(const InstBreakpoint *Instr) override; 281 void lowerBreakpoint(const InstBreakpoint *Instr) override;
282 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; 282 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override;
283 void lowerInsertElement(const InstInsertElement *Instr) override; 283 void lowerInsertElement(const InstInsertElement *Instr) override;
284 void lowerLoad(const InstLoad *Instr) override; 284 void lowerLoad(const InstLoad *Instr) override;
285 void lowerPhi(const InstPhi *Instr) override; 285 void lowerPhi(const InstPhi *Instr) override;
286 void lowerRet(const InstRet *Instr) override; 286 void lowerRet(const InstRet *Instr) override;
287 void lowerSelect(const InstSelect *Instr) override; 287 void lowerSelect(const InstSelect *Instr) override;
288 void lowerShuffleVector(const InstShuffleVector *Instr) override;
288 void lowerStore(const InstStore *Instr) override; 289 void lowerStore(const InstStore *Instr) override;
289 void lowerSwitch(const InstSwitch *Instr) override; 290 void lowerSwitch(const InstSwitch *Instr) override;
290 void lowerUnreachable(const InstUnreachable *Instr) override; 291 void lowerUnreachable(const InstUnreachable *Instr) override;
291 void prelowerPhis() override; 292 void prelowerPhis() override;
292 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override; 293 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override;
293 void genTargetHelperCallFor(Inst *Instr) override; 294 void genTargetHelperCallFor(Inst *Instr) override;
294 void doAddressOptLoad() override; 295 void doAddressOptLoad() override;
295 void doAddressOptStore() override; 296 void doAddressOptStore() override;
296 void randomlyInsertNop(float Probability, 297 void randomlyInsertNop(float Probability,
297 RandomNumberGenerator &RNG) override; 298 RandomNumberGenerator &RNG) override;
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after
1366 private: 1367 private:
1367 ~TargetHeaderARM32() = default; 1368 ~TargetHeaderARM32() = default;
1368 1369
1369 TargetARM32Features CPUFeatures; 1370 TargetARM32Features CPUFeatures;
1370 }; 1371 };
1371 1372
1372 } // end of namespace ARM32 1373 } // end of namespace ARM32
1373 } // end of namespace Ice 1374 } // end of namespace Ice
1374 1375
1375 #endif // SUBZERO_SRC_ICETARGETLOWERINGARM32_H 1376 #endif // SUBZERO_SRC_ICETARGETLOWERINGARM32_H
OLDNEW
« no previous file with comments | « src/IceTargetLowering.cpp ('k') | src/IceTargetLoweringARM32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698