OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |