Home
last modified time | relevance | path

Searched refs:IsDead (Results 1 – 21 of 21) sorted by relevance

/external/v8/test/unittests/compiler/
Ddead-code-elimination-unittest.cc65 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
81 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
94 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
106 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
118 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
134 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
161 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
179 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
250 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
264 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
[all …]
Dcommon-operator-reducer-unittest.cc82 EXPECT_CALL(editor, Replace(if_true, IsDead())); in TEST_F()
86 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
100 EXPECT_CALL(editor, Replace(if_false, IsDead())); in TEST_F()
103 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
116 EXPECT_CALL(editor, Replace(if_true, IsDead())); in TEST_F()
120 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
134 EXPECT_CALL(editor, Replace(if_false, IsDead())); in TEST_F()
137 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
150 EXPECT_CALL(editor, Replace(if_true, IsDead())); in TEST_F()
154 EXPECT_THAT(r.replacement(), IsDead()); in TEST_F()
[all …]
Dbranch-elimination-unittest.cc78 IsInt32Constant(2), IsMerge(outer_if_true, IsDead()))); in TEST_F()
119 IsInt32Constant(3), IsMerge(IsDead(), outer_if_false))); in TEST_F()
Dgraph-reducer-unittest.cc464 EXPECT_FALSE(node0->IsDead()); in TEST_F()
465 EXPECT_TRUE(node1->IsDead()); in TEST_F()
466 EXPECT_FALSE(node2->IsDead()); in TEST_F()
720 EXPECT_TRUE(n2->IsDead()); in TEST_F()
722 EXPECT_TRUE(n3->IsDead()); in TEST_F()
Dnode-test-utils.h40 Matcher<Node*> IsDead();
Dnode-test-utils.cc1466 Matcher<Node*> IsDead() { in IsDead() function
/external/v8/src/compiler/
Dvalue-numbering-reducer.cc109 if (entry->IsDead()) { in Reduce()
121 if (entry->IsDead()) { in Reduce()
146 if (!old_entry || old_entry->IsDead()) continue; in Grow()
Djs-graph.cc182 if (!empty_frame_state || empty_frame_state->IsDead()) { in EmptyFrameState()
204 if (!node->IsDead()) nodes->push_back(node); in GetCachedNodes()
Dgraph-trimmer.h38 if (!node->IsDead() && !IsLive(node)) { in MarkAsLive()
Dgraph-reducer.cc114 if (node->IsDead()) return Pop(); // Node was killed while on stack. in ReduceTop()
216 DCHECK(!user->IsDead()); in ReplaceWithValue()
Dcontrol-flow-optimizer.cc33 if (node->IsDead()) continue; in Optimize()
48 if (node->IsDead() || queued_.Get(node)) return; in Enqueue()
Djs-inlining-heuristic.cc111 if (!candidate.node->IsDead()) { in Finalize()
Dnode.h48 bool IsDead() const { return InputCount() > 0 && !InputAt(0); } in IsDead() function
Dverifier.cc1220 CHECK(!user->IsDead()); in VerifyNode()
/external/llvm/include/llvm/CodeGen/
DMachineOperand.h99 bool IsDead : 1; variable
294 return IsDead; in isDead()
383 IsDead = Val;
610 Op.IsDead = isDead;
/external/llvm/lib/Target/ARM/
DA15SDOptimizer.cpp219 bool IsDead = true; in eraseInstrWithNoUses() local
226 IsDead = false; in eraseInstrWithNoUses()
236 IsDead = false; in eraseInstrWithNoUses()
242 if (!IsDead) continue; in eraseInstrWithNoUses()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp911 bool IsDead; member in __anon889b26420211::ContextLocation
914 : PathDiagnosticLocation(L), IsDead(isdead) {} in ContextLocation()
916 void markDead() { IsDead = true; } in markDead()
917 bool isDead() const { return IsDead; } in isDead()
/external/v8/src/
Disolate.h932 bool IsDead() { return has_fatal_error_; } in IsDead() function
Dapi.cc3031 !isolate->IsDead(), in CheckInitializedImpl()
7543 bool Isolate::IsDead() { in IsDead() function in v8::Isolate
7545 return isolate->IsDead(); in IsDead()
/external/v8/include/
Dv8.h5980 bool IsDead();
6121 V8_INLINE static V8_DEPRECATED("Use isolate version", bool IsDead());
8400 bool V8::IsDead() {
8402 return isolate->IsDead();
/external/llvm/lib/CodeGen/
DMachineInstr.cpp197 IsDead = isDead; in ChangeToRegister()