Searched refs:get_pc (Results 1 – 12 of 12) sorted by relevance
/external/ltp/testcases/kernel/syscalls/profil/ |
D | profil01.c | 54 static void __attribute__ ((noinline)) *get_pc(void) in get_pc() function 72 size_t offset = (size_t) get_pc() - PROFIL_BUFLEN/2, count = 0; in test_profil()
|
/external/v8/src/profiler/ |
D | tick-sample.cc | 97 state->pc = reinterpret_cast<void*>(simulator->get_pc()); in FillRegisters() 107 state->pc = reinterpret_cast<void*>(simulator->get_pc()); in FillRegisters() 113 state->pc = reinterpret_cast<void*>(simulator->get_pc()); in FillRegisters() 119 state->pc = reinterpret_cast<void*>(simulator->get_pc()); in FillRegisters()
|
/external/v8/src/ppc/ |
D | simulator-ppc.cc | 76 char* msg = *reinterpret_cast<char**>(sim_->get_pc() + kInstrSize); in Stop() 87 sim_->set_pc(sim_->get_pc() + kInstrSize + kPointerSize); in Stop() 202 if (last_pc != sim_->get_pc()) { in Debug() 207 dasm.InstructionDecode(buffer, reinterpret_cast<byte*>(sim_->get_pc())); in Debug() 208 PrintF(" 0x%08" V8PRIxPTR " %s\n", sim_->get_pc(), buffer.start()); in Debug() 209 last_pc = sim_->get_pc(); in Debug() 233 if ((reinterpret_cast<Instruction*>(sim_->get_pc())) in Debug() 235 sim_->set_pc(sim_->get_pc() + kInstrSize); in Debug() 238 reinterpret_cast<Instruction*>(sim_->get_pc())); in Debug() 241 if (argc == 2 && last_pc != sim_->get_pc() && GetValue(arg1, &value)) { in Debug() [all …]
|
D | simulator-ppc.h | 157 intptr_t get_pc() const;
|
/external/v8/src/mips/ |
D | simulator-mips.cc | 101 return sim_->get_pc(); in GetRegisterValue() 110 return sim_->get_pc(); in GetFPURegisterValue32() 119 return sim_->get_pc(); in GetFPURegisterValue64() 128 return sim_->get_pc(); in GetFPURegisterValueFloat() 137 return sim_->get_pc(); in GetFPURegisterValueDouble() 360 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) { in Debug() 361 if (last_pc != sim_->get_pc()) { in Debug() 367 reinterpret_cast<byte*>(sim_->get_pc())); in Debug() 368 PrintF(" 0x%08x %s\n", sim_->get_pc(), buffer.start()); in Debug() 369 last_pc = sim_->get_pc(); in Debug() [all …]
|
D | simulator-mips.h | 227 int32_t get_pc() const;
|
/external/v8/src/mips64/ |
D | simulator-mips64.cc | 111 return sim_->get_pc(); in GetRegisterValue() 120 return sim_->get_pc(); in GetFPURegisterValue() 129 return sim_->get_pc(); in GetFPURegisterValueFloat() 138 return sim_->get_pc(); in GetFPURegisterValueDouble() 325 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) { in Debug() 326 if (last_pc != sim_->get_pc()) { in Debug() 332 reinterpret_cast<byte*>(sim_->get_pc())); in Debug() 333 PrintF(" 0x%016" PRIx64 " %s\n", sim_->get_pc(), buffer.start()); in Debug() 334 last_pc = sim_->get_pc(); in Debug() 355 Instruction* instr = reinterpret_cast<Instruction*>(sim_->get_pc()); in Debug() [all …]
|
D | simulator-mips64.h | 229 int64_t get_pc() const;
|
/external/v8/src/s390/ |
D | simulator-s390.cc | 77 char* msg = *reinterpret_cast<char**>(sim_->get_pc() + sizeof(FourByteInstr)); in Stop() 88 sim_->set_pc(sim_->get_pc() + sizeof(FourByteInstr) + kPointerSize); in Stop() 198 if (last_pc != sim_->get_pc()) { in Debug() 203 dasm.InstructionDecode(buffer, reinterpret_cast<byte*>(sim_->get_pc())); in Debug() 204 PrintF(" 0x%08" V8PRIxPTR " %s\n", sim_->get_pc(), buffer.start()); in Debug() 205 last_pc = sim_->get_pc(); in Debug() 229 if ((reinterpret_cast<Instruction*>(sim_->get_pc())) in Debug() 231 sim_->set_pc(sim_->get_pc() + sizeof(FourByteInstr)); in Debug() 234 reinterpret_cast<Instruction*>(sim_->get_pc())); in Debug() 237 if (argc == 2 && last_pc != sim_->get_pc()) { in Debug() [all …]
|
D | simulator-s390.h | 154 intptr_t get_pc() const;
|
/external/v8/src/arm/ |
D | simulator-arm.cc | 84 return sim_->get_pc(); in GetRegisterValue() 203 if (last_pc != sim_->get_pc()) { in Debug() 209 reinterpret_cast<byte*>(sim_->get_pc())); in Debug() 210 PrintF(" 0x%08x %s\n", sim_->get_pc(), buffer.start()); in Debug() 211 last_pc = sim_->get_pc(); in Debug() 232 sim_->InstructionDecode(reinterpret_cast<Instruction*>(sim_->get_pc())); in Debug() 235 sim_->InstructionDecode(reinterpret_cast<Instruction*>(sim_->get_pc())); in Debug() 361 cur = reinterpret_cast<byte*>(sim_->get_pc()); in Debug() 377 cur = reinterpret_cast<byte*>(sim_->get_pc()); in Debug() 430 intptr_t stop_pc = sim_->get_pc() - kInstrSize; in Debug() [all …]
|
D | simulator-arm.h | 149 int32_t get_pc() const;
|