HomeSort by relevance Sort by last modified time
    Searched full:allocatedoperand (Results 1 - 17 of 17) sorted by null

  /external/v8/src/compiler/
gap-resolver.cc 71 move->set_source(AllocatedOperand(src_kind, smaller_rep, src_index));
72 move->set_destination(AllocatedOperand(dst_kind, smaller_rep, dst_index));
77 moves->AddMove(AllocatedOperand(src_kind, smaller_rep, src_index),
78 AllocatedOperand(dst_kind, smaller_rep, dst_index));
register-allocator-verifier.cc 516 const AllocatedOperand* reg_op =
517 AllocatedOperand::cast(instr->OutputAt(i));
519 const AllocatedOperand* stack_op = AllocatedOperand::New(
instruction.h 536 class AllocatedOperand : public LocationOperand {
538 AllocatedOperand(LocationKind kind, MachineRepresentation rep, int index)
541 static AllocatedOperand* New(Zone* zone, LocationKind kind,
543 return InstructionOperand::New(zone, AllocatedOperand(kind, rep, index));
546 INSTRUCTION_OPERAND_CASTS(AllocatedOperand, ALLOCATED);
788 void RecordReference(const AllocatedOperand& op);
    [all...]
register-allocator.cc 412 DCHECK(AllocatedOperand::IsSupportedRepresentation(rep));
553 return AllocatedOperand(LocationOperand::REGISTER, representation(),
910 AllocatedOperand TopLevelLiveRange::GetSpillRangeOperand() const {
913 return AllocatedOperand(LocationOperand::STACK_SLOT, representation(), index);
    [all...]
move-optimizer.cc 85 if (Contains(AllocatedOperand(LocationOperand::REGISTER, other_rep1,
93 if (Contains(AllocatedOperand(LocationOperand::REGISTER, other_rep2,
graph-visualizer.cc 575 AllocatedOperand op = AllocatedOperand::cast(range->GetAssignedOperand());
598 index = AllocatedOperand::cast(top->GetSpillOperand())->index();
instruction.cc 373 void ReferenceMap::RecordReference(const AllocatedOperand& op) {
    [all...]
register-allocator.h 554 AllocatedOperand GetSpillRangeOperand() const;
    [all...]
  /external/v8/src/compiler/x87/
code-generator-x87.cc 46 return SlotToOperand(AllocatedOperand::cast(op)->index(), extra);
    [all...]
  /external/v8/src/compiler/s390/
code-generator-s390.cc 110 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
120 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
    [all...]
  /external/v8/src/compiler/arm/
code-generator-arm.cc 132 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
    [all...]
  /external/v8/src/compiler/arm64/
code-generator-arm64.cc 246 return SlotToMemOperand(AllocatedOperand::cast(op)->index(), masm);
    [all...]
  /external/v8/src/compiler/mips/
code-generator-mips.cc 131 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
    [all...]
  /external/v8/src/compiler/ppc/
code-generator-ppc.cc 107 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
    [all...]
  /external/v8/src/compiler/ia32/
code-generator-ia32.cc 52 return SlotToOperand(AllocatedOperand::cast(op)->index(), extra);
    [all...]
  /external/v8/src/compiler/mips64/
code-generator-mips64.cc 131 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
    [all...]
  /external/v8/src/compiler/x64/
code-generator-x64.cc 56 return SlotToOperand(AllocatedOperand::cast(op)->index(), extra);
    [all...]

Completed in 3269 milliseconds