Home
last modified time | relevance | path

Searched refs:IsRedundant (Results 1 – 25 of 35) sorted by relevance

12

/external/v8/src/compiler/
Dgap-resolver.cc22 inline bool IsRedundant(MoveOperands* move) { return move->IsRedundant(); } in IsRedundant() function
30 std::remove_if(moves->begin(), moves->end(), std::ptr_fun(IsRedundant)); in Resolve()
45 DCHECK(!move->IsRedundant()); in PerformMove()
Dmove-optimizer.cc74 if (!move->IsRedundant()) return i; in FindFirstNonEmptySlot()
130 if (move->IsRedundant()) continue; in CompressMoves()
142 if (move->IsRedundant()) continue; in CompressMoves()
236 if (move->IsRedundant()) continue; in OptimizeMerge()
275 if (move->IsRedundant()) continue; in OptimizeMerge()
321 if (move->IsRedundant()) continue; in FinalizeMoves()
Dinstruction.cc213 bool ParallelMove::IsRedundant() const { in IsRedundant() function in v8::internal::compiler::ParallelMove
215 if (!move->IsRedundant()) return false; in IsRedundant()
293 if (parallel_moves_[i] != nullptr && !parallel_moves_[i]->IsRedundant()) { in AreMovesRedundant()
Dinstruction.h596 bool IsRedundant() const { in IsRedundant() function
642 bool IsRedundant() const;
Dregister-allocator-verifier.cc38 if (move->IsRedundant()) continue; in VerifyAllocatedGaps()
/external/v8/test/unittests/compiler/
Dmove-optimizer-unittest.cc25 if (move->IsRedundant()) continue; in NonRedundantSize()
35 if (move->IsRedundant()) continue; in Contains()
236 if (move->IsRedundant()) { in TEST_F()
Dregister-allocator-unittest.cc20 if (move->IsEliminated() || move->IsRedundant()) continue; in GetMoveCount()
69 if (move->IsEliminated() || move->IsRedundant()) continue; in IsParallelMovePresent()
/external/v8/src/crankshaft/
Dlithium.cc163 bool LParallelMove::IsRedundant() const { in IsRedundant() function in v8::internal::LParallelMove
165 if (!move_operands_[i].IsRedundant()) return false; in IsRedundant()
308 if (label->IsRedundant() && in MarkEmptyBlocks()
315 if (!gap->IsRedundant()) { in MarkEmptyBlocks()
Dlithium.h294 bool IsRedundant() const { in IsRedundant() function
355 bool IsRedundant() const; in LITHIUM_OPERAND_LIST()
/external/v8/test/cctest/compiler/
Dtest-gap-resolver.cc21 if (!m->IsRedundant()) write(m->destination(), copy.read(m->source())); in ExecuteInParallel()
172 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) { in Create()
/external/v8/src/crankshaft/ppc/
Dlithium-gap-resolver-ppc.cc61 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
83 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-ppc.h323 bool IsRedundant() const;
358 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/arm64/
Dlithium-gap-resolver-arm64.cc76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
90 DCHECK(!current_move.IsRedundant()); in PerformMove()
/external/v8/src/crankshaft/mips64/
Dlithium-gap-resolver-mips64.cc59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
81 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-mips64.h328 bool IsRedundant() const;
363 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/mips/
Dlithium-gap-resolver-mips.cc59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
81 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-mips.h325 bool IsRedundant() const;
360 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/arm/
Dlithium-gap-resolver-arm.cc74 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
96 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-arm.h328 bool IsRedundant() const;
363 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/x64/
Dlithium-gap-resolver-x64.cc53 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
68 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-x64.h331 bool IsRedundant() const;
367 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/x87/
Dlithium-gap-resolver-x87.cc59 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList()
74 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-x87.h333 bool IsRedundant() const;
368 return !IsRedundant(); in HasInterestingComment()
/external/v8/src/crankshaft/ia32/
Dlithium-gap-resolver-ia32.cc58 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList()
73 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineVectorOps.cpp453 bool IsRedundant = false; in visitInsertValueInst() local
468 IsRedundant = true; in visitInsertValueInst()
475 if (IsRedundant) in visitInsertValueInst()

12