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

Side by Side Diff: src/IceTargetLoweringMIPS32.h

Issue 1876413002: Subzero. WASM. Additional progress. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review feedback and 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
« 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 explicit TargetMIPS32(Cfg *Func); 280 explicit TargetMIPS32(Cfg *Func);
281 281
282 void postLower() override; 282 void postLower() override;
283 283
284 void lowerAlloca(const InstAlloca *Instr) override; 284 void lowerAlloca(const InstAlloca *Instr) override;
285 void lowerArithmetic(const InstArithmetic *Instr) override; 285 void lowerArithmetic(const InstArithmetic *Instr) override;
286 void lowerInt64Arithmetic(const InstArithmetic *Instr, Variable *Dest, 286 void lowerInt64Arithmetic(const InstArithmetic *Instr, Variable *Dest,
287 Operand *Src0, Operand *Src1); 287 Operand *Src0, Operand *Src1);
288 void lowerAssign(const InstAssign *Instr) override; 288 void lowerAssign(const InstAssign *Instr) override;
289 void lowerBr(const InstBr *Instr) override; 289 void lowerBr(const InstBr *Instr) override;
290 void lowerBreakpoint(const InstBreakpoint *Instr) override;
290 void lowerCall(const InstCall *Instr) override; 291 void lowerCall(const InstCall *Instr) override;
291 void lowerCast(const InstCast *Instr) override; 292 void lowerCast(const InstCast *Instr) override;
292 void lowerExtractElement(const InstExtractElement *Instr) override; 293 void lowerExtractElement(const InstExtractElement *Instr) override;
293 void lowerFcmp(const InstFcmp *Instr) override; 294 void lowerFcmp(const InstFcmp *Instr) override;
294 void lowerIcmp(const InstIcmp *Instr) override; 295 void lowerIcmp(const InstIcmp *Instr) override;
295 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override; 296 void lowerIntrinsicCall(const InstIntrinsicCall *Instr) override;
296 void lowerInsertElement(const InstInsertElement *Instr) override; 297 void lowerInsertElement(const InstInsertElement *Instr) override;
297 void lowerLoad(const InstLoad *Instr) override; 298 void lowerLoad(const InstLoad *Instr) override;
298 void lowerPhi(const InstPhi *Instr) override; 299 void lowerPhi(const InstPhi *Instr) override;
299 void lowerRet(const InstRet *Instr) override; 300 void lowerRet(const InstRet *Instr) override;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 explicit TargetHeaderMIPS32(GlobalContext *Ctx); 368 explicit TargetHeaderMIPS32(GlobalContext *Ctx);
368 369
369 private: 370 private:
370 ~TargetHeaderMIPS32() = default; 371 ~TargetHeaderMIPS32() = default;
371 }; 372 };
372 373
373 } // end of namespace MIPS32 374 } // end of namespace MIPS32
374 } // end of namespace Ice 375 } // end of namespace Ice
375 376
376 #endif // SUBZERO_SRC_ICETARGETLOWERINGMIPS32_H 377 #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