OLD | NEW |
1 //===- subzero/src/IceTranslator.cpp - ICE to machine code ------*- C++ -*-===// | 1 //===- subzero/src/IceTranslator.cpp - ICE to machine code ------*- 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 // This file defines the general driver class for translating ICE to | 10 // This file defines the general driver class for translating ICE to |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 Ctx->setVerbose(OldVerboseMask); | 96 Ctx->setVerbose(OldVerboseMask); |
97 } | 97 } |
98 | 98 |
99 void Translator::emitConstants() { | 99 void Translator::emitConstants() { |
100 if (!Ctx->getFlags().DisableTranslation && Func) | 100 if (!Ctx->getFlags().DisableTranslation && Func) |
101 Func->getTarget()->emitConstants(); | 101 Func->getTarget()->emitConstants(); |
102 } | 102 } |
103 | 103 |
104 void Translator::lowerGlobals( | 104 void Translator::lowerGlobals( |
105 const VariableDeclarationListType &VariableDeclarations) { | 105 const VariableDeclarationListType &VariableDeclarations) { |
106 llvm::OwningPtr<TargetGlobalInitLowering> GlobalLowering( | 106 std::unique_ptr<TargetGlobalInitLowering> GlobalLowering( |
107 TargetGlobalInitLowering::createLowering(Ctx->getTargetArch(), Ctx)); | 107 TargetGlobalInitLowering::createLowering(Ctx->getTargetArch(), Ctx)); |
108 bool DisableTranslation = Ctx->getFlags().DisableTranslation; | 108 bool DisableTranslation = Ctx->getFlags().DisableTranslation; |
109 const bool DumpGlobalVariables = | 109 const bool DumpGlobalVariables = |
110 ALLOW_DUMP && Ctx->isVerbose() && Ctx->getFlags().VerboseFocusOn.empty(); | 110 ALLOW_DUMP && Ctx->isVerbose() && Ctx->getFlags().VerboseFocusOn.empty(); |
111 Ostream &Stream = Ctx->getStrDump(); | 111 Ostream &Stream = Ctx->getStrDump(); |
112 const IceString &TranslateOnly = Ctx->getFlags().TranslateOnly; | 112 const IceString &TranslateOnly = Ctx->getFlags().TranslateOnly; |
113 for (const Ice::VariableDeclaration *Global : VariableDeclarations) { | 113 for (const Ice::VariableDeclaration *Global : VariableDeclarations) { |
114 if (DumpGlobalVariables) | 114 if (DumpGlobalVariables) |
115 Global->dump(getContext(), Stream); | 115 Global->dump(getContext(), Stream); |
116 if (!DisableTranslation && | 116 if (!DisableTranslation && |
117 matchSymbolName(Global->getName(), TranslateOnly)) | 117 matchSymbolName(Global->getName(), TranslateOnly)) |
118 GlobalLowering->lower(*Global); | 118 GlobalLowering->lower(*Global); |
119 } | 119 } |
120 GlobalLowering.reset(); | 120 GlobalLowering.reset(); |
121 } | 121 } |
OLD | NEW |