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

  /external/v8/src/crankshaft/
lithium.cc 170 bool LParallelMove::IsRedundant() const {
172 if (!move_operands_[i].IsRedundant()) return false;
302 if (label->IsRedundant() &&
309 if (!gap->IsRedundant()) {
lithium.h 295 bool IsRedundant() const {
356 bool IsRedundant() const;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 542 bool IsRedundant = false;
557 IsRedundant = true;
564 if (IsRedundant)
    [all...]
  /external/v8/src/compiler/
instruction.cc 267 bool ParallelMove::IsRedundant() const {
269 if (!move->IsRedundant()) return false;
352 if (parallel_moves_[i] != nullptr && !parallel_moves_[i]->IsRedundant()) {
    [all...]
instruction.h 700 bool IsRedundant() const {
754 bool IsRedundant() const;
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 204 bool LGap::IsRedundant() const {
206 if ((parallel_moves_[i] != NULL) && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.cc 91 bool LGap::IsRedundant() const {
93 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 110 bool LGap::IsRedundant() const {
112 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.cc 93 bool LGap::IsRedundant() const {
95 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.cc 93 bool LGap::IsRedundant() const {
95 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.cc 89 bool LGap::IsRedundant() const {
91 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-s390.cc 84 bool LGap::IsRedundant() const {
86 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.cc 95 bool LGap::IsRedundant() const {
97 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.cc 121 bool LGap::IsRedundant() const {
123 if (parallel_moves_[i] != NULL && !parallel_moves_[i]->IsRedundant()) {
    [all...]

Completed in 1954 milliseconds