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

  /external/v8/src/compiler/
gap-resolver.cc 35 const LocationOperand& src_loc = LocationOperand::cast(move->source());
36 const LocationOperand& dst_loc = LocationOperand::cast(move->destination());
52 if (src_kind == LocationOperand::REGISTER) {
63 if (dst_kind == LocationOperand::REGISTER) {
100 REP_BIT(LocationOperand::cast(move->destination()).representation());
162 LocationOperand::cast(other->source()).representation() >
222 if (LocationOperand::cast(other->source()).representation() >
229 if (LocationOperand::cast(other->source()).representation()
    [all...]
instruction.h 424 class LocationOperand : public InstructionOperand {
428 LocationOperand(InstructionOperand::Kind operand_kind,
429 LocationOperand::LocationKind location_kind,
504 static LocationOperand* cast(InstructionOperand* op) {
506 return static_cast<LocationOperand*>(op);
509 static const LocationOperand* cast(const InstructionOperand* op) {
511 return static_cast<const LocationOperand*>(op);
514 static LocationOperand cast(const InstructionOperand& op) {
516 return *static_cast<const LocationOperand*>(&op);
526 : public NON_EXPORTED_BASE(LocationOperand) {
    [all...]
code-generator-impl.h 131 return LocationOperand::cast(op)->GetRegister();
135 return LocationOperand::cast(op)->GetFloatRegister();
139 return LocationOperand::cast(op)->GetDoubleRegister();
143 return LocationOperand::cast(op)->GetSimd128Register();
instruction.cc 75 const LocationOperand& loc = *LocationOperand::cast(this);
76 const LocationOperand& other_loc = LocationOperand::cast(other);
77 LocationOperand::LocationKind kind = loc.location_kind();
78 LocationOperand::LocationKind other_kind = other_loc.location_kind();
83 if (kind == LocationOperand::REGISTER) {
90 DCHECK_EQ(LocationOperand::STACK_SLOT, kind);
159 LocationOperand allocated = LocationOperand::cast(op)
    [all...]
code-generator.cc 276 int index = LocationOperand::cast(operand).index();
286 Register reg = LocationOperand::cast(operand).GetRegister();
358 LocationOperand::cast(source).index() >=
370 LocationOperand::cast(destination).index() >=
372 int index = LocationOperand::cast(destination).index();
    [all...]
move-optimizer.cc 40 fp_reps_ |= RepBit(LocationOperand::cast(op).representation());
55 const LocationOperand& loc = LocationOperand::cast(op);
85 if (Contains(AllocatedOperand(LocationOperand::REGISTER, other_rep1,
93 if (Contains(AllocatedOperand(LocationOperand::REGISTER, other_rep2,
register-allocator-verifier.cc 239 CHECK_EQ(LocationOperand::cast(op)->register_code(), constraint->value_);
243 CHECK_EQ(LocationOperand::cast(op)->register_code(), constraint->value_);
247 CHECK_EQ(LocationOperand::cast(op)->index(), constraint->value_);
251 CHECK_EQ(ElementSizeLog2Of(LocationOperand::cast(op)->representation()),
548 zone(), LocationOperand::LocationKind::STACK_SLOT, rep,
instruction-selector-impl.h 144 return ExplicitOperand(LocationOperand::REGISTER, rep,
147 return ExplicitOperand(LocationOperand::STACK_SLOT, rep,
register-allocator.cc 308 *register_code = LocationOperand::cast(operand)->register_code();
557 return AllocatedOperand(LocationOperand::REGISTER, representation(),
917 return AllocatedOperand(LocationOperand::STACK_SLOT, representation(), index);
    [all...]
  /external/v8/src/compiler/s390/
code-generator-s390.cc 31 return LocationOperand::cast(instr_->InputAt(index))->representation() ==
36 return LocationOperand::cast(instr_->InputAt(index))->representation() ==
    [all...]
  /external/v8/src/compiler/arm/
code-generator-arm.cc 561 (LocationOperand::cast(pushes.back()->destination()).index() + 1 ==
566 LocationOperand destination_location(
567 LocationOperand::cast(move->destination()));
574 LocationOperand source_location(LocationOperand::cast(source));
579 LocationOperand source_location(LocationOperand::cast(source));
    [all...]
  /external/v8/src/compiler/ppc/
code-generator-ppc.cc     [all...]
  /external/v8/src/compiler/ia32/
code-generator-ia32.cc     [all...]
  /external/v8/src/compiler/x64/
code-generator-x64.cc     [all...]
  /external/v8/src/compiler/x87/
code-generator-x87.cc 504 (LocationOperand::cast(pushes.back()->destination()).index() + 1 ==
508 LocationOperand destination_location(
509 LocationOperand::cast(move->destination()));
514 LocationOperand source_location(LocationOperand::cast(source));
517 LocationOperand source_location(LocationOperand::cast(source));
    [all...]
  /external/v8/src/compiler/mips/
code-generator-mips.cc     [all...]

Completed in 1122 milliseconds