HomeSort by relevance Sort by last modified time
    Searched full:new_pc (Results 1 - 25 of 27) sorted by null

1 2

  /art/runtime/arch/arm/
context_arm.h 45 void SetPC(uintptr_t new_pc) OVERRIDE {
46 SetGPR(PC, new_pc);
  /system/core/libunwindstack/
RegsX86.cpp 62 uint32_t new_pc; local
63 if (!process_memory->ReadFully(regs_[X86_REG_SP], &new_pc, sizeof(new_pc)) ||
64 new_pc == regs_[X86_REG_PC]) {
68 regs_[X86_REG_PC] = new_pc;
RegsX86_64.cpp 62 uint64_t new_pc; local
63 if (!process_memory->ReadFully(regs_[X86_64_REG_SP], &new_pc, sizeof(new_pc)) ||
64 new_pc == regs_[X86_64_REG_PC]) {
68 regs_[X86_64_REG_PC] = new_pc;
DwarfCfa.cpp 321 AddressType new_pc = operands_[0]; local
322 if (new_pc < cur_pc) {
324 log(0, "Warning: PC is moving backwards: old 0x%" PRIx32 " new 0x%" PRIx32, cur_pc, new_pc);
326 log(0, "Warning: PC is moving backwards: old 0x%" PRIx64 " new 0x%" PRIx64, cur_pc, new_pc);
329 cur_pc_ = new_pc;
  /art/runtime/arch/mips/
context_mips.h 44 void SetPC(uintptr_t new_pc) OVERRIDE {
45 SetGPR(T9, new_pc);
  /art/runtime/arch/mips64/
context_mips64.h 44 void SetPC(uintptr_t new_pc) OVERRIDE {
45 SetGPR(T9, new_pc);
  /art/runtime/arch/x86/
context_x86.h 44 void SetPC(uintptr_t new_pc) OVERRIDE {
45 eip_ = new_pc;
  /art/runtime/arch/x86_64/
context_x86_64.h 44 void SetPC(uintptr_t new_pc) OVERRIDE {
45 rip_ = new_pc;
  /external/vixl/test/
test-pool-manager.cc 615 int32_t new_pc = pool_manager.Emit(&masm, local
621 USE(new_pc);
622 VIXL_ASSERT(new_pc == min_location + object_size);
646 int32_t new_pc = pool_manager.Emit(&masm, local
653 USE(new_pc);
654 VIXL_ASSERT(new_pc == AlignUp(pc, object_alignment) + object_size);
753 int32_t new_pc = local
756 VIXL_ASSERT(new_pc == pc + kPoolSize);
757 pc = new_pc;
767 new_pc = pool_manager.Emit(&masm, pc)
837 int32_t new_pc = local
    [all...]
  /art/runtime/arch/
context.h 59 virtual void SetPC(uintptr_t new_pc) = 0;
  /toolchain/binutils/binutils-2.27/cpu/
ip2k.cpu 468 (sequence ((USI new_pc))
470 (set new_pc (c-call UHI "pop_pc_stack"))
471 (set pabits (srl new_pc 13))
472 (set pc new_pc))
    [all...]
m32r.cpu 443 ; ((AI new_pc))
444 ; (set AI new_pc (execute: AI (const 0)) #:quiet)
445 ; (set AI pc new_pc #:direct)
    [all...]
  /external/v8/src/arm64/
simulator-arm64.h 294 void set_pc(T new_pc) {
296 memcpy(&pc_, &new_pc, sizeof(T));
  /external/vixl/src/aarch64/
simulator-aarch64.h 867 void WritePc(const Instruction* new_pc,
869 if (log_mode == LogBranches) LogTakenBranch(new_pc);
870 pc_ = Memory::AddressUntag(new_pc);
873 VIXL_DEPRECATED("WritePc", void set_pc(const Instruction* new_pc)) {
874 return WritePc(new_pc);
    [all...]
  /external/vixl/src/aarch32/
macro-assembler-aarch32.cc 216 int32_t new_pc = pool_manager_.Emit(this, GetCursorOffset(), size); local
217 VIXL_ASSERT(new_pc == GetCursorOffset());
218 USE(new_pc);
    [all...]
macro-assembler-aarch32.h 406 int32_t new_pc = pool_manager_.Emit(this, pc, kPaddingBytes); variable
407 USE(new_pc); variable
408 VIXL_ASSERT(new_pc == GetCursorOffset());
447 int32_t new_pc = pool_manager_.Emit(this, local
452 USE(new_pc);
453 VIXL_ASSERT(new_pc == GetCursorOffset());
468 int32_t new_pc = pool_manager_.Emit(this, pc, total_size); local
469 USE(new_pc);
470 VIXL_ASSERT(new_pc == GetCursorOffset());
482 int32_t new_pc local
    [all...]
  /external/v8/src/debug/
debug.cc 1217 Address new_pc = ComputeNewPcForRedirect(new_code, frame_code, old_pc); local
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/lib/linux/aarch64/
libFuzzer.a     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/lib/linux/arm/
libFuzzer.a     [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/lib64/clang/5.0.1/lib/linux/aarch64/
libFuzzer.a     [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/lib64/clang/5.0.1/lib/linux/arm/
libFuzzer.a     [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/runtimes_ndk_cxx/aarch64/
libFuzzer.a     [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/runtimes_ndk_cxx/arm/
libFuzzer.a     [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/lib64/clang/5.0.2/lib/linux/aarch64/
libFuzzer.a     [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/lib64/clang/5.0.2/lib/linux/arm/
libFuzzer.a     [all...]

Completed in 742 milliseconds

1 2