OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AliveBlocks
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/CodeGen/
LiveVariables.cpp
70
for (SparseBitVector<>::iterator I =
AliveBlocks
.begin(),
71
E =
AliveBlocks
.end(); I != E; ++I)
108
if (VRInfo.
AliveBlocks
.test(BBNum))
112
VRInfo.
AliveBlocks
.set(BBNum);
173
if (!VRInfo.
AliveBlocks
.test(BBNum))
185
if (VRInfo.
AliveBlocks
.empty())
720
if (
AliveBlocks
.test(Num))
744
if (VI.
AliveBlocks
.test(SuccIdx))
795
getVarInfo(BBI->getOperand(i).getReg()).
AliveBlocks
.set(NumNew);
822
if (Kills.count(Reg) || VI.
AliveBlocks
.test(SuccBB->getNumber())
[
all
...]
PHIElimination.cpp
457
LV->getVarInfo(SrcReg).
AliveBlocks
.reset(opBlockNum);
MachineVerifier.cpp
[
all
...]
/external/llvm/include/llvm/CodeGen/
LiveVariables.h
60
/// There is one killing instruction, and
AliveBlocks
is empty.
63
/// throughout any blocks, these blocks are listed in
AliveBlocks
. Blocks
64
/// where the liveness range ends are not included in
AliveBlocks
, instead
72
/// but does include the predecessor block in the
AliveBlocks
set (unless that
75
/// node in the successor. In this case,
AliveBlocks
is empty (the value is
80
///
AliveBlocks
- Set of blocks in which this value is alive completely
84
SparseBitVector<>
AliveBlocks
;
Completed in 136 milliseconds