/external/chromium_org/v8/src/compiler/ |
D | gap-resolver.cc | 45 std::mem_fun_ref(&MoveOperands::IsRedundant)); in Resolve() 64 DCHECK(!move->IsRedundant()); in PerformMove()
|
D | instruction.cc | 105 bool ParallelMove::IsRedundant() const { in IsRedundant() function in v8::internal::compiler::ParallelMove 107 if (!move_operands_[i].IsRedundant()) return false; in IsRedundant()
|
D | instruction.h | 292 bool IsRedundant() const { in IsRedundant() function 355 bool IsRedundant() const; in INSTRUCTION_OPERAND_LIST()
|
/external/chromium_org/v8/test/cctest/compiler/ |
D | test-gap-resolver.cc | 22 if (!it->IsRedundant()) write(it->destination(), copy.read(it->source())); in ExecuteInParallel() 116 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) { in Create()
|
/external/chromium_org/v8/src/ |
D | lithium.cc | 167 bool LParallelMove::IsRedundant() const { in IsRedundant() function in v8::internal::LParallelMove 169 if (!move_operands_[i].IsRedundant()) return false; in IsRedundant() 312 if (label->IsRedundant() && in MarkEmptyBlocks() 319 if (!gap->IsRedundant()) { in MarkEmptyBlocks()
|
D | lithium.h | 283 bool IsRedundant() const { in IsRedundant() function 344 bool IsRedundant() const; in LITHIUM_OPERAND_LIST()
|
/external/chromium_org/v8/src/arm64/ |
D | lithium-gap-resolver-arm64.cc | 78 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 92 DCHECK(!current_move.IsRedundant()); in PerformMove()
|
D | lithium-arm64.h | 420 bool IsRedundant() const; 455 return !IsRedundant(); in HasInterestingComment()
|
/external/chromium_org/v8/src/arm/ |
D | lithium-gap-resolver-arm.cc | 76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 98 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-arm.h | 342 bool IsRedundant() const; 377 return !IsRedundant(); in HasInterestingComment()
|
D | lithium-arm.cc | 89 bool LGap::IsRedundant() const { in IsRedundant() function in v8::internal::LGap 91 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) { in IsRedundant()
|
/external/chromium_org/v8/src/mips/ |
D | lithium-gap-resolver-mips.cc | 60 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 82 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-mips.h | 339 bool IsRedundant() const; 374 return !IsRedundant(); in HasInterestingComment()
|
D | lithium-mips.cc | 91 bool LGap::IsRedundant() const { in IsRedundant() function in v8::internal::LGap 93 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) { in IsRedundant()
|
/external/chromium_org/v8/src/mips64/ |
D | lithium-gap-resolver-mips64.cc | 60 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 82 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-mips64.h | 338 bool IsRedundant() const; 373 return !IsRedundant(); in HasInterestingComment()
|
D | lithium-mips64.cc | 91 bool LGap::IsRedundant() const { in IsRedundant() function in v8::internal::LGap 93 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) { in IsRedundant()
|
/external/chromium_org/v8/src/x64/ |
D | lithium-gap-resolver-x64.cc | 54 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); in BuildInitialMoveList() 69 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-x64.h | 346 bool IsRedundant() const; 382 return !IsRedundant(); in HasInterestingComment()
|
/external/chromium_org/v8/src/x87/ |
D | lithium-gap-resolver-x87.cc | 59 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList() 74 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-x87.h | 347 bool IsRedundant() const; 382 return !IsRedundant(); in HasInterestingComment()
|
D | lithium-x87.cc | 119 bool LGap::IsRedundant() const { in IsRedundant() function in v8::internal::LGap 121 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) { in IsRedundant()
|
/external/chromium_org/v8/src/ia32/ |
D | lithium-gap-resolver-ia32.cc | 59 if (!move.IsRedundant()) AddMove(move); in BuildInitialMoveList() 74 DCHECK(!moves_[index].IsRedundant()); in PerformMove()
|
D | lithium-ia32.h | 342 bool IsRedundant() const; 377 return !IsRedundant(); in HasInterestingComment()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineVectorOps.cpp | 501 bool IsRedundant = false; in visitInsertValueInst() local 516 IsRedundant = true; in visitInsertValueInst() 523 if (IsRedundant) in visitInsertValueInst()
|