HomeSort by relevance Sort by last modified time
    Searched refs: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 544 const AllocatedOperand* reg_op =
545 AllocatedOperand::cast(instr->OutputAt(i));
547 const AllocatedOperand* stack_op = AllocatedOperand::New(
register-allocator.cc 416 DCHECK(AllocatedOperand::IsSupportedRepresentation(rep));
557 return AllocatedOperand(LocationOperand::REGISTER, representation(),
914 AllocatedOperand TopLevelLiveRange::GetSpillRangeOperand() const {
917 return AllocatedOperand(LocationOperand::STACK_SLOT, representation(), index);
    [all...]
instruction.h 539 class AllocatedOperand : public LocationOperand {
541 AllocatedOperand(LocationKind kind, MachineRepresentation rep, int index)
544 static AllocatedOperand* New(Zone* zone, LocationKind kind,
546 return InstructionOperand::New(zone, AllocatedOperand(kind, rep, index));
549 INSTRUCTION_OPERAND_CASTS(AllocatedOperand, ALLOCATED);
791 void RecordReference(const AllocatedOperand& op);
    [all...]
move-optimizer.cc 85 if (Contains(AllocatedOperand(LocationOperand::REGISTER, other_rep1,
93 if (Contains(AllocatedOperand(LocationOperand::REGISTER, other_rep2,
graph-visualizer.cc 586 AllocatedOperand op = AllocatedOperand::cast(range->GetAssignedOperand());
609 index = AllocatedOperand::cast(top->GetSpillOperand())->index();
register-allocator.h 554 AllocatedOperand GetSpillRangeOperand() const;
    [all...]
instruction.cc 384 void ReferenceMap::RecordReference(const AllocatedOperand& op) {
    [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/arm64/
code-generator-arm64.cc 245 return SlotToMemOperand(AllocatedOperand::cast(op)->index(), masm);
    [all...]
  /external/v8/src/compiler/arm/
code-generator-arm.cc 133 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/mips/
code-generator-mips.cc 131 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
    [all...]
  /external/v8/src/compiler/mips64/
code-generator-mips64.cc 131 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
    [all...]
  /external/v8/src/compiler/ppc/
code-generator-ppc.cc 108 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
    [all...]
  /external/v8/src/compiler/x64/
code-generator-x64.cc 55 return SlotToOperand(AllocatedOperand::cast(op)->index(), extra);
    [all...]

Completed in 413 milliseconds