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

  /art/runtime/arch/
context.h 59 virtual void SetPC(uintptr_t new_pc) = 0;
  /art/runtime/arch/arm/
context_arm.h 44 void SetPC(uintptr_t new_pc) OVERRIDE {
45 SetGPR(PC, new_pc);
  /art/runtime/arch/mips/
context_mips.h 43 void SetPC(uintptr_t new_pc) OVERRIDE {
44 SetGPR(T9, new_pc);
  /art/runtime/arch/mips64/
context_mips64.h 43 void SetPC(uintptr_t new_pc) OVERRIDE {
44 SetGPR(T9, new_pc);
  /art/runtime/arch/x86/
context_x86.h 43 void SetPC(uintptr_t new_pc) OVERRIDE {
44 eip_ = new_pc;
  /art/runtime/arch/x86_64/
context_x86_64.h 43 void SetPC(uintptr_t new_pc) OVERRIDE {
44 rip_ = new_pc;
  /external/v8/src/arm64/
simulator-arm64.h 293 void set_pc(T new_pc) {
295 memcpy(&pc_, &new_pc, sizeof(T));
  /external/v8/src/debug/
debug.cc 1079 Address new_pc = ComputeNewPcForRedirect(new_code, frame_code, old_pc); local
    [all...]
  /external/vixl/src/vixl/a64/
simulator-a64.h 699 void set_pc(const Instruction* new_pc) {
700 pc_ = Memory::AddressUntag(new_pc);
    [all...]

Completed in 96 milliseconds