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

Side by Side Diff: src/IceTargetLoweringARM32.h

Issue 1876413002: Subzero. WASM. Additional progress. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Merging with master 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
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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 Operand *Val); 280 Operand *Val);
281 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; 281 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override;
282 void lowerInsertElement(const InstInsertElement *Instr) override; 282 void lowerInsertElement(const InstInsertElement *Instr) override;
283 void lowerLoad(const InstLoad *Instr) override; 283 void lowerLoad(const InstLoad *Instr) override;
284 void lowerPhi(const InstPhi *Instr) override; 284 void lowerPhi(const InstPhi *Instr) override;
285 void lowerRet(const InstRet *Instr) override; 285 void lowerRet(const InstRet *Instr) override;
286 void lowerSelect(const InstSelect *Instr) override; 286 void lowerSelect(const InstSelect *Instr) override;
287 void lowerStore(const InstStore *Instr) override; 287 void lowerStore(const InstStore *Instr) override;
288 void lowerSwitch(const InstSwitch *Instr) override; 288 void lowerSwitch(const InstSwitch *Instr) override;
289 void lowerUnreachable(const InstUnreachable *Instr) override; 289 void lowerUnreachable(const InstUnreachable *Instr) override;
290 void lowerBreakpoint(const InstBreakpoint *Instr) override;
Jim Stichnoth 2016/04/14 20:03:44 sort
Eric Holk 2016/04/15 15:24:27 Done.
290 void prelowerPhis() override; 291 void prelowerPhis() override;
291 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override; 292 uint32_t getCallStackArgumentsSizeBytes(const InstCall *Instr) override;
292 void genTargetHelperCallFor(Inst *Instr) override; 293 void genTargetHelperCallFor(Inst *Instr) override;
293 void doAddressOptLoad() override; 294 void doAddressOptLoad() override;
294 void doAddressOptStore() override; 295 void doAddressOptStore() override;
295 void randomlyInsertNop(float Probability, 296 void randomlyInsertNop(float Probability,
296 RandomNumberGenerator &RNG) override; 297 RandomNumberGenerator &RNG) override;
297 298
298 OperandARM32Mem *formMemoryOperand(Operand *Ptr, Type Ty); 299 OperandARM32Mem *formMemoryOperand(Operand *Ptr, Type Ty);
299 300
(...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 private: 1336 private:
1336 ~TargetHeaderARM32() = default; 1337 ~TargetHeaderARM32() = default;
1337 1338
1338 TargetARM32Features CPUFeatures; 1339 TargetARM32Features CPUFeatures;
1339 }; 1340 };
1340 1341
1341 } // end of namespace ARM32 1342 } // end of namespace ARM32
1342 } // end of namespace Ice 1343 } // end of namespace Ice
1343 1344
1344 #endif // SUBZERO_SRC_ICETARGETLOWERINGARM32_H 1345 #endif // SUBZERO_SRC_ICETARGETLOWERINGARM32_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698