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

1 2

  /external/v8/src/compiler/
move-optimizer.cc 121 if (!move->IsRedundant()) return i;
239 if (move->IsRedundant()) continue;
251 if (move->IsRedundant()) continue;
277 if (move->IsRedundant()) continue;
306 if (move->IsRedundant()) continue;
317 if (move->IsRedundant()) continue;
412 if (move->IsRedundant()) continue;
483 if (move->IsRedundant()) continue;
532 if (move->IsRedundant()) continue;
gap-resolver.cc 92 if (move->IsRedundant()) {
141 DCHECK(!move->IsRedundant());
register-allocator-verifier.cc 40 if (move->IsRedundant()) continue;
280 if (move->IsEliminated() || move->IsRedundant()) continue;
instruction.cc 267 bool ParallelMove::IsRedundant() const {
269 if (!move->IsRedundant()) return false;
352 if (parallel_moves_[i] != nullptr && !parallel_moves_[i]->IsRedundant()) {
    [all...]
instruction.h 700 bool IsRedundant() const {
754 bool IsRedundant() const;
    [all...]
  /art/compiler/optimizing/
parallel_move_resolver.cc 31 if (!move->IsRedundant()) {
129 if (move->IsRedundant()) {
410 if (move->IsRedundant()) {
446 DCHECK(!move->IsRedundant());
  /external/v8/src/crankshaft/
lithium.cc 170 bool LParallelMove::IsRedundant() const {
172 if (!move_operands_[i].IsRedundant()) return false;
302 if (label->IsRedundant() &&
309 if (!gap->IsRedundant()) {
lithium.h 295 bool IsRedundant() const {
356 bool IsRedundant() const;
  /external/v8/src/crankshaft/arm/
lithium-gap-resolver-arm.cc 74 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
96 DCHECK(!moves_[index].IsRedundant());
lithium-arm.h 321 bool IsRedundant() const;
356 return !IsRedundant();
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-gap-resolver-arm64.cc 76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
90 DCHECK(!current_move.IsRedundant());
lithium-arm64.h 376 bool IsRedundant() const;
411 return !IsRedundant();
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-gap-resolver-mips.cc 59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
81 DCHECK(!moves_[index].IsRedundant());
lithium-mips.h 319 bool IsRedundant() const;
354 return !IsRedundant();
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-gap-resolver-mips64.cc 59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
81 DCHECK(!moves_[index].IsRedundant());
lithium-mips64.h 322 bool IsRedundant() const;
357 return !IsRedundant();
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-gap-resolver-ppc.cc 61 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
83 DCHECK(!moves_[index].IsRedundant());
lithium-ppc.h 318 bool IsRedundant() const;
353 return !IsRedundant();
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-gap-resolver-s390.cc 59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
80 DCHECK(!moves_[index].IsRedundant());
lithium-s390.h 310 bool IsRedundant() const;
344 return !IsRedundant();
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-gap-resolver-x64.cc 54 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
69 DCHECK(!moves_[index].IsRedundant());
  /external/v8/src/crankshaft/x87/
lithium-gap-resolver-x87.cc 59 if (!move.IsRedundant()) AddMove(move);
74 DCHECK(!moves_[index].IsRedundant());
  /external/v8/src/crankshaft/ia32/
lithium-gap-resolver-ia32.cc 58 if (!move.IsRedundant()) AddMove(move);
73 DCHECK(!moves_[index].IsRedundant());
lithium-ia32.h 323 bool IsRedundant() const;
358 return !IsRedundant();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 542 bool IsRedundant = false;
557 IsRedundant = true;
564 if (IsRedundant)
    [all...]

Completed in 2694 milliseconds

1 2