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

  /art/runtime/arch/
context.h 96 kBadGprBase = 0xebad6070,
  /art/runtime/arch/arm/
context_arm.cc 36 sp_ = ArmContext::kBadGprBase + SP;
37 pc_ = ArmContext::kBadGprBase + PC;
106 gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : ArmContext::kBadGprBase + i;
  /art/runtime/arch/arm64/
context_arm64.cc 38 sp_ = Arm64Context::kBadGprBase + SP;
39 pc_ = Arm64Context::kBadGprBase + kPC;
135 gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : Arm64Context::kBadGprBase + i;
  /art/runtime/arch/mips/
context_mips.cc 35 sp_ = MipsContext::kBadGprBase + SP;
36 t9_ = MipsContext::kBadGprBase + T9;
113 gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : MipsContext::kBadGprBase + i;
  /art/runtime/arch/mips64/
context_mips64.cc 35 sp_ = Mips64Context::kBadGprBase + SP;
36 t9_ = Mips64Context::kBadGprBase + T9;
118 gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : Mips64Context::kBadGprBase + i;
  /art/runtime/arch/x86/
context_x86.cc 35 esp_ = X86Context::kBadGprBase + ESP;
36 eip_ = X86Context::kBadGprBase + kNumberOfCpuRegisters;
97 gprs[kNumberOfCpuRegisters - i - 1] = gprs_[i] != nullptr ? *gprs_[i] : X86Context::kBadGprBase + i;
  /art/runtime/arch/x86_64/
context_x86_64.cc 34 rsp_ = X86_64Context::kBadGprBase + RSP;
35 rip_ = X86_64Context::kBadGprBase + kNumberOfCpuRegisters;
111 gprs[kNumberOfCpuRegisters - i - 1] = gprs_[i] != nullptr ? *gprs_[i] : X86_64Context::kBadGprBase + i;
  /art/runtime/jit/
jit_code_cache.cc 504 reinterpret_cast<mirror::Class*>(Context::kBadGprBase + 0xff);
    [all...]
  /art/runtime/
runtime.cc     [all...]

Completed in 107 milliseconds