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

1 2 3

  /packages/apps/Dialer/java/com/android/dialer/simulator/
Simulator.java 17 package com.android.dialer.simulator;
23 public interface Simulator {
  /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 42 public class Simulator {
73 public Simulator(Machine machine, ConcreteMethod method, DexOptions dexOptions) {
212 * {@link Simulator#simulate}
223 this.machine = Simulator.this.machine;
  /external/v8/src/arm64/
simulator-arm64.cc 12 #include "src/arm64/simulator-arm64.h"
60 void Simulator::TraceSim(const char* format, ...) {
70 const Instruction* Simulator::kEndOfSimAddress = NULL;
98 void Simulator::Initialize(Isolate* isolate) {
105 // Get the active Simulator for the current thread.
106 Simulator* Simulator::current(Isolate* isolate) {
111 Simulator* sim = isolate_data->simulator();
114 sim = new Simulator(new Decoder<DispatchingDecoderVisitor>(), isolate)
    [all...]
  /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"
22 // Only build the simulator if not compiling for real PPC hardware.
34 // The PPCDebugger class is used by the simulator while debugging simulated
38 explicit PPCDebugger(Simulator* sim) : sim_(sim) {}
47 Simulator* sim_;
78 PrintF("Simulator hit stop %u: %s\n", code, msg);
80 PrintF("Simulator hit %s\n", msg);
375 cur = reinterpret_cast<intptr_t*>(sim_->get_register(Simulator::sp));
600 PrintF(" When hitting a stop, the Simulator will\n");
603 Simulator::kNumOfWatchedStops)
    [all...]
  /external/v8/src/s390/
simulator-s390.h 5 // Declares a Simulator for S390 instructions if we are not generating a native
6 // S390 binary. This Simulator allows us to run and debug S390 code generation
9 // which will start execution in the Simulator or forwards to the real entry
18 // Running without a simulator on a native s390 platform.
23 // When running without a simulator we call the entry directly.
64 // Running with a simulator.
99 class Simulator {
145 explicit Simulator(Isolate* isolate);
146 ~Simulator();
148 // The currently executing Simulator instance. Potentially there can be on
    [all...]
simulator-s390.cc 19 #include "src/s390/simulator-s390.h"
22 // Only build the simulator if not compiling for real s390 hardware.
34 // The S390Debugger class is used by the simulator while debugging simulated
38 explicit S390Debugger(Simulator* sim) : sim_(sim) {}
52 Simulator* sim_;
83 PrintF("Simulator hit stop %u: %s\n", code, msg);
85 PrintF("Simulator hit %s\n", msg);
397 cur = reinterpret_cast<intptr_t*>(sim_->get_register(Simulator::sp));
606 PrintF(" When hitting a stop, the Simulator will\n");
609 Simulator::kNumOfWatchedStops)
    [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
21 // Running without a simulator on a native arm platform.
26 // When running without a simulator we call the entry directly.
69 // Running with a simulator.
109 class Simulator {
135 explicit Simulator(Isolate* isolate);
136 ~Simulator();
138 // The currently executing Simulator instance. Potentially there can be on
    [all...]
simulator-arm.cc 12 #include "src/arm/simulator-arm.h"
21 // Only build the simulator if not compiling for real ARM hardware.
26 base::LazyInstance<Simulator::GlobalMonitor>::type Simulator::global_monitor_ =
35 // The ArmDebugger class is used by the simulator while debugging simulated ARM
39 explicit ArmDebugger(Simulator* sim) : sim_(sim) { }
49 Simulator* sim_;
73 PrintF("Simulator hit stop %u\n", code);
75 PrintF("Simulator hit\n");
314 cur = reinterpret_cast<int32_t*>(sim_->get_register(Simulator::sp))
    [all...]
  /external/vixl/src/aarch64/
simulator-aarch64.h 37 #include "simulator-constants-aarch64.h"
790 class Simulator : public DecoderVisitor {
792 explicit Simulator(Decoder* decoder, FILE* stream = stdout);
793 ~Simulator();
797 // Run the simulator.
    [all...]
simulator-aarch64.cc 33 #include "simulator-aarch64.h"
38 const Instruction* Simulator::kEndOfSimAddress = NULL;
65 Simulator::Simulator(Decoder* decoder, FILE* stream) {
66 // Ensure that shift operations act as the simulator expects.
83 // Allocate and set up the simulator stack.
104 void Simulator::ResetState() {
129 // Returning to address 0 exits the Simulator.
134 Simulator::~Simulator() {
    [all...]
  /external/v8/src/mips/
simulator-mips.cc 17 #include "src/mips/simulator-mips.h"
22 // Only build the simulator if not compiling for real MIPS hardware.
49 // The MipsDebugger class is used by the simulator while debugging simulated
53 explicit MipsDebugger(Simulator* sim) : sim_(sim) { }
66 Simulator* sim_;
93 PrintF("Simulator hit (%u)\n", code);
360 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) {
498 cur = reinterpret_cast<int32_t*>(sim_->get_register(Simulator::sp));
753 PrintF(" When hitting a stop, the Simulator will\n");
756 PrintF(" - They can be enabled / disabled: the Simulator\n")
    [all...]
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.
149 class Simulator {
187 explicit Simulator(Isolate* isolate);
188 ~Simulator();
190 // The currently executing Simulator instance. Potentially there can be on
    [all...]
  /external/v8/src/mips64/
simulator-mips64.cc 17 #include "src/mips64/simulator-mips64.h"
21 // Only build the simulator if not compiling for real MIPS hardware.
64 // The MipsDebugger class is used by the simulator while debugging simulated
68 explicit MipsDebugger(Simulator* sim) : sim_(sim) { }
81 Simulator* sim_;
104 PrintF("Simulator hit (%u)\n", code);
326 while (!done && (sim_->get_pc() != Simulator::end_sim_pc)) {
444 cur = reinterpret_cast<int64_t*>(sim_->get_register(Simulator::sp));
686 PrintF(" When hitting a stop, the Simulator will\n");
689 PrintF(" - They can be enabled / disabled: the Simulator\n")
    [all...]
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.
84 // Running with a simulator.
158 class Simulator {
196 explicit Simulator(Isolate* isolate);
197 ~Simulator();
199 // The currently executing Simulator instance. Potentially there can be on
    [all...]
  /external/dexmaker/lib/
dalvik-dx-1.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/dalvik-dx/1/
dalvik-dx-1.jar 
  /prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/dalvik-dx/7.1.0_r7/
dalvik-dx-7.1.0_r7.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 

Completed in 1735 milliseconds

1 2 3