HomeSort by relevance Sort by last modified time
    Searched refs:LiveBBs (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 142 /// 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);
330 SmallPtrSet<BasicBlock*, 64> LiveBBs;
331 LiveBBs.insert(Inst->getParent());
337 MarkBlocksLiveIn(U->getParent(), LiveBBs);
343 MarkBlocksLiveIn(PN->getIncomingBlock(i), LiveBBs);
352 if (UnwindBlock != BB && LiveBBs.count(UnwindBlock)) {
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 256 /// MarkBlocksLiveIn - Insert BB and all of its predescessors into LiveBBs until
258 static void MarkBlocksLiveIn(BasicBlock *BB, std::set<BasicBlock*> &LiveBBs) {
259 if (!LiveBBs.insert(BB).second) return; // already been here.
262 MarkBlocksLiveIn(*PI, LiveBBs);
355 std::set<BasicBlock*> LiveBBs;
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 37 milliseconds