HomeSort by relevance Sort by last modified time
    Searched defs:isDead (Results 1 - 14 of 14) sorted by null

  /external/llvm/lib/CodeGen/
DeadMachineInstructionElim.cpp 45 bool isDead(const MachineInstr *MI) const;
54 bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const {
122 if (isDead(MI)) {
MachineInstrBundle.cpp 162 if (MO.isDead()) {
168 if (!MO.isDead())
173 if (!MO.isDead()) {
190 bool isDead = DeadDefSet.count(Reg) || KilledDefSet.count(Reg);
191 MIB.addReg(Reg, getDefRegState(true) | getDeadRegState(isDead) |
319 if (!MO.isDead())
PHIElimination.cpp 233 bool isDead = MPhi->getOperand(0).isDead();
301 if (isDead) {
329 if (DestLI.endIndex().isDead()) {
TailDuplication.cpp 102 void UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
231 bool isDead = MBB->pred_empty() && !MBB->hasAddressTaken();
233 UpdateSuccessorsPHIs(MBB, isDead, TDBBs, Succs);
236 if (isDead) {
462 TailDuplicatePass::UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
485 if (isDead) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 81 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
96 /// IsDead - True if this register is never used by a subsequent instruction.
98 bool IsDead : 1;
289 bool isDead() const {
291 return IsDead;
380 IsDead = Val;
532 /// operand. Note: This method ignores isKill and isDead properties.
551 bool isKill = false, bool isDead = false,
577 bool isKill = false, bool isDead = false,
583 assert(!(isDead && !isDef) && "Dead flag on non-def")
    [all...]
SlotIndexes.h 238 /// isDead - Returns true if this is a dead def kill slot.
239 bool isDead() const { return getSlot() == Slot_Dead; }
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 639 bool isDead(SymbolRef sym) const {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_peephole.cpp 62 bool Instruction::isDead() const
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 166 bool isDead(const MachineInstr *MI,
889 /// copied from DeadMachineInstructionElim::isDead, but with special cases
892 bool HexagonHardwareLoops::isDead(const MachineInstr *MI,
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_peephole.cpp 62 bool Instruction::isDead() const
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 917 bool IsDead;
919 ContextLocation(const PathDiagnosticLocation &L, bool isdead = false)
920 : PathDiagnosticLocation(L), IsDead(isdead) {}
922 void markDead() { IsDead = true; }
923 bool isDead() const { return IsDead; }
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 163 bool isDead() const { return getUse() == nullptr; }
741 std::mem_fun_ref(&Slice::isDead)),
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 

Completed in 813 milliseconds