OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BBExecutable
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Analysis/
SparsePropagation.h
120
SmallPtrSet<BasicBlock *, 16>
BBExecutable
; // The bbs that are executable.
173
return
BBExecutable
.count(BB);
/external/llvm/lib/Transforms/Scalar/
SCCP.cpp
160
SmallPtrSet<BasicBlock*, 8>
BBExecutable
; // The BBs that are executable.
218
if (!
BBExecutable
.insert(BB).second)
268
return
BBExecutable
.count(BB);
457
if (
BBExecutable
.count(I->getParent())) // Inst is executable?
593
assert(
BBExecutable
.count(To) && "Dest should always be alive!");
596
if (!
BBExecutable
.count(From)) return false;
[
all
...]
Completed in 556 milliseconds