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
65
/// being captured by the
Kills
set. In these blocks, the value is live into
68
/// value whose
Kills
set contains two instructions from the same basic block.
71
/// value in one of its predecessor blocks, it is not listed in the
kills
set,
76
/// not live across any blocks) and
Kills
is empty (phi nodes are not
86
///
Kills
- List of MachineInstruction's which are the last use of this
89
std::vector<MachineInstr*>
Kills
;
96
I = std::find(
Kills
.begin(),
Kills
.end(), MI);
97
if (I ==
Kills
.end())
99
Kills
.erase(I)
[
all
...]
MachineInstrBundle.h
187
bool
Kills
;
/external/llvm/lib/CodeGen/
LiveVariables.cpp
61
for (unsigned i = 0, e =
Kills
.size(); i != e; ++i)
62
if (
Kills
[i]->getParent() == MBB)
63
return
Kills
[i];
74
if (
Kills
.empty())
77
for (unsigned i = 0, e =
Kills
.size(); i != e; ++i)
78
dbgs() << "\n #" << i << ": " << *
Kills
[i];
100
for (unsigned i = 0, e = VRInfo.
Kills
.size(); i != e; ++i)
101
if (VRInfo.
Kills
[i]->getParent() == MBB) {
102
VRInfo.
Kills
.erase(VRInfo.
Kills
.begin()+i); // Erase entr
[
all
...]
LiveDebugVariables.cpp
219
/// End points where VNI is no longer live are added to
Kills
.
224
/// @param
Kills
Append end points of VNI's live range to
Kills
.
229
SmallVectorImpl<SlotIndex> *
Kills
,
238
/// @param
Kills
Points where the range of LocNo could be extended.
241
const SmallVectorImpl<SlotIndex> &
Kills
,
496
SmallVectorImpl<SlotIndex> *
Kills
,
512
if (
Kills
)
513
Kills
->push_back(Start);
534
else if (!ToEnd &&
Kills
)
[
all
...]
TwoAddressInstructionPass.cpp
213
// Find the instruction that
kills
SavedReg.
240
// If we find the instruction that
kills
SavedReg, and it is in an
278
// Save the operand that
kills
the register. We want to unset the kill
400
/// If allowFalsePositives is true then likely
kills
are treated as
kills
even
401
/// if it can't be proven that they are
kills
.
409
// All uses of physical registers are likely to be
kills
.
743
/// 'Reg' and it
kills
'Reg, consider moving the instruction below the kill
750
//
kills
efficiently.
798
SmallSet<unsigned, 2>
Kills
;
[
all
...]
Completed in 500 milliseconds