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

  /external/v8/src/compiler/
gap-resolver.cc 53 src_index = src_loc.register_code() * aliases;
64 dst_index = dst_loc.register_code() * aliases;
register-allocator.h 272 void set_assigned_register(int register_code) {
273 flags_ = AssignedRegisterField::update(flags_, register_code);
280 bool HintRegister(int* register_code) const;
741 void set_assigned_register(int register_code) {
743 assigned_register_ = register_code;
    [all...]
instruction.cc 85 return GetRegConfig()->AreAliases(rep, loc.register_code(), other_rep,
86 other_loc.register_code());
166 << GetRegConfig()->GetGeneralRegisterName(allocated.register_code())
170 << GetRegConfig()->GetDoubleRegisterName(allocated.register_code())
174 << GetRegConfig()->GetFloatRegisterName(allocated.register_code())
179 << GetRegConfig()->GetSimd128RegisterName(allocated.register_code())
    [all...]
move-optimizer.cc 82 config->GetAliases(rep, loc.register_code(), other_rep1, &base);
90 aliases = config->GetAliases(rep, loc.register_code(), other_rep2, &base);
register-allocator-verifier.cc 239 CHECK_EQ(LocationOperand::cast(op)->register_code(), constraint->value_);
243 CHECK_EQ(LocationOperand::cast(op)->register_code(), constraint->value_);
graph-visualizer.cc 589 os_ << " \"" << config->GetGeneralRegisterName(op.register_code())
592 os_ << " \"" << config->GetDoubleRegisterName(op.register_code())
596 os_ << " \"" << config->GetFloatRegisterName(op.register_code())
instruction.h 444 int register_code() const { function in class:v8::internal::compiler::LocationOperand
451 return Register::from_code(register_code());
456 return FloatRegister::from_code(register_code());
464 return DoubleRegister::from_code(register_code());
469 return Simd128Register::from_code(register_code());
    [all...]
register-allocator.cc 292 bool UsePosition::HintRegister(int* register_code) const {
302 *register_code = assigned_register;
308 *register_code = LocationOperand::cast(operand)->register_code();
316 *register_code = assigned_register;
    [all...]
  /external/v8/src/
eh-frame.cc 304 void EhFrameWriter::RecordRegisterSavedToStack(int register_code, int offset) {
309 DCHECK_LE(register_code, EhFrameConstants::kSavedRegisterMask);
312 (register_code & EhFrameConstants::kSavedRegisterMask));
316 WriteULeb128(register_code);
eh-frame.h 167 void RecordRegisterSavedToStack(int register_code, int offset);
  /external/v8/src/compiler/arm/
code-generator-arm.cc     [all...]

Completed in 576 milliseconds