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

Side by Side Diff: src/IceConverter.cpp

Issue 1027933002: Subzero: Prune unreachable nodes after constructing the Cfg. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 9 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/IceCfgNode.cpp ('k') | src/PNaClTranslator.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 // This file implements the LLVM to ICE converter. 10 // This file implements the LLVM to ICE converter.
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 106
107 // Make an initial pass through the block list just to resolve the 107 // Make an initial pass through the block list just to resolve the
108 // blocks in the original linearized order. Otherwise the ICE 108 // blocks in the original linearized order. Otherwise the ICE
109 // linearized order will be affected by branch targets in 109 // linearized order will be affected by branch targets in
110 // terminator instructions. 110 // terminator instructions.
111 for (const BasicBlock &BBI : *F) 111 for (const BasicBlock &BBI : *F)
112 mapBasicBlockToNode(&BBI); 112 mapBasicBlockToNode(&BBI);
113 for (const BasicBlock &BBI : *F) 113 for (const BasicBlock &BBI : *F)
114 convertBasicBlock(&BBI); 114 convertBasicBlock(&BBI);
115 Func->setEntryNode(mapBasicBlockToNode(&F->getEntryBlock())); 115 Func->setEntryNode(mapBasicBlockToNode(&F->getEntryBlock()));
116 Func->computePredecessors(); 116 Func->computeInOutEdges();
117 117
118 Ice::Cfg::setCurrentCfg(nullptr); 118 Ice::Cfg::setCurrentCfg(nullptr);
119 Converter.translateFcn(std::move(Func)); 119 Converter.translateFcn(std::move(Func));
120 } 120 }
121 121
122 // convertConstant() does not use Func or require it to be a valid 122 // convertConstant() does not use Func or require it to be a valid
123 // Ice::Cfg pointer. As such, it's suitable for e.g. constructing 123 // Ice::Cfg pointer. As such, it's suitable for e.g. constructing
124 // global initializers. 124 // global initializers.
125 Ice::Constant *convertConstant(const Constant *Const) { 125 Ice::Constant *convertConstant(const Constant *Const) {
126 if (const auto GV = dyn_cast<GlobalValue>(Const)) { 126 if (const auto GV = dyn_cast<GlobalValue>(Const)) {
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after
902 Ctx->pushTimer(TimerID, StackID); 902 Ctx->pushTimer(TimerID, StackID);
903 } 903 }
904 LLVM2ICEFunctionConverter FunctionConverter(*this); 904 LLVM2ICEFunctionConverter FunctionConverter(*this);
905 FunctionConverter.convertFunction(&I); 905 FunctionConverter.convertFunction(&I);
906 if (TimeThisFunction) 906 if (TimeThisFunction)
907 Ctx->popTimer(TimerID, StackID); 907 Ctx->popTimer(TimerID, StackID);
908 } 908 }
909 } 909 }
910 910
911 } // end of namespace Ice 911 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/PNaClTranslator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698