HomeSort by relevance Sort by last modified time
    Searched refs:AllocatedOperand (Results 1 - 19 of 19) sorted by null

  /external/v8/test/cctest/compiler/
test-gap-resolver.cc 105 return AllocatedOperand(
220 return AllocatedOperand(LocationOperand::STACK_SLOT, rep, index);
222 return AllocatedOperand(LocationOperand::REGISTER, rep, index);
test-jump-threading.cc 60 AddGapMove(index, AllocatedOperand(LocationOperand::REGISTER,
62 AllocatedOperand(LocationOperand::REGISTER,
70 AllocatedOperand(LocationOperand::REGISTER,
  /external/v8/src/compiler/
register-allocator-verifier.cc 515 const AllocatedOperand* reg_op =
516 AllocatedOperand::cast(instr->OutputAt(i));
518 const AllocatedOperand* stack_op = AllocatedOperand::New(
graph-visualizer.cc 560 AllocatedOperand op = AllocatedOperand::cast(range->GetAssignedOperand());
583 index = AllocatedOperand::cast(top->GetSpillOperand())->index();
instruction.h 516 class AllocatedOperand : public LocationOperand {
518 AllocatedOperand(LocationKind kind, MachineRepresentation rep, int index)
521 static AllocatedOperand* New(Zone* zone, LocationKind kind,
523 return InstructionOperand::New(zone, AllocatedOperand(kind, rep, index));
526 INSTRUCTION_OPERAND_CASTS(AllocatedOperand, ALLOCATED);
756 void RecordReference(const AllocatedOperand& op);
    [all...]
register-allocator.cc 431 DCHECK(AllocatedOperand::IsSupportedRepresentation(rep));
566 return AllocatedOperand(LocationOperand::REGISTER, representation(),
917 AllocatedOperand TopLevelLiveRange::GetSpillRangeOperand() const {
920 return AllocatedOperand(LocationOperand::STACK_SLOT, representation(), index);
    [all...]
instruction.cc 336 void ReferenceMap::RecordReference(const AllocatedOperand& op) {
    [all...]
register-allocator.h 542 AllocatedOperand GetSpillRangeOperand() const;
    [all...]
  /external/v8/test/unittests/compiler/
register-allocator-unittest.cc 28 const AllocatedOperand& op,
41 const AllocatedOperand& op,
70 if (AllocatedOperandMatches(AllocatedOperand::cast(move->source()), src) &&
71 AllocatedOperandMatches(AllocatedOperand::cast(move->destination()),
move-optimizer-unittest.cc 71 return AllocatedOperand(LocationOperand::STACK_SLOT,
75 return AllocatedOperand(LocationOperand::REGISTER,
  /external/v8/src/compiler/x87/
code-generator-x87.cc 46 return SlotToOperand(AllocatedOperand::cast(op)->index(), extra);
    [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 241 return SlotToMemOperand(AllocatedOperand::cast(op)->index(), masm);
    [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 123 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
    [all...]
  /external/v8/src/compiler/mips64/
code-generator-mips64.cc 123 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/s390/
code-generator-s390.cc 93 return SlotToMemOperand(AllocatedOperand::cast(op)->index());
    [all...]
  /external/v8/src/compiler/x64/
code-generator-x64.cc 53 return SlotToOperand(AllocatedOperand::cast(op)->index(), extra);
    [all...]

Completed in 326 milliseconds