OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
);
318
SmallPtrSet<BasicBlock*, 64>
LiveBBs
;
319
LiveBBs
.insert(Inst->getParent());
325
MarkBlocksLiveIn(U->getParent(),
LiveBBs
);
331
MarkBlocksLiveIn(PN->getIncomingBlock(i),
LiveBBs
);
340
if (UnwindBlock != BB &&
LiveBBs
.count(UnwindBlock)) {
/external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp
253
/// MarkBlocksLiveIn - Insert BB and all of its predescessors into
LiveBBs
until
255
static void MarkBlocksLiveIn(BasicBlock *BB, std::set<BasicBlock*> &
LiveBBs
) {
256
if (!
LiveBBs
.insert(BB).second) return; // already been here.
259
MarkBlocksLiveIn(*PI,
LiveBBs
);
352
std::set<BasicBlock*>
LiveBBs
;
353
LiveBBs
.insert(Inst->getParent());
359
MarkBlocksLiveIn(U->getParent(),
LiveBBs
);
365
MarkBlocksLiveIn(PN->getIncomingBlock(i),
LiveBBs
);
374
if (UnwindBlock != BB &&
LiveBBs
.count(UnwindBlock)) {
Completed in 47 milliseconds