OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isDead
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/CodeGen/
DeadMachineInstructionElim.cpp
44
bool
isDead
(const MachineInstr *MI) const;
56
bool DeadMachineInstructionElim::
isDead
(const MachineInstr *MI) const {
129
if (
isDead
(MI)) {
PHIElimination.cpp
197
bool
isDead
= MPhi->getOperand(0).
isDead
();
267
if (
isDead
) {
TailDuplication.cpp
93
void UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool
isDead
,
206
bool
isDead
= MBB->pred_empty() && !MBB->hasAddressTaken();
208
UpdateSuccessorsPHIs(MBB,
isDead
, TDBBs, Succs);
211
if (
isDead
) {
441
TailDuplicatePass::UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool
isDead
,
463
if (
isDead
) {
[
all
...]
RegisterCoalescer.cpp
804
Deads |= MO.
isDead
();
[
all
...]
TwoAddressInstructionPass.cpp
775
if (MO.isDef() && !MO.
isDead
())
831
bool
isDead
= NewKills.back().first.second;
834
if (
isDead
)
[
all
...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h
461
///
isDead
- Returns whether or not a symbol has been confirmed dead. This
464
bool
isDead
(SymbolRef sym) const {
/external/llvm/include/llvm/CodeGen/
MachineOperand.h
67
/// IsDef/IsImp/IsKill/
IsDead
flags - These are only valid for MO_Register
82
///
IsDead
- True if this register is never used by a subsequent instruction.
84
bool
IsDead
: 1;
231
bool
isDead
() const {
233
return
IsDead
;
314
IsDead
= Val;
428
/// operand. Note: This method ignores isKill and
isDead
properties.
440
bool isKill = false, bool
isDead
= false,
466
bool isKill = false, bool
isDead
= false,
475
Op.
IsDead
= isDead
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp
828
bool
IsDead
;
830
ContextLocation(const PathDiagnosticLocation &L, bool
isdead
= false)
831
: PathDiagnosticLocation(L),
IsDead
(
isdead
) {}
833
void markDead() {
IsDead
= true; }
834
bool
isDead
() const { return
IsDead
; }
895
if (!CLocs.back().
isDead
() && CLocs.back().asLocation().isFileID()) {
[
all
...]
/external/llvm/lib/Target/X86/
X86InstrInfo.cpp
[
all
...]
Completed in 488 milliseconds