Searched refs:IsRedundant (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/v8/src/compiler/
H A Dgap-resolver.cc45 std::mem_fun_ref(&MoveOperands::IsRedundant));
64 DCHECK(!move->IsRedundant());
H A Dinstruction.cc105 bool ParallelMove::IsRedundant() const { function in class:v8::internal::compiler::ParallelMove
107 if (!move_operands_[i].IsRedundant()) return false;
H A Dinstruction.h292 bool IsRedundant() const { function in class:v8::internal::compiler::FINAL
355 bool IsRedundant() const;
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-gap-resolver.cc22 if (!it->IsRedundant()) write(it->destination(), copy.read(it->source()));
116 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) {
/external/chromium_org/v8/src/
H A Dlithium.cc167 bool LParallelMove::IsRedundant() const { function in class:v8::internal::LParallelMove
169 if (!move_operands_[i].IsRedundant()) return false;
312 if (label->IsRedundant() &&
319 if (!gap->IsRedundant()) {
H A Dlithium.h283 bool IsRedundant() const { function in class:v8::internal::BASE_EMBEDDED
344 bool IsRedundant() const;
/external/chromium_org/v8/src/arm/
H A Dlithium-gap-resolver-arm.cc76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
98 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-arm.h342 bool IsRedundant() const;
377 return !IsRedundant();
H A Dlithium-arm.cc89 bool LGap::IsRedundant() const { function in class:v8::internal::LGap
91 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
/external/chromium_org/v8/src/arm64/
H A Dlithium-gap-resolver-arm64.cc78 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
92 DCHECK(!current_move.IsRedundant());
H A Dlithium-arm64.cc231 bool LGap::IsRedundant() const { function in class:v8::internal::LGap
233 if ((parallel_moves_[i] != NULL) && !parallel_moves_[i]->IsRedundant()) {
H A Dlithium-arm64.h420 bool IsRedundant() const;
455 return !IsRedundant();
/external/chromium_org/v8/src/mips/
H A Dlithium-gap-resolver-mips.cc60 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
82 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-mips.h339 bool IsRedundant() const;
374 return !IsRedundant();
H A Dlithium-mips.cc91 bool LGap::IsRedundant() const { function in class:v8::internal::LGap
93 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
/external/chromium_org/v8/src/mips64/
H A Dlithium-gap-resolver-mips64.cc60 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
82 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-mips64.h338 bool IsRedundant() const;
373 return !IsRedundant();
/external/chromium_org/v8/src/x64/
H A Dlithium-gap-resolver-x64.cc54 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
69 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-x64.h346 bool IsRedundant() const;
382 return !IsRedundant();
/external/chromium_org/v8/src/x87/
H A Dlithium-gap-resolver-x87.cc59 if (!move.IsRedundant()) AddMove(move);
74 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-x87.h347 bool IsRedundant() const;
382 return !IsRedundant();
/external/chromium_org/v8/src/ia32/
H A Dlithium-gap-resolver-ia32.cc59 if (!move.IsRedundant()) AddMove(move);
74 DCHECK(!moves_[index].IsRedundant());
H A Dlithium-ia32.h342 bool IsRedundant() const;
377 return !IsRedundant();
H A Dlithium-ia32.cc108 bool LGap::IsRedundant() const { function in class:v8::internal::LGap
110 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp501 bool IsRedundant = false; local
516 IsRedundant = true;
523 if (IsRedundant)

Completed in 340 milliseconds

12