OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Kills
(Results
1 - 5
of
5
) sorted by null
/external/llvm/include/llvm/CodeGen/
LiveVariables.h
67
/// being captured by the
Kills
set. In these blocks, the value is live into
70
/// value whose
Kills
set contains two instructions from the same basic block.
73
/// value in one of its predecessor blocks, it is not listed in the
kills
set,
78
/// not live across any blocks) and
Kills
is empty (phi nodes are not
92
///
Kills
- List of MachineInstruction's which are the last use of this
95
std::vector<MachineInstr*>
Kills
;
104
I = std::find(
Kills
.begin(),
Kills
.end(), MI);
105
if (I ==
Kills
.end())
107
Kills
.erase(I)
[
all
...]
/external/llvm/lib/CodeGen/
LiveVariables.cpp
59
for (unsigned i = 0, e =
Kills
.size(); i != e; ++i)
60
if (
Kills
[i]->getParent() == MBB)
61
return
Kills
[i];
71
if (
Kills
.empty())
74
for (unsigned i = 0, e =
Kills
.size(); i != e; ++i)
75
dbgs() << "\n #" << i << ": " << *
Kills
[i];
96
for (unsigned i = 0, e = VRInfo.
Kills
.size(); i != e; ++i)
97
if (VRInfo.
Kills
[i]->getParent() == MBB) {
98
VRInfo.
Kills
.erase(VRInfo.
Kills
.begin()+i); // Erase entr
[
all
...]
LiveDebugVariables.cpp
187
/// End points where VNI is no longer live are added to
Kills
.
192
/// @param
Kills
Append end points of VNI's live range to
Kills
.
197
SmallVectorImpl<SlotIndex> *
Kills
,
205
/// @param
Kills
Points where the range of LocNo could be extended.
208
const SmallVectorImpl<SlotIndex> &
Kills
,
449
SmallVectorImpl<SlotIndex> *
Kills
,
465
if (
Kills
)
466
Kills
->push_back(Start);
487
else if (!ToEnd &&
Kills
)
[
all
...]
RegisterCoalescer.cpp
798
bool
Kills
= false, Deads = false;
803
Kills
|= MO.isKill();
825
if (DstIsPhys &&
Kills
)
[
all
...]
TwoAddressInstructionPass.cpp
116
bool canUpdateDeletedKills(SmallVector<unsigned, 4> &
Kills
,
208
// Find the instruction that
kills
SavedReg.
254
// Save the operand that
kills
the register. We want to unset the kill
764
SmallVector<unsigned, 4> &
Kills
) {
778
Kills
.push_back(MO.getReg());
783
/// canUpdateDeletedKills - Check if all the registers listed in
Kills
are
786
/// preceding
kills
in NewKills.
788
canUpdateDeletedKills(SmallVector<unsigned, 4> &
Kills
,
791
while (!
Kills
.empty()) {
792
unsigned Kill =
Kills
.back()
[
all
...]
Completed in 399 milliseconds