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

1 2

  /external/v8/src/compiler/
gap-resolver.cc 45 std::mem_fun_ref(&MoveOperands::IsRedundant));
64 DCHECK(!move->IsRedundant());
instruction.cc 105 bool ParallelMove::IsRedundant() const {
107 if (!move_operands_[i].IsRedundant()) return false;
instruction.h 292 bool IsRedundant() const {
355 bool IsRedundant() const;
  /art/compiler/optimizing/
parallel_move_resolver.cc 30 if (!move->IsRedundant()) {
114 if (move->IsRedundant()) {
398 if (move->IsRedundant()) {
434 DCHECK(!move->IsRedundant());
  /external/v8/test/cctest/compiler/
test-gap-resolver.cc 22 if (!it->IsRedundant()) write(it->destination(), copy.read(it->source()));
116 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) {
  /external/v8/src/
lithium.cc 167 bool LParallelMove::IsRedundant() const {
169 if (!move_operands_[i].IsRedundant()) return false;
312 if (label->IsRedundant() &&
319 if (!gap->IsRedundant()) {
lithium.h 283 bool IsRedundant() const {
344 bool IsRedundant() const;
  /external/v8/src/arm/
lithium-gap-resolver-arm.cc 76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
98 DCHECK(!moves_[index].IsRedundant());
lithium-arm.h 342 bool IsRedundant() const;
377 return !IsRedundant();
    [all...]
lithium-arm.cc 89 bool LGap::IsRedundant() const {
91 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/v8/src/arm64/
lithium-gap-resolver-arm64.cc 78 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
92 DCHECK(!current_move.IsRedundant());
lithium-arm64.h 420 bool IsRedundant() const;
455 return !IsRedundant();
    [all...]
lithium-arm64.cc 231 bool LGap::IsRedundant() const {
233 if ((parallel_moves_[i] != NULL) && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/v8/src/mips/
lithium-gap-resolver-mips.cc 60 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
82 DCHECK(!moves_[index].IsRedundant());
lithium-mips.h 339 bool IsRedundant() const;
374 return !IsRedundant();
    [all...]
  /external/v8/src/mips64/
lithium-gap-resolver-mips64.cc 60 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
82 DCHECK(!moves_[index].IsRedundant());
lithium-mips64.h 338 bool IsRedundant() const;
373 return !IsRedundant();
    [all...]
  /external/v8/src/x64/
lithium-gap-resolver-x64.cc 54 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
69 DCHECK(!moves_[index].IsRedundant());
lithium-x64.h 346 bool IsRedundant() const;
382 return !IsRedundant();
    [all...]
  /external/v8/src/x87/
lithium-gap-resolver-x87.cc 59 if (!move.IsRedundant()) AddMove(move);
74 DCHECK(!moves_[index].IsRedundant());
lithium-x87.h 347 bool IsRedundant() const;
382 return !IsRedundant();
    [all...]
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.cc 59 if (!move.IsRedundant()) AddMove(move);
74 DCHECK(!moves_[index].IsRedundant());
lithium-ia32.h 342 bool IsRedundant() const;
377 return !IsRedundant();
    [all...]
lithium-ia32.cc 108 bool LGap::IsRedundant() const {
110 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 502 bool IsRedundant = false;
517 IsRedundant = true;
524 if (IsRedundant)
    [all...]

Completed in 1230 milliseconds

1 2