OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BBExecutable
(Results
1 - 3
of
3
) 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/Analysis/
SparsePropagation.cpp
93
BBExecutable
.insert(BB); // Basic block is executable!
106
if (
BBExecutable
.count(Dest)) {
309
if (
BBExecutable
.count(UI->getParent())) // Inst is executable?
332
if (!
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 40 milliseconds