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

Side by Side Diff: src/IceConverter.cpp

Issue 1419903002: Subzero: Refactor x86 register definitions to use the alias mechanism. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix assembler unit tests. Fix register names. Code review changes. Rebase Created 5 years, 1 month 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/IceConditionCodesX8664.h ('k') | src/IceELFObjectWriter.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/IceConverter.cpp - Converts LLVM to Ice ---------------===// 1 //===- subzero/src/IceConverter.cpp - Converts LLVM to Ice ---------------===//
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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 /// Converts global variables, and their initializers into ICE global variable 661 /// Converts global variables, and their initializers into ICE global variable
662 /// declarations, for module Mod. Returns the set of converted declarations. 662 /// declarations, for module Mod. Returns the set of converted declarations.
663 std::unique_ptr<Ice::VariableDeclarationList> 663 std::unique_ptr<Ice::VariableDeclarationList>
664 convertGlobalsToIce(Module *Mod); 664 convertGlobalsToIce(Module *Mod);
665 665
666 private: 666 private:
667 // Adds the Initializer to the list of initializers for the Global variable 667 // Adds the Initializer to the list of initializers for the Global variable
668 // declaration. 668 // declaration.
669 void addGlobalInitializer(Ice::VariableDeclaration &Global, 669 void addGlobalInitializer(Ice::VariableDeclaration &Global,
670 const Constant *Initializer) { 670 const Constant *Initializer) {
671 const bool HasOffset = false; 671 constexpr bool HasOffset = false;
672 const Ice::RelocOffsetT Offset = 0; 672 constexpr Ice::RelocOffsetT Offset = 0;
673 addGlobalInitializer(Global, Initializer, HasOffset, Offset); 673 addGlobalInitializer(Global, Initializer, HasOffset, Offset);
674 } 674 }
675 675
676 // Adds Initializer to the list of initializers for Global variable 676 // Adds Initializer to the list of initializers for Global variable
677 // declaration. HasOffset is true only if Initializer is a relocation 677 // declaration. HasOffset is true only if Initializer is a relocation
678 // initializer and Offset should be added to the relocation. 678 // initializer and Offset should be added to the relocation.
679 void addGlobalInitializer(Ice::VariableDeclaration &Global, 679 void addGlobalInitializer(Ice::VariableDeclaration &Global,
680 const Constant *Initializer, bool HasOffset, 680 const Constant *Initializer, bool HasOffset,
681 Ice::RelocOffsetT Offset); 681 Ice::RelocOffsetT Offset);
682 682
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
918 Ctx->pushTimer(TimerID, StackID); 918 Ctx->pushTimer(TimerID, StackID);
919 } 919 }
920 LLVM2ICEFunctionConverter FunctionConverter(*this); 920 LLVM2ICEFunctionConverter FunctionConverter(*this);
921 FunctionConverter.convertFunction(&I); 921 FunctionConverter.convertFunction(&I);
922 if (TimeThisFunction) 922 if (TimeThisFunction)
923 Ctx->popTimer(TimerID, StackID); 923 Ctx->popTimer(TimerID, StackID);
924 } 924 }
925 } 925 }
926 926
927 } // end of namespace Ice 927 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceConditionCodesX8664.h ('k') | src/IceELFObjectWriter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698