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

  /external/v8/src/compiler/
all-nodes.h 22 bool IsLive(Node* node) {
graph-trimmer.cc 31 DCHECK(IsLive(live));
34 if (!IsLive(user)) {
graph-trimmer.h 36 V8_INLINE bool IsLive(Node* const node) { return is_live_.Get(node); }
38 if (!node->IsDead() && !IsLive(node)) {
instruction-selector.h 150 bool IsLive(Node* node) const { return !IsDefined(node) && IsUsed(node); }
osr.cc 127 if (node != loop_header && all.IsLive(node)) {
verifier.cc     [all...]
  /art/compiler/optimizing/
ssa_builder.cc 67 if (next->IsLive()) {
113 if (user->IsPhi() && user->AsPhi()->IsLive()) {
217 DCHECK(phi->IsLive());
243 if (phi->IsLive()) {
255 if (phi->IsLive()) {
273 if (phi->IsLive() && UpdatePrimitiveType(phi, worklist)) {
603 DCHECK(phi->IsLive()) << "Cannot get equivalent of a dead phi since it would create a live one.";
625 DCHECK(new_phi->IsLive());
632 return next_phi->IsLive() ? next_phi : nullptr;
reference_type_propagation.cc     [all...]
nodes.h     [all...]
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.h 108 bool IsLive(unsigned Reg);
AggressiveAntiDepBreaker.cpp 106 bool AggressiveAntiDepState::IsLive(unsigned Reg)
204 if (State->IsLive(Reg)) {
303 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI)) {
308 if (!State->IsLive(Reg)) {
320 if (!State->IsLive(SubregReg)) {
380 if (State->IsLive(AliasReg)) {
416 if (TRI->isSuperRegister(Reg, *AI) && State->IsLive(*AI))
663 if (State->IsLive(NewReg) || (KillIndices[Reg] > DefIndices[NewReg])) {
670 if (State->IsLive(AliasReg) ||
782 if (!State->IsLive(Reg)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 117 bool IsLive = MBB.isLiveIn(GPR64) || MBB.isLiveIn(GPR32);
118 if (!IsLive || !IsImplicit) {
119 MIB.addReg(GPR64, getImplRegState(IsImplicit) | getKillRegState(!IsLive));
120 if (!IsLive)
  /external/v8/test/cctest/compiler/
test-osr.cc 120 CHECK(!nodes.IsLive(osr_normal_entry));
121 CHECK(!nodes.IsLive(osr_loop_entry));
184 CHECK(!nodes.IsLive(d.branch));
185 CHECK(!nodes.IsLive(d.if_true));
186 CHECK(!nodes.IsLive(d.if_false));
187 CHECK(!nodes.IsLive(d.merge));
  /external/v8/src/compiler/x64/
instruction-selector-x64.cc 105 return !selector()->IsLive(node);
734 if (selector->IsLive(left) && !selector->IsLive(right)) {
    [all...]
  /external/v8/src/compiler/ia32/
instruction-selector-ia32.cc 123 return !selector()->IsLive(node);
    [all...]
  /external/v8/src/compiler/x87/
instruction-selector-x87.cc 127 return !selector()->IsLive(node);
    [all...]
  /art/runtime/gc/
heap.cc     [all...]

Completed in 331 milliseconds