OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isDead
(Results
1 - 12
of
12
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
DeadMachineInstructionElim.cpp
51
bool
isDead
(const MachineInstr *MI) const;
62
bool DeadMachineInstructionElim::
isDead
(const MachineInstr *MI) const {
88
if (MO.
isDead
()) {
147
if (
isDead
(MI)) {
MachineInstrBundle.cpp
185
if (MO.
isDead
()) {
191
if (!MO.
isDead
())
196
if (!MO.
isDead
() && Register::isPhysicalRegister(Reg)) {
213
bool
isDead
= DeadDefSet.count(Reg) || KilledDefSet.count(Reg);
214
MIB.addReg(Reg, getDefRegState(true) | getDeadRegState(
isDead
) |
344
if (!MO.
isDead
())
PHIElimination.cpp
282
bool
isDead
= MPhi->getOperand(0).
isDead
();
372
if (
isDead
) {
398
if (DestLI.endIndex().
isDead
()) {
TailDuplicator.cpp
182
bool
isDead
= MBB->pred_empty() && !MBB->hasAddressTaken();
184
updateSuccessorsPHIs(MBB,
isDead
, TDBBs, Succs);
187
if (
isDead
) {
470
MachineBasicBlock *FromBB, bool
isDead
,
490
if (
isDead
) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp
174
bool
isDead
() const { return getUse() == nullptr; }
1081
llvm::erase_if(Slices, [](const Slice &S) { return S.
isDead
(); });
4233
llvm::erase_if(AS, [](const Slice &S) { return S.
isDead
(); });
NewGVN.cpp
311
bool
isDead
() const {
2305
assert(!IClass->
isDead
() && "Found a dead class");
2357
assert(!EClass->
isDead
() && "We accidentally looked up a dead class");
3152
if (CC == TOPClass || CC->
isDead
())
3863
if (CC->
isDead
() || CC->empty())
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h
570
bool
isDead
(SymbolRef sym) {
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LazyCallGraph.h
340
bool
isDead
() const {
1233
return Value.getPointer() && !Value.getPointer()->
isDead
();
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineOperand.h
107
/// For defs:
IsDead
- True if this register is never used by a subsequent
385
bool
isDead
() const {
718
/// for liveness related flags (isKill, isUndef and
isDead
). Note that this
761
bool isKill = false, bool
isDead
= false,
792
bool isKill = false, bool
isDead
= false,
798
assert(!(
isDead
&& !isDef) && "Dead flag on non-def");
803
Op.IsDeadOrKill = isKill |
isDead
;
SlotIndexes.h
235
///
isDead
- Returns true if this is a dead def kill slot.
236
bool
isDead
() const { return getSlot() == Slot_Dead; }
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp
223
bool
isDead
(const MachineInstr *MI,
1031
/// copied from DeadMachineInstructionElim::
isDead
, but with special cases
1034
bool HexagonHardwareLoops::
isDead
(const MachineInstr *MI,
1086
if (
isDead
(MI, DeadPhis)) {
HexagonFrameLowering.cpp
2188
auto
isDead
= [&FIR,&DeadMap] (unsigned Reg) -> bool {
2201
if (
isDead
(R.Reg))
Completed in 42 milliseconds
Indexes created Wed Mar 04 15:26:31 UTC 2026