HomeSort by relevance Sort by last modified time
    Searched defs:get_pc (Results 1 - 2 of 2) sorted by null

  /external/v8/src/mips/
simulator-mips.cc 126 sim_->set_pc(sim_->get_pc() + Instruction::kInstructionSize);
139 sim_->set_pc(sim_->get_pc() + Instruction::kInstructionSize);
147 return sim_->get_pc();
264 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) {
265 if (last_pc != sim_->get_pc()) {
271 reinterpret_cast<byte_*>(sim_->get_pc()));
272 PrintF(" 0x%08x %s\n", sim_->get_pc(), buffer.start());
273 last_pc = sim_->get_pc();
287 if (!(reinterpret_cast<Instruction*>(sim_->get_pc())->IsTrap())) {
289 reinterpret_cast<Instruction*>(sim_->get_pc()));
639 int32_t Simulator::get_pc() const { function in class:assembler::mips::Simulator
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 118 sim_->set_pc(sim_->get_pc() + Instr::kInstrSize);
130 sim_->set_pc(sim_->get_pc() + Instr::kInstrSize);
138 return sim_->get_pc();
221 if (last_pc != sim_->get_pc()) {
227 reinterpret_cast<byte*>(sim_->get_pc()));
228 PrintF(" 0x%08x %s\n", sim_->get_pc(), buffer.start());
229 last_pc = sim_->get_pc();
243 sim_->InstructionDecode(reinterpret_cast<Instr*>(sim_->get_pc()));
246 sim_->InstructionDecode(reinterpret_cast<Instr*>(sim_->get_pc()));
296 cur = reinterpret_cast<byte*>(sim_->get_pc());
572 int32_t Simulator::get_pc() const { function in class:assembler::arm::Simulator
    [all...]

Completed in 135 milliseconds