HomeSort by relevance Sort by last modified time
    Searched defs:IsRedundant (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/v8/src/compiler/
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;
  /external/chromium_org/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/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 501 bool IsRedundant = false;
516 IsRedundant = true;
523 if (IsRedundant)
    [all...]
  /art/compiler/optimizing/
nodes.h     [all...]
  /external/chromium_org/v8/src/arm/
lithium-arm.cc 89 bool LGap::IsRedundant() const {
91 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/chromium_org/v8/src/arm64/
lithium-arm64.cc 231 bool LGap::IsRedundant() const {
233 if ((parallel_moves_[i] != NULL) && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/chromium_org/v8/src/ia32/
lithium-ia32.cc 108 bool LGap::IsRedundant() const {
110 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-mips.cc 91 bool LGap::IsRedundant() const {
93 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/chromium_org/v8/src/mips64/
lithium-mips64.cc 91 bool LGap::IsRedundant() const {
93 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-x64.cc 92 bool LGap::IsRedundant() const {
94 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/chromium_org/v8/src/x87/
lithium-x87.cc 119 bool LGap::IsRedundant() const {
121 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]

Completed in 573 milliseconds