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

Side by Side Diff: src/IceTargetLowering.cpp

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/IceTargetLowering.h ('k') | src/IceTargetLoweringARM32.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/IceTargetLowering.cpp - Basic lowering implementation --===// 1 //===- subzero/src/IceTargetLowering.cpp - Basic lowering implementation --===//
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 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 break; 393 break;
394 case Inst::Arithmetic: 394 case Inst::Arithmetic:
395 lowerArithmetic(llvm::cast<InstArithmetic>(Instr)); 395 lowerArithmetic(llvm::cast<InstArithmetic>(Instr));
396 break; 396 break;
397 case Inst::Assign: 397 case Inst::Assign:
398 lowerAssign(llvm::cast<InstAssign>(Instr)); 398 lowerAssign(llvm::cast<InstAssign>(Instr));
399 break; 399 break;
400 case Inst::Br: 400 case Inst::Br:
401 lowerBr(llvm::cast<InstBr>(Instr)); 401 lowerBr(llvm::cast<InstBr>(Instr));
402 break; 402 break;
403 case Inst::Breakpoint:
404 lowerBreakpoint(llvm::cast<InstBreakpoint>(Instr));
405 break;
403 case Inst::Call: 406 case Inst::Call:
404 lowerCall(llvm::cast<InstCall>(Instr)); 407 lowerCall(llvm::cast<InstCall>(Instr));
405 break; 408 break;
406 case Inst::Cast: 409 case Inst::Cast:
407 lowerCast(llvm::cast<InstCast>(Instr)); 410 lowerCast(llvm::cast<InstCast>(Instr));
408 break; 411 break;
409 case Inst::ExtractElement: 412 case Inst::ExtractElement:
410 lowerExtractElement(llvm::cast<InstExtractElement>(Instr)); 413 lowerExtractElement(llvm::cast<InstExtractElement>(Instr));
411 break; 414 break;
412 case Inst::Fcmp: 415 case Inst::Fcmp:
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 case TARGET_LOWERING_CLASS_FOR(X): \ 900 case TARGET_LOWERING_CLASS_FOR(X): \
898 return ::X::createTargetHeaderLowering(Ctx); 901 return ::X::createTargetHeaderLowering(Ctx);
899 #include "SZTargets.def" 902 #include "SZTargets.def"
900 #undef SUBZERO_TARGET 903 #undef SUBZERO_TARGET
901 } 904 }
902 } 905 }
903 906
904 TargetHeaderLowering::~TargetHeaderLowering() = default; 907 TargetHeaderLowering::~TargetHeaderLowering() = default;
905 908
906 } // end of namespace Ice 909 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceTargetLowering.h ('k') | src/IceTargetLoweringARM32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698