OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sim_
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/mips/
simulator-mips.cc
75
explicit MipsDebugger(Simulator* sim) :
sim_
(sim) { }
89
Simulator*
sim_
;
member in class:v8::internal::MipsDebugger
130
reinterpret_cast<char**>(
sim_
->get_pc() + Instr::kInstrSize);
148
sim_
->set_pc(
sim_
->get_pc() + 2 * Instruction::kInstructionSize);
163
char* msg = *reinterpret_cast<char**>(
sim_
->get_pc() +
166
if (!
sim_
->watched_stops[code].desc) {
167
sim_
->watched_stops[code].desc = msg;
170
sim_
->set_pc(
sim_
->get_pc() + 2 * Instruction::kInstrSize)
[
all
...]
/external/v8/src/arm/
simulator-arm.cc
56
explicit ArmDebugger(Simulator* sim) :
sim_
(sim) { }
67
Simulator*
sim_
;
member in class:v8::internal::ArmDebugger
109
reinterpret_cast<char**>(
sim_
->get_pc() + Instruction::kInstrSize);
127
sim_
->set_pc(
sim_
->get_pc() + 2 * Instruction::kInstrSize);
140
char* msg = *reinterpret_cast<char**>(
sim_
->get_pc()
143
if (
sim_
->isWatchedStop(code) && !
sim_
->watched_stops[code].desc) {
144
sim_
->watched_stops[code].desc = msg;
152
sim_
->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize)
[
all
...]
Completed in 3756 milliseconds