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

  /art/runtime/arch/x86/
context_x86.cc 30 gprs_[i] = NULL;
32 gprs_[ESP] = &esp_;
49 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_size);
58 gprs_[EAX] = const_cast<uint32_t*>(&gZero);
59 gprs_[EDX] = const_cast<uint32_t*>(&gZero);
60 gprs_[ECX] = NULL;
61 gprs_[EBX] = NULL;
66 CHECK_NE(gprs_[reg], &gZero);
67 CHECK(gprs_[reg] != NULL);
68 *gprs_[reg] = value
    [all...]
context_x86.h 49 return *gprs_[reg];
60 uintptr_t* gprs_[kNumberOfCpuRegisters]; member in class:art::x86::X86Context
  /art/runtime/arch/mips/
context_mips.cc 30 gprs_[i] = NULL;
35 gprs_[SP] = &sp_;
36 gprs_[RA] = &ra_;
54 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_size);
73 CHECK_NE(gprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
74 CHECK(gprs_[reg] != NULL);
75 *gprs_[reg] = value;
80 gprs_[V0] = const_cast<uint32_t*>(&gZero);
81 gprs_[V1] = const_cast<uint32_t*>(&gZero);
82 gprs_[A1] = NULL
    [all...]
context_mips.h 48 return *gprs_[reg];
57 uintptr_t* gprs_[kNumberOfCoreRegisters]; member in class:art::mips::MipsContext
  /art/runtime/arch/arm/
context_arm.cc 31 gprs_[i] = NULL;
36 gprs_[SP] = &sp_;
37 gprs_[PC] = &pc_;
55 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_size);
74 DCHECK_NE(gprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
75 DCHECK(gprs_[reg] != NULL);
76 *gprs_[reg] = value;
81 gprs_[R0] = const_cast<uint32_t*>(&gZero);
82 gprs_[R1] = const_cast<uint32_t*>(&gZero);
83 gprs_[R2] = NULL
    [all...]
context_arm.h 50 return *gprs_[reg];
59 uintptr_t* gprs_[kNumberOfCoreRegisters]; member in class:art::arm::ArmContext
quick_entrypoints_arm.S 293 * On entry r0 is uint32_t* gprs_ and r1 is uint32_t* fprs_
297 ldr r2, [r0, #60] @ r2 = r15 (PC from gprs_ 60=4*15)
298 add r0, r0, #12 @ increment r0 to skip gprs_[0..2] 12=4*3
299 ldm r0, {r3-r14} @ load remaining gprs from argument gprs_
    [all...]

Completed in 765 milliseconds