Searched defs:isDead (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp44 bool isDead(const MachineInstr *MI) const;
56 bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const { function in class:DeadMachineInstructionElim
129 if (isDead(MI)) {
H A DPHIElimination.cpp200 bool isDead = MPhi->getOperand(0).isDead(); local
270 if (isDead) {
H A DTailDuplication.cpp94 void UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
207 bool isDead = MBB->pred_empty() && !MBB->hasAddressTaken(); local
209 UpdateSuccessorsPHIs(MBB, isDead, TDBBs, Succs);
212 if (isDead) {
442 TailDuplicatePass::UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead, argument
464 if (isDead) {
H A DMachineInstr.cpp156 bool isKill, bool isDead, bool isUndef,
179 IsDead = isDead;
242 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
259 if (isKill() || isDead() || isUndef()) {
262 if (isDead()) OS << "dead";
264 if (isKill() || isDead())
770 if (Check == CheckKillDead && MO.isDead() != OMO.isDead())
942 /// the specified register or -1 if it is not found. If isDead is true, defs
946 MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead, boo argument
155 ChangeToRegister(unsigned Reg, bool isDef, bool isImp, bool isKill, bool isDead, bool isUndef, bool isDebug) argument
[all...]
H A DTwoAddressInstructionPass.cpp783 if (MO.isDef() && !MO.isDead())
839 bool isDead = NewKills.back().first.second; local
842 if (isDead)
876 if (!regBKilled && mi->getOperand(DstIdx).isDead() &&
H A DRegisterCoalescer.cpp950 Deads |= MO.isDead();
1900 bool isDead = true; local
1914 if (MO.isDead())
1918 isDead = false;
1922 if (isDead) {
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h508 bool isDead(SymbolRef sym) const { function in class:clang::ento::SymbolReaper
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h246 bool isDead() const { function in class:llvm::MachineOperand
452 /// operand. Note: This method ignores isKill and isDead properties.
464 bool isKill = false, bool isDead = false,
490 bool isKill = false, bool isDead = false,
499 Op.IsDead = isDead;
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp831 bool isDead() const { return IsDead; } function in class:__anon3112::ContextLocation
892 if (!CLocs.back().isDead() && CLocs.back().asLocation().isFileID()) {
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp1251 if (MO.isDef()) return MO.isDead();
1314 MO.getReg() == X86::EFLAGS && !MO.isDead()) {
1333 bool isDead = MI->getOperand(0).isDead(); local
1411 .addReg(Dest, RegState::Define | getDeadRegState(isDead))
1420 if (isDead)
1446 bool isDead = MI->getOperand(0).isDead(); local
1468 .addReg(A, RegState::Define | getDeadRegState(isDead))
1485 .addReg(Dest, RegState::Define | getDeadRegState(isDead))
[all...]

Completed in 232 milliseconds