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

  /external/v8/src/compiler/
graph-trimmer.h 38 if (!node->IsDead() && !IsLive(node)) {
value-numbering-reducer.cc 109 if (entry->IsDead()) {
121 if (entry->IsDead()) {
146 if (!old_entry || old_entry->IsDead()) continue;
js-inlining-heuristic.cc 111 if (!candidate.node->IsDead()) {
graph-reducer.cc 114 if (node->IsDead()) return Pop(); // Node was killed while on stack.
216 DCHECK(!user->IsDead());
js-graph.cc 182 if (!empty_frame_state || empty_frame_state->IsDead()) {
204 if (!node->IsDead()) nodes->push_back(node);
control-flow-optimizer.cc 33 if (node->IsDead()) continue;
48 if (node->IsDead() || queued_.Get(node)) return;
node.h 48 bool IsDead() const { return InputCount() > 0 && !InputAt(0); }
verifier.cc     [all...]
  /external/v8/test/unittests/compiler/
dead-code-elimination-unittest.cc 65 EXPECT_THAT(r.replacement(), IsDead());
81 EXPECT_THAT(r.replacement(), IsDead());
94 EXPECT_THAT(r.replacement(), IsDead());
106 EXPECT_THAT(r.replacement(), IsDead());
118 EXPECT_THAT(r.replacement(), IsDead());
134 EXPECT_THAT(r.replacement(), IsDead());
161 EXPECT_THAT(r.replacement(), IsDead());
179 EXPECT_THAT(r.replacement(), IsDead());
250 EXPECT_THAT(r.replacement(), IsDead());
264 EXPECT_THAT(r.replacement(), IsDead());
    [all...]
common-operator-reducer-unittest.cc 82 EXPECT_CALL(editor, Replace(if_true, IsDead()));
86 EXPECT_THAT(r.replacement(), IsDead());
100 EXPECT_CALL(editor, Replace(if_false, IsDead()));
103 EXPECT_THAT(r.replacement(), IsDead());
116 EXPECT_CALL(editor, Replace(if_true, IsDead()));
120 EXPECT_THAT(r.replacement(), IsDead());
134 EXPECT_CALL(editor, Replace(if_false, IsDead()));
137 EXPECT_THAT(r.replacement(), IsDead());
150 EXPECT_CALL(editor, Replace(if_true, IsDead()));
154 EXPECT_THAT(r.replacement(), IsDead());
    [all...]
branch-elimination-unittest.cc 78 IsInt32Constant(2), IsMerge(outer_if_true, IsDead())));
119 IsInt32Constant(3), IsMerge(IsDead(), outer_if_false)));
graph-reducer-unittest.cc 464 EXPECT_FALSE(node0->IsDead());
465 EXPECT_TRUE(node1->IsDead());
466 EXPECT_FALSE(node2->IsDead());
720 EXPECT_TRUE(n2->IsDead());
722 EXPECT_TRUE(n3->IsDead());
node-test-utils.h 40 Matcher<Node*> IsDead();
node-test-utils.cc     [all...]
  /art/compiler/optimizing/
ssa_phi_elimination.cc 41 if (phi->IsDead()) {
72 if (input != nullptr && input->IsDead()) {
95 if (phi->IsDead()) {
101 DCHECK(user->AsPhi()->IsDead());
148 if (phi->IsDead()) {
ssa_builder.cc 87 if (!phi->IsDead() || !phi->HasEnvironmentUses()) continue;
90 if (next->AsPhi()->IsDead()) {
96 if (next->AsPhi()->IsDead()) continue;
110 bool add_all_live_phis = instruction->IsPhi() && instruction->AsPhi()->IsDead();
128 if (input->IsPhi() && input->AsPhi()->IsDead()) {
reference_type_propagation.cc 664 if (phi->IsDead() || phi->GetType() != Primitive::kPrimNot) {
    [all...]
nodes.h     [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;
542 /// operand. Note: This method ignores isKill and isDead properties.
572 bool isKill = false, bool isDead = false,
598 bool isKill = false, bool isDead = false,
604 assert(!(isDead && !isDef) && "Dead flag on non-def")
    [all...]
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 219 bool IsDead = true;
226 IsDead = false;
236 IsDead = false;
242 if (!IsDead) continue;
  /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...]
api.cc     [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 177 bool isKill, bool isDead, bool isUndef,
197 IsDead = isDead;
318 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
344 if (isDead()) {
    [all...]

Completed in 235 milliseconds