OLD | NEW |
---|---|
1 //===- subzero/src/PNaClTranslator.cpp - ICE from bitcode -----------------===// | 1 //===- subzero/src/PNaClTranslator.cpp - ICE from bitcode -----------------===// |
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 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1332 public: | 1332 public: |
1333 FunctionParser(unsigned BlockID, BlockParserBaseClass *EnclosingParser) | 1333 FunctionParser(unsigned BlockID, BlockParserBaseClass *EnclosingParser) |
1334 : BlockParserBaseClass(BlockID, EnclosingParser), | 1334 : BlockParserBaseClass(BlockID, EnclosingParser), |
1335 Timer(Ice::TimerStack::TT_parseFunctions, getTranslator().getContext()), | 1335 Timer(Ice::TimerStack::TT_parseFunctions, getTranslator().getContext()), |
1336 Func(nullptr), FcnId(Context->getNextFunctionBlockValueID()), | 1336 Func(nullptr), FcnId(Context->getNextFunctionBlockValueID()), |
1337 FuncDecl(Context->getFunctionByID(FcnId)), | 1337 FuncDecl(Context->getFunctionByID(FcnId)), |
1338 CachedNumGlobalValueIDs(Context->getNumGlobalIDs()), | 1338 CachedNumGlobalValueIDs(Context->getNumGlobalIDs()), |
1339 NextLocalInstIndex(Context->getNumGlobalIDs()) {} | 1339 NextLocalInstIndex(Context->getNumGlobalIDs()) {} |
1340 | 1340 |
1341 bool convertFunction() { | 1341 bool convertFunction() { |
1342 const Ice::TimerStackIdT StackID = Ice::GlobalContext::TSK_Funcs; | |
1343 Ice::TimerIdT TimerID = 0; | |
1344 const bool TimeThisFunction = getFlags().getTimeEachFunction(); | |
1345 if (TimeThisFunction) { | |
1346 TimerID = getTranslator().getContext()->getTimerID(StackID, | |
1347 FuncDecl->getName()); | |
1348 getTranslator().getContext()->pushTimer(TimerID, StackID); | |
1349 } | |
1350 | |
1351 // Note: The Cfg is created, even when IR generation is disabled. This is | 1342 // Note: The Cfg is created, even when IR generation is disabled. This is |
1352 // done to install a CfgLocalAllocator for various internal containers. | 1343 // done to install a CfgLocalAllocator for various internal containers. |
1353 Func = Ice::Cfg::create(getTranslator().getContext(), | 1344 Func = Ice::Cfg::create(getTranslator().getContext(), |
1354 getTranslator().getNextSequenceNumber()); | 1345 getTranslator().getNextSequenceNumber()); |
Karl
2016/03/11 23:05:50
Curiosity: Why not include this in the time?
Jim Stichnoth
2016/03/11 23:32:34
It was because of the scoping - I need the timer t
| |
1355 bool ParserResult; | 1346 bool ParserResult; |
1356 { | 1347 { |
1348 Ice::TimerMarker T(getTranslator().getContext(), FuncDecl->getName()); | |
1357 Ice::CfgLocalAllocatorScope _(Func.get()); | 1349 Ice::CfgLocalAllocatorScope _(Func.get()); |
1358 | 1350 |
1359 // TODO(kschimpf) Clean up API to add a function signature to a CFG. | 1351 // TODO(kschimpf) Clean up API to add a function signature to a CFG. |
1360 const Ice::FuncSigType &Signature = FuncDecl->getSignature(); | 1352 const Ice::FuncSigType &Signature = FuncDecl->getSignature(); |
1361 | 1353 |
1362 Func->setFunctionName(FuncDecl->getName()); | 1354 Func->setFunctionName(FuncDecl->getName()); |
1363 Func->setReturnType(Signature.getReturnType()); | 1355 Func->setReturnType(Signature.getReturnType()); |
1364 Func->setInternal(FuncDecl->getLinkage() == GlobalValue::InternalLinkage); | 1356 Func->setInternal(FuncDecl->getLinkage() == GlobalValue::InternalLinkage); |
1365 CurrentNode = installNextBasicBlock(); | 1357 CurrentNode = installNextBasicBlock(); |
1366 Func->setEntryNode(CurrentNode); | 1358 Func->setEntryNode(CurrentNode); |
1367 for (Ice::Type ArgType : Signature.getArgList()) { | 1359 for (Ice::Type ArgType : Signature.getArgList()) { |
1368 Func->addArg(getNextInstVar(ArgType)); | 1360 Func->addArg(getNextInstVar(ArgType)); |
1369 } | 1361 } |
1370 | 1362 |
1371 ParserResult = ParseThisBlock(); | 1363 ParserResult = ParseThisBlock(); |
1372 | 1364 |
1373 // Temporarily end per-function timing, which will be resumed by the | |
1374 // translator function. This is because translation may be done | |
1375 // asynchronously in a separate thread. | |
1376 if (TimeThisFunction) | |
1377 getTranslator().getContext()->popTimer(TimerID, StackID); | |
1378 | |
1379 // Note: Once any errors have been found, we turn off all translation of | 1365 // Note: Once any errors have been found, we turn off all translation of |
1380 // all remaining functions. This allows successive parsing errors to be | 1366 // all remaining functions. This allows successive parsing errors to be |
1381 // reported, without adding extra checks to the translator for such | 1367 // reported, without adding extra checks to the translator for such |
1382 // parsing errors. | 1368 // parsing errors. |
1383 } | 1369 } |
1384 if (Context->getNumErrors() == 0 && Func) { | 1370 if (Context->getNumErrors() == 0 && Func) { |
1385 getTranslator().translateFcn(std::move(Func)); | 1371 getTranslator().translateFcn(std::move(Func)); |
1386 // The translator now has ownership of Func. | 1372 // The translator now has ownership of Func. |
1387 } else { | 1373 } else { |
1388 Func.reset(); | 1374 Func.reset(); |
(...skipping 1822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3211 raw_string_ostream StrBuf(Buffer); | 3197 raw_string_ostream StrBuf(Buffer); |
3212 StrBuf << IRFilename << ": Does not contain a module!"; | 3198 StrBuf << IRFilename << ": Does not contain a module!"; |
3213 llvm::report_fatal_error(StrBuf.str()); | 3199 llvm::report_fatal_error(StrBuf.str()); |
3214 } | 3200 } |
3215 if (InputStreamFile.getBitcodeBytes().getExtent() % 4 != 0) { | 3201 if (InputStreamFile.getBitcodeBytes().getExtent() % 4 != 0) { |
3216 llvm::report_fatal_error("Bitcode stream should be a multiple of 4 bytes"); | 3202 llvm::report_fatal_error("Bitcode stream should be a multiple of 4 bytes"); |
3217 } | 3203 } |
3218 } | 3204 } |
3219 | 3205 |
3220 } // end of namespace Ice | 3206 } // end of namespace Ice |
OLD | NEW |