OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Dead
(Results
1 - 7
of
7
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h
34
Dead
= 0x10,
72
flags & RegState::
Dead
,
393
return B ? RegState::
Dead
: 0;
/external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp
1
//===- DeadStoreElimination.cpp - Fast
Dead
Store Elimination -------------===//
10
// This file implements a trivial
dead
store elimination that only considers
64
// Only check non-
dead
blocks.
Dead
blocks may have strange pointer
92
INITIALIZE_PASS_BEGIN(DSE, "dse", "
Dead
Store Elimination", false, false)
96
INITIALIZE_PASS_END(DSE, "dse", "
Dead
Store Elimination", false, false)
106
///
dead
, delete them and the computation tree that feeds them.
124
// This instruction is
dead
, zap it, in stages. Start by removing it from
133
// If this operand just became
dead
, add it to the NowDeadInsts list.
254
// Never remove
dead
lifetime_end's, e.g. because it is followed by
[
all
...]
/external/llvm/lib/CodeGen/
RegAllocFast.cpp
639
DEBUG(dbgs() << "Clearing dubious
dead
: " << MO << "\n");
650
DEBUG(dbgs() << "Clearing clean
dead
: " << MO << "\n");
665
bool
Dead
= MO.isDead();
668
return MO.isKill() ||
Dead
;
687
return
Dead
;
[
all
...]
SplitKit.cpp
[
all
...]
MachineInstr.cpp
297
OS << "
dead
";
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp
71
STATISTIC(NumFastIselDead, "Number of
dead
insts removed on failure");
328
MachineInstr *
Dead
= &*I;
330
Dead
->eraseFromParent();
849
// Remove
dead
code. However, ignore call instructions since we've flushed
864
// Check for
dead
code and remove as necessary.
[
all
...]
/external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp
291
// We might have a
dead
and dangling constant hanging off of here.
397
// If
Dead
[n].first is the only use of a malloc result, we can delete its
398
// chain of computation and the store to the global in
Dead
[n].second.
399
SmallVector<std::pair<Instruction *, Instruction *>, 32>
Dead
;
412
Dead
.push_back(std::make_pair(I, SI));
420
Dead
.push_back(std::make_pair(I, MSI));
429
Dead
.push_back(std::make_pair(I, MTI));
440
Dead
.clear();
447
for (int i = 0, e =
Dead
.size(); i != e; ++i) {
448
if (IsSafeComputationToRemove(
Dead
[i].first, TLI))
[
all
...]
Completed in 770 milliseconds