HomeSort by relevance Sort by last modified time
    Searched refs:IsStackSlot (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/v8/src/crankshaft/x64/
lithium-gap-resolver-x64.cc 154 DCHECK(destination->IsStackSlot());
159 } else if (source->IsStackSlot()) {
165 DCHECK(destination->IsStackSlot());
200 DCHECK(destination->IsStackSlot());
252 } else if ((source->IsRegister() && destination->IsStackSlot()) ||
253 (source->IsStackSlot() && destination->IsRegister())) {
263 } else if ((source->IsStackSlot() && destination->IsStackSlot()) ||
  /external/v8/src/crankshaft/arm/
lithium-gap-resolver-arm.cc 163 } else if (source->IsStackSlot()) {
184 } else if (saved_destination_->IsStackSlot()) {
211 DCHECK(destination->IsStackSlot());
214 } else if (source->IsStackSlot()) {
219 DCHECK(destination->IsStackSlot());
249 DCHECK(destination->IsStackSlot());
  /external/v8/src/crankshaft/arm64/
lithium-gap-resolver-arm64.cc 159 } else if (source->IsStackSlot()) {
184 } else if (saved_destination_->IsStackSlot()) {
213 DCHECK(destination->IsStackSlot());
217 } else if (source->IsStackSlot()) {
222 DCHECK(destination->IsStackSlot());
241 DCHECK(destination->IsStackSlot());
delayed-masm-arm64.cc 17 DCHECK((src->IsStackSlot() && dst->IsStackSlot()) ||
  /external/v8/src/crankshaft/mips/
lithium-gap-resolver-mips.cc 148 } else if (source->IsStackSlot()) {
169 } else if (saved_destination_->IsStackSlot()) {
198 DCHECK(destination->IsStackSlot());
201 } else if (source->IsStackSlot()) {
206 DCHECK(destination->IsStackSlot());
242 DCHECK(destination->IsStackSlot());
  /external/v8/src/crankshaft/mips64/
lithium-gap-resolver-mips64.cc 148 } else if (source->IsStackSlot()) {
169 } else if (saved_destination_->IsStackSlot()) {
198 DCHECK(destination->IsStackSlot());
201 } else if (source->IsStackSlot()) {
206 DCHECK(destination->IsStackSlot());
242 DCHECK(destination->IsStackSlot());
  /external/v8/src/crankshaft/ppc/
lithium-gap-resolver-ppc.cc 150 } else if (source->IsStackSlot()) {
171 } else if (saved_destination_->IsStackSlot()) {
198 DCHECK(destination->IsStackSlot());
201 } else if (source->IsStackSlot()) {
206 DCHECK(destination->IsStackSlot());
231 DCHECK(destination->IsStackSlot());
  /external/v8/src/crankshaft/s390/
lithium-gap-resolver-s390.cc 146 } else if (source->IsStackSlot()) {
166 } else if (saved_destination_->IsStackSlot()) {
192 DCHECK(destination->IsStackSlot());
195 } else if (source->IsStackSlot()) {
200 DCHECK(destination->IsStackSlot());
225 DCHECK(destination->IsStackSlot());
  /external/v8/src/crankshaft/x87/
lithium-gap-resolver-x87.cc 268 DCHECK(destination->IsRegister() || destination->IsStackSlot());
273 } else if (source->IsStackSlot()) {
274 DCHECK(destination->IsRegister() || destination->IsStackSlot());
310 DCHECK(destination->IsStackSlot());
376 } else if ((source->IsRegister() && destination->IsStackSlot()) ||
377 (source->IsStackSlot() && destination->IsRegister())) {
396 } else if (source->IsStackSlot() && destination->IsStackSlot()) {
  /external/v8/src/crankshaft/ia32/
lithium-gap-resolver-ia32.cc 267 DCHECK(destination->IsRegister() || destination->IsStackSlot());
272 } else if (source->IsStackSlot()) {
273 DCHECK(destination->IsRegister() || destination->IsStackSlot());
313 DCHECK(destination->IsStackSlot());
373 } else if ((source->IsRegister() && destination->IsStackSlot()) ||
374 (source->IsStackSlot() && destination->IsRegister())) {
393 } else if (source->IsStackSlot() && destination->IsStackSlot()) {
  /art/compiler/optimizing/
locations.cc 98 } else if (location.IsStackSlot() || location.IsDoubleStackSlot()) {
locations.h 256 bool IsStackSlot() const {
285 DCHECK(IsStackSlot() || IsDoubleStackSlot() || IsSIMDStackSlot());
538 DCHECK(output_.IsStackSlot() || output_.IsDoubleStackSlot() || output_.IsUnallocated());
655 || input.IsStackSlot()
parallel_move_resolver.cc 50 if ((move.GetSource().IsStackSlot() || move.GetSource().IsDoubleStackSlot()) &&
51 (move.GetDestination().IsStackSlot() || move.GetDestination().IsDoubleStackSlot())) {
329 if (!move->IsEliminated() && !destination.IsStackSlot() && !destination.IsDoubleStackSlot()) {
code_generator_x86_64.cc     [all...]
code_generator_x86.cc     [all...]
code_generator_mips64.cc     [all...]
  /external/v8/src/compiler/
register-allocator-verifier.cc 246 CHECK(op->IsStackSlot() || op->IsFPStackSlot());
250 CHECK(op->IsStackSlot() || op->IsFPStackSlot());
255 CHECK(op->IsRegister() || op->IsStackSlot());
gap-resolver.cc 209 if (source.IsStackSlot() || source.IsFPStackSlot()) {
code-generator.cc 275 if (operand.IsStackSlot()) {
323 if ((source.IsRegister() || source.IsStackSlot()) &&
357 if (source.IsStackSlot() &&
369 if (destination.IsStackSlot() &&
857 if (op->IsStackSlot())
    [all...]
  /external/v8/src/crankshaft/
lithium.cc 220 if (op->IsStackSlot() && op->index() < 0) return;
228 if (op->IsStackSlot() && op->index() < 0) return;
241 if (op->IsStackSlot() && op->index() < 0) return;
  /external/v8/src/compiler/x87/
code-generator-x87.cc 45 DCHECK(op->IsStackSlot() || op->IsFPStackSlot());
513 if (source.IsStackSlot()) {
    [all...]
  /external/v8/src/compiler/arm64/
code-generator-arm64.cc 244 DCHECK(op->IsStackSlot() || op->IsFPStackSlot());
    [all...]
  /external/v8/src/compiler/s390/
code-generator-s390.cc 109 DCHECK(op->IsStackSlot() || op->IsFPStackSlot());
151 return instr->InputAt(index)->IsStackSlot();
    [all...]
  /external/v8/src/compiler/ppc/
code-generator-ppc.cc 107 DCHECK(op->IsStackSlot() || op->IsFPStackSlot());
    [all...]
  /external/v8/src/compiler/arm/
code-generator-arm.cc 132 DCHECK(op->IsStackSlot() || op->IsFPStackSlot());
573 if (source.IsStackSlot()) {
    [all...]

Completed in 938 milliseconds

1 2 3