HomeSort by: relevance | last modified time | path
    Searched refs:IsDead (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
InterpBlock.h 83 Block(Descriptor *Desc, bool IsExtern, bool IsStatic, bool IsDead)
84 : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {}
103 bool IsDead = false;
InterpBlock.cpp 43 if (Pointers == nullptr && IsDead)
64 : Root(Root), B(Blk->Desc, Blk->IsStatic, Blk->IsExtern, /*isDead=*/true) {
Pointer.h 142 bool isLive() const { return Pointee && !Pointee->IsDead; }
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
Object.cpp 83 auto IsDead = [&](const std::unique_ptr<SymbolEntry> &S) -> bool {
90 if (IsDead(Sym))
104 SymTable.removeSymbols(IsDead);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
RDFDeadCode.cpp 150 auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool {
165 if (IsDead(IA)) {
HexagonRDFOpt.cpp 253 auto IsDead = [this] (NodeAddr<DefNode*> DA) -> bool {
262 if (!llvm::all_of(Defs, IsDead))
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 211 bool IsDead = true;
217 IsDead = false;
225 IsDead = false;
231 if (!IsDead) continue;
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyRegStackify.cpp 370 if (MO.isDead() && Insert->definesRegister(Reg) &&
580 bool IsDead = MRI.use_empty(Reg);
581 if (!IsDead) {
584 IsDead = !LI.liveAt(LIS.getInstructionIndex(Def).getDeadSlot());
589 if (IsDead) {
646 .addReg(DefReg, getUndefRegState(DefMO.isDead()));
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ReachingDefAnalysis.cpp 647 auto IsDead = [this, &Dead](MachineInstr *Def, MCRegister PhysReg) {
655 if (!MO.isDead())
671 if (IsDead(Def, MO.getReg()))
RDFLiveness.cpp 430 bool IsDead = DefA.Addr->getFlags() & NodeAttrs::Dead;
431 NodeId U = !IsDead ? DefA.Addr->getReachedUse() : 0;
511 bool IsDead = DA.Addr->getFlags() & NodeAttrs::Dead;
512 NodeId UN = !IsDead ? DA.Addr->getReachedUse() : 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
LegalizationArtifactCombiner.h 942 bool IsDead = true;
946 IsDead = false;
957 if (IsDead)
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SILowerControlFlow.cpp 158 static void setImpSCCDefDead(MachineInstr &MI, bool IsDead) {
162 ImpDefSCC.setIsDead(IsDead);
246 setImpSCCDefDead(*Xor, ImpDefSCC.isDead());
AMDGPUMachineCFGStructurizer.cpp 1588 bool IsDead = true;
1594 IsDead = false;
1599 << (IsDead ? "dead" : "alive")
1601 if (IsDead) {
SIInstrInfo.cpp 2046 bool IsDead = RegOp.isDead();
2063 NonRegOp.ChangeToRegister(Reg, false, false, IsKill, IsDead, IsUndef, IsDebug);
5976 if (Op.isDef() && !Op.isDead())
6762 !Op.isDead() && Op.getParent() == &SCCDefInst);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
GlobalISelEmitter.cpp 2812 bool IsDead;
2817 bool IsDead = false)
2819 SubRegIdx(SubReg), IsDef(IsDef), IsDead(IsDead) {}
2839 if (IsDead)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
AttributorAttributes.cpp 2922 STATS_DECLTRACK_FLOATING_ATTR(IsDead)
2952 void trackStatistics() const override { STATS_DECLTRACK_ARG_ATTR(IsDead) }
2992 void trackStatistics() const override { STATS_DECLTRACK_CSARG_ATTR(IsDead) }
3031 STATS_DECLTRACK_CSRET_ATTR(IsDead)
3087 void trackStatistics() const override { STATS_DECLTRACK_FNRET_ATTR(IsDead) }
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InstrInfo.cpp 1162 MO.getReg() == X86::EFLAGS && !MO.isDead()) {
1278 bool IsDead = MI.getOperand(0).isDead();
1350 .addReg(Dest, RegState::Define | getDeadRegState(IsDead))
1359 if (IsDead)
1805 if (Dest.isDead())
6345 getDeadRegState(ImpOp.isDead()) |
8065 if (FlagDef && !FlagDef->isDead())
8585 assert(OldFlagDef1->isDead() && OldFlagDef2->isDead() &
    [all...]

Completed in 89 milliseconds