Home
last modified time | relevance | path

Searched refs:IsRedundant (Results 1 – 25 of 38) 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.cc66 if (!move->IsRedundant()) return i; in FindFirstNonEmptySlot()
184 if (move->IsRedundant()) continue; in MigrateMoves()
196 if (move->IsRedundant()) continue; in MigrateMoves()
222 if (move->IsRedundant()) continue; in MigrateMoves()
251 if (move->IsRedundant()) continue; in CompressMoves()
263 if (move->IsRedundant()) continue; in CompressMoves()
358 if (move->IsRedundant()) continue; in OptimizeMerge()
430 if (move->IsRedundant()) continue; in OptimizeMerge()
479 if (move->IsRedundant()) continue; in FinalizeMoves()
Dinstruction.cc221 bool ParallelMove::IsRedundant() const { in IsRedundant() function in v8::internal::compiler::ParallelMove
223 if (!move->IsRedundant()) return false; in IsRedundant()
303 if (parallel_moves_[i] != nullptr && !parallel_moves_[i]->IsRedundant()) { in AreMovesRedundant()
Dregister-allocator-verifier.cc38 if (move->IsRedundant()) continue; in VerifyAllocatedGaps()
277 if (move->IsEliminated() || move->IsRedundant()) continue; in PerformParallelMoves()
Dinstruction.h668 bool IsRedundant() const { in IsRedundant() function
720 bool IsRedundant() const;
/external/v8/test/unittests/compiler/
Dmove-optimizer-unittest.cc26 if (move->IsRedundant()) continue; in NonRedundantSize()
36 if (move->IsRedundant()) continue; in Contains()
235 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/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/
Dlithium.cc168 bool LParallelMove::IsRedundant() const { in IsRedundant() function in v8::internal::LParallelMove
170 if (!move_operands_[i].IsRedundant()) return false; in IsRedundant()
301 if (label->IsRedundant() && in MarkEmptyBlocks()
308 if (!gap->IsRedundant()) { in MarkEmptyBlocks()
Dlithium.h295 bool IsRedundant() const { in IsRedundant() function
356 bool IsRedundant() const; in LITHIUM_OPERAND_LIST()
/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()
/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/s390/
Dlithium-gap-resolver-s390.cc59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList()
80 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
Dlithium-s390.h319 bool IsRedundant() const;
353 return !IsRedundant(); in HasInterestingComment()
/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.h330 bool IsRedundant() const;
365 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.h329 bool IsRedundant() const;
364 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()
/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.h334 bool IsRedundant() const;
370 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.h334 bool IsRedundant() const;
369 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