HomeSort by relevance Sort by last modified time
    Searched refs:IsDead (Results 1 - 25 of 29) sorted by null

1 2

  /external/v8/src/compiler/
graph-trimmer.h 34 if (!node->IsDead()) MarkAsLive(node);
42 DCHECK(!node->IsDead());
value-numbering-reducer.cc 112 if (entry->IsDead()) {
145 if (entry->IsDead()) {
192 if (!old_entry || old_entry->IsDead()) continue;
control-flow-optimizer.cc 33 if (node->IsDead()) continue;
48 if (node->IsDead() || queued_.Get(node)) return;
graph-reducer.cc 114 if (node->IsDead()) return Pop(); // Node was killed while on stack.
220 DCHECK(!user->IsDead());
redundancy-elimination.cc 129 DCHECK(!check->node->IsDead());
js-graph.cc 279 if (!node->IsDead()) nodes->push_back(node);
js-inlining-heuristic.cc 159 if (!candidate.node->IsDead()) {
node.h 49 bool IsDead() const { return InputCount() > 0 && !InputAt(0); }
memory-optimizer.cc 73 DCHECK(!node->IsDead());
load-elimination.cc 649 if (!replacement->IsDead()) {
699 if (!replacement->IsDead()) {
    [all...]
verifier.cc     [all...]
  /art/compiler/optimizing/
ssa_phi_elimination.cc 40 if (phi->IsDead()) {
71 if (input != nullptr && input->IsDead()) {
93 if (phi->IsDead()) {
99 DCHECK(user->AsPhi()->IsDead());
143 if (phi->IsDead()) {
ssa_builder.cc 88 if (!phi->IsDead() || !phi->HasEnvironmentUses()) continue;
91 if (next->AsPhi()->IsDead()) {
97 if (next->AsPhi()->IsDead()) continue;
111 bool add_all_live_phis = instruction->IsPhi() && instruction->AsPhi()->IsDead();
128 if (input->IsPhi() && input->AsPhi()->IsDead()) {
reference_type_propagation.cc 732 if (phi->IsDead() || phi->GetType() != Primitive::kPrimNot) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 82 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
97 /// IsDead - True if this register is never used by a subsequent instruction.
99 bool IsDead : 1;
292 bool isDead() const {
294 return IsDead;
383 IsDead = Val;
551 /// operand. Note: This method ignores isKill and isDead properties.
581 bool isKill = false, bool isDead = false,
607 bool isKill = false, bool isDead = false,
613 assert(!(isDead && !isDef) && "Dead flag on non-def")
    [all...]
  /external/swiftshader/third_party/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;
246 bool isDead() const {
248 return IsDead;
338 IsDead = Val;
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
    [all...]
  /external/llvm/lib/Target/Hexagon/
RDFDeadCode.cpp 139 auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool {
154 if (IsDead(IA)) {
HexagonRDFOpt.cpp 239 auto IsDead = [this] (NodeAddr<DefNode*> DA) -> bool {
248 if (!std::all_of(Defs.begin(), Defs.end(), IsDead))
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 216 bool IsDead = true;
223 IsDead = false;
233 IsDead = false;
239 if (!IsDead) continue;
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyRegStackify.cpp 288 if (MO.isDead() && Insert->definesRegister(Reg) &&
496 bool IsDead = MRI.use_empty(Reg);
497 if (!IsDead) {
500 IsDead = !LI.liveAt(LIS.getInstructionIndex(Def).getDeadSlot());
504 if (IsDead) {
554 .addReg(DefReg, getUndefRegState(DefMO.isDead()));
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 911 bool IsDead;
913 ContextLocation(const PathDiagnosticLocation &L, bool isdead = false)
914 : PathDiagnosticLocation(L), IsDead(isdead) {}
916 void markDead() { IsDead = true; }
917 bool isDead() const { return IsDead; }
    [all...]
  /external/v8/include/
v8.h     [all...]
  /external/v8/src/
isolate.h     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineInstr.cpp 156 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())
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 178 bool isKill, bool isDead, bool isUndef,
198 IsDead = isDead;
319 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
345 if (isDead()) {
    [all...]

Completed in 1395 milliseconds

1 2