Searched defs:LiveBBs (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp142 /// MarkBlocksLiveIn - Insert BB and all of its predescessors into LiveBBs until
145 SmallPtrSet<BasicBlock*, 64> &LiveBBs) {
146 if (!LiveBBs.insert(BB)) return; // already been here.
149 MarkBlocksLiveIn(*PI, LiveBBs);
315 SmallPtrSet<BasicBlock*, 64> LiveBBs; local
316 LiveBBs.insert(Inst->getParent());
322 MarkBlocksLiveIn(U->getParent(), LiveBBs);
328 MarkBlocksLiveIn(PN->getIncomingBlock(i), LiveBBs);
337 if (UnwindBlock != BB && LiveBBs.count(UnwindBlock)) {
144 MarkBlocksLiveIn(BasicBlock *BB, SmallPtrSet<BasicBlock*, 64> &LiveBBs) argument
/external/llvm/lib/Transforms/Utils/
H A DLowerInvoke.cpp256 /// MarkBlocksLiveIn - Insert BB and all of its predescessors into LiveBBs until
258 static void MarkBlocksLiveIn(BasicBlock *BB, std::set<BasicBlock*> &LiveBBs) { argument
259 if (!LiveBBs.insert(BB).second) return; // already been here.
262 MarkBlocksLiveIn(*PI, LiveBBs);
355 std::set<BasicBlock*> LiveBBs; local
356 LiveBBs.insert(Inst->getParent());
362 MarkBlocksLiveIn(U->getParent(), LiveBBs);
368 MarkBlocksLiveIn(PN->getIncomingBlock(i), LiveBBs);
377 if (UnwindBlock != BB && LiveBBs.count(UnwindBlock)) {

Completed in 49 milliseconds