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

  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 113 for (size_t cur_arg = IsStatic() ? 0 : 1, cur_reg = 2; cur_arg < NumArgs(); cur_arg++) {
115 if ((cur_reg & 1) != 0) {
117 cur_reg++; // additional bump to ensure alignment
119 cur_reg++; // additional bump to skip extra long word
121 cur_reg++; // bump the iterator for every argument
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 113 for (size_t cur_arg = IsStatic() ? 0 : 1, cur_reg = 2; cur_arg < NumArgs(); cur_arg++) {
115 if ((cur_reg & 1) != 0) {
117 cur_reg++; // additional bump to ensure alignment
119 cur_reg++; // additional bump to skip extra long word
121 cur_reg++; // bump the iterator for every argument
  /art/runtime/interpreter/
interpreter.cc 431 size_t cur_reg = num_regs - num_ins; local
434 shadow_frame->SetVRegReference(cur_reg, receiver);
435 ++cur_reg;
439 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) {
444 shadow_frame->SetVRegReference(cur_reg, o);
449 shadow_frame->SetVRegLong(cur_reg, wide_value);
450 cur_reg++;
455 shadow_frame->SetVReg(cur_reg, args[arg_pos]);
  /external/chromium_org/v8/src/
lithium-allocator.cc 1799 int cur_reg = cur_inactive->assigned_register(); local
1878 int cur_reg = range->assigned_register(); local
1898 int cur_reg = range->assigned_register(); local
    [all...]

Completed in 99 milliseconds