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

  /external/autotest/client/deps/lansim/src/py/
simulator.py 16 "A Simulator generic error."
29 class Simulator(object):
30 """A TUN/TAP network interface simulator class.
100 seconds. The callback will be called at most once while the simulator
165 """Runs the Simulator.
197 # * the simulator was stopped from a different thread.
229 # thread want's to wake up the simulator loop.
279 class SimulatorThread(threading.Thread, Simulator):
280 """A threaded version of the Simulator.
282 This class exposses a similar interface as the Simulator class with th
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Simulator.java 38 public class Simulator {
65 public Simulator(Machine machine, ConcreteMethod method) {
203 * {@link Simulator#simulate}
214 this.machine = Simulator.this.machine;
  /external/v8/src/ppc/
simulator-ppc.h 6 // Declares a Simulator for PPC instructions if we are not generating a native
7 // PPC binary. This Simulator allows us to run and debug PPC code generation on
10 // which will start execution in the Simulator or forwards to the real entry
19 // Running without a simulator on a native ppc platform.
24 // When running without a simulator we call the entry directly.
66 // Running with a simulator.
102 class Simulator {
175 explicit Simulator(Isolate* isolate);
176 ~Simulator();
178 // The currently executing Simulator instance. Potentially there can be on
    [all...]
simulator-ppc.cc 17 #include "src/ppc/simulator-ppc.h"
21 // Only build the simulator if not compiling for real PPC hardware.
31 // The PPCDebugger class is used by the simulator while debugging simulated
35 explicit PPCDebugger(Simulator* sim) : sim_(sim) {}
45 Simulator* sim_;
123 PrintF("Simulator hit stop %u: %s\n", code, msg);
125 PrintF("Simulator hit %s\n", msg);
422 cur = reinterpret_cast<intptr_t*>(sim_->get_register(Simulator::sp));
646 PrintF(" When hitting a stop, the Simulator will\n");
649 Simulator::kNumOfWatchedStops)
    [all...]
  /external/vixl/src/vixl/a64/
simulator-a64.h 36 #include "vixl/a64/simulator-constants-a64.h"
686 class Simulator : public DecoderVisitor {
688 explicit Simulator(Decoder* decoder, FILE* stream = stdout);
689 ~Simulator();
693 // Run the simulator.
    [all...]
simulator-a64.cc 31 #include "vixl/a64/simulator-a64.h"
35 const Instruction* Simulator::kEndOfSimAddress = NULL;
62 Simulator::Simulator(Decoder* decoder, FILE* stream) {
63 // Ensure that shift operations act as the simulator expects.
80 // Allocate and set up the simulator stack.
102 void Simulator::ResetState() {
120 // Returning to address 0 exits the Simulator.
125 Simulator::~Simulator() {
    [all...]
  /external/v8/src/arm/
simulator-arm.h 6 // Declares a Simulator for ARM instructions if we are not generating a native
7 // ARM binary. This Simulator allows us to run and debug ARM code generation on
10 // which will start execution in the Simulator or forwards to the real entry
19 // Running without a simulator on a native arm platform.
24 // When running without a simulator we call the entry directly.
67 // Running with a simulator.
107 class Simulator {
133 explicit Simulator(Isolate* isolate);
134 ~Simulator();
136 // The currently executing Simulator instance. Potentially there can be on
    [all...]
simulator-arm.cc 12 #include "src/arm/simulator-arm.h"
20 // Only build the simulator if not compiling for real ARM hardware.
30 // The ArmDebugger class is used by the simulator while debugging simulated ARM
34 explicit ArmDebugger(Simulator* sim) : sim_(sim) { }
45 Simulator* sim_;
126 PrintF("Simulator hit stop %u: %s\n", code, msg);
128 PrintF("Simulator hit %s\n", msg);
367 cur = reinterpret_cast<int32_t*>(sim_->get_register(Simulator::sp));
575 PrintF(" When hitting a stop, the Simulator will\n");
578 Simulator::kNumOfWatchedStops)
    [all...]
  /external/v8/src/mips/
simulator-mips.h 6 // Declares a Simulator for MIPS instructions if we are not generating a native
7 // MIPS binary. This Simulator allows us to run and debug MIPS code generation
10 // which will start execution in the Simulator or forwards to the real entry
20 // Running without a simulator on a native mips platform.
25 // When running without a simulator we call the entry directly.
75 // Running with a simulator.
116 class Simulator {
154 explicit Simulator(Isolate* isolate);
155 ~Simulator();
157 // The currently executing Simulator instance. Potentially there can be on
    [all...]
simulator-mips.cc 17 #include "src/mips/simulator-mips.h"
21 // Only build the simulator if not compiling for real MIPS hardware.
48 // The MipsDebugger class is used by the simulator while debugging simulated
52 explicit MipsDebugger(Simulator* sim) : sim_(sim) { }
66 Simulator* sim_;
147 PrintF("Simulator hit %s (%u)\n", msg, code);
415 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) {
553 cur = reinterpret_cast<int32_t*>(sim_->get_register(Simulator::sp));
807 PrintF(" When hitting a stop, the Simulator will\n");
810 PrintF(" - They can be enabled / disabled: the Simulator\n")
    [all...]
  /external/v8/src/mips64/
simulator-mips64.h 6 // Declares a Simulator for MIPS instructions if we are not generating a native
7 // MIPS binary. This Simulator allows us to run and debug MIPS code generation
10 // which will start execution in the Simulator or forwards to the real entry
20 // Running without a simulator on a native mips platform.
25 // When running without a simulator we call the entry directly.
105 // Running with a simulator.
146 class Simulator {
184 explicit Simulator(Isolate* isolate);
185 ~Simulator();
187 // The currently executing Simulator instance. Potentially there can be on
    [all...]
simulator-mips64.cc 17 #include "src/mips64/simulator-mips64.h"
20 // Only build the simulator if not compiling for real MIPS hardware.
66 // The MipsDebugger class is used by the simulator while debugging simulated
70 explicit MipsDebugger(Simulator* sim) : sim_(sim) { }
84 Simulator* sim_;
164 PrintF("Simulator hit %s (%u)\n", msg, code);
379 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) {
496 cur = reinterpret_cast<int64_t*>(sim_->get_register(Simulator::sp));
737 PrintF(" When hitting a stop, the Simulator will\n");
740 PrintF(" - They can be enabled / disabled: the Simulator\n")
    [all...]
  /external/v8/src/arm64/
simulator-arm64.cc 12 #include "src/arm64/simulator-arm64.h"
59 void Simulator::TraceSim(const char* format, ...) {
69 const Instruction* Simulator::kEndOfSimAddress = NULL;
97 void Simulator::Initialize(Isolate* isolate) {
104 // Get the active Simulator for the current thread.
105 Simulator* Simulator::current(Isolate* isolate) {
110 Simulator* sim = isolate_data->simulator();
113 sim = new Simulator(new Decoder<DispatchingDecoderVisitor>(), isolate)
    [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0/
builder-2.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta1/
builder-2.1.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-beta3/
builder-2.1.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0-rc1/
builder-2.1.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.2/
builder-2.1.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.2.0-alpha1/
builder-2.2.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.2.0-alpha3/
builder-2.2.0-alpha3.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/build/builder/2.1.0/
builder-2.1.0.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/build/builder/2.2.0-alpha4/
builder-2.2.0-alpha4.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/build/builder/2.2.0-beta1/
builder-2.2.0-beta1.jar 

Completed in 732 milliseconds