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

  /external/v8/src/ppc/
simulator-ppc.cc 38 explicit PPCDebugger(Simulator* sim) : sim_(sim) {}
48 Simulator* sim_; member in class:v8::internal::PPCDebugger
87 reinterpret_cast<char**>(sim_->get_pc() + Instruction::kInstrSize);
105 sim_->set_pc(sim_->get_pc() + Instruction::kInstrSize + kPointerSize);
119 *reinterpret_cast<char**>(sim_->get_pc() + Instruction::kInstrSize);
121 if (sim_->isWatchedStop(code) && !sim_->watched_stops_[code].desc) {
122 sim_->watched_stops_[code].desc = msg;
130 sim_->set_pc(sim_->get_pc() + Instruction::kInstrSize + kPointerSize)
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 35 explicit ArmDebugger(Simulator* sim) : sim_(sim) { }
46 Simulator* sim_; member in class:v8::internal::ArmDebugger
88 reinterpret_cast<char**>(sim_->get_pc() + Instruction::kInstrSize);
106 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize);
119 char* msg = *reinterpret_cast<char**>(sim_->get_pc()
122 if (sim_->isWatchedStop(code) && !sim_->watched_stops_[code].desc) {
123 sim_->watched_stops_[code].desc = msg;
131 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize)
    [all...]
  /external/v8/src/mips/
simulator-mips.cc 53 explicit MipsDebugger(Simulator* sim) : sim_(sim) { }
67 Simulator* sim_; member in class:v8::internal::MipsDebugger
109 reinterpret_cast<char**>(sim_->get_pc() + Instr::kInstrSize);
127 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstructionSize);
142 char* msg = *reinterpret_cast<char**>(sim_->get_pc() +
145 if (!sim_->watched_stops_[code].desc) {
146 sim_->watched_stops_[code].desc = msg;
149 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize)
    [all...]
  /external/v8/src/mips64/
simulator-mips64.cc 68 explicit MipsDebugger(Simulator* sim) : sim_(sim) { }
82 Simulator* sim_; member in class:v8::internal::MipsDebugger
122 reinterpret_cast<char**>(sim_->get_pc() + Instr::kInstrSize);
141 sim_->set_pc(sim_->get_pc() + 3 * Instruction::kInstructionSize);
156 char* msg = *reinterpret_cast<char**>(sim_->get_pc() +
159 if (!sim_->watched_stops_[code].desc) {
160 sim_->watched_stops_[code].desc = msg;
164 sim_->set_pc(sim_->get_pc() + 3 * Instruction::kInstrSize)
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Smoke.h 125 Simulation sim_; member in class:Smoke
Smoke.cpp 48 sim_paused_(false), sim_(5000), camera_(2.5f), frame_data_(),
77 const int object_per_worker = sim_.objects().size() / worker_count;
86 object_end = sim_.objects().size();
474 sim_.set_frame_data_size(object_data_size);
478 buf_info.size = object_data_size * sim_.objects().size();
701 sim_.update(worker.tick_interval_, worker.object_begin_, worker.object_end_);
729 auto &obj = sim_.objects()[i];
  /external/v8/src/s390/
simulator-s390.cc 38 explicit S390Debugger(Simulator* sim) : sim_(sim) {}
53 Simulator* sim_; member in class:v8::internal::S390Debugger
89 reinterpret_cast<char**>(sim_->get_pc() + sizeof(FourByteInstr));
107 sim_->set_pc(sim_->get_pc() + sizeof(FourByteInstr) + kPointerSize);
119 char* msg = *reinterpret_cast<char**>(sim_->get_pc() + sizeof(FourByteInstr));
121 if (sim_->isWatchedStop(code) && !sim_->watched_stops_[code].desc) {
122 sim_->watched_stops_[code].desc = msg;
130 sim_->set_pc(sim_->get_pc() + sizeof(FourByteInstr) + kPointerSize)
    [all...]

Completed in 169 milliseconds