Searched defs:Simulator (Results 1 - 15 of 15) sorted by relevance

/external/autotest/client/deps/lansim/src/py/
H A Dsimulator.py16 "A Simulator generic error."
29 class Simulator(object): class in inherits:object
165 """Runs the Simulator.
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 the
284 start() that should be called instead of Simulator.run(). start() will make
303 Simulator.__init__(self, iface)
395 This method wraps the Simulator.run() to pass the timeout value passed
399 Simulator
[all...]
/external/v8/src/arm64/
H A Dsimulator-arm64.cc60 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);
116 sim = new Decoder<Simulator>();
125 void Simulator
353 Simulator::Simulator(Decoder<DispatchingDecoderVisitor>* decoder, function in class:v8::internal::Simulator
377 Simulator::Simulator() function in class:v8::internal::Simulator
[all...]
/external/v8/src/arm/
H A Dsimulator-arm.h6 // 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
109 class Simulator { class in namespace:v8::internal
135 explicit Simulator(Isolate* isolate);
136 ~Simulator();
138 // The currently executing Simulator instance. Potentially there can be one
140 static Simulator* current(v8::internal::Isolate* isolate);
417 // Simulator support.
518 // Exposed so it can be accessed by Simulator
[all...]
H A Dsimulator-arm.cc26 base::LazyInstance<Simulator::GlobalMonitor>::type Simulator::global_monitor_ =
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));
523 PrintF(" When hitting a stop, the Simulator will\n");
526 Simulator::kNumOfWatchedStops);
527 PrintF(" - They can be enabled / disabled: the Simulator\
658 Simulator::Simulator(Isolate* isolate) : isolate_(isolate) { function in class:v8::internal::Simulator
[all...]
/external/v8/src/ppc/
H A Dsimulator-ppc.h6 // 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
102 class Simulator { class in namespace:v8::internal
175 explicit Simulator(Isolate* isolate);
176 ~Simulator();
178 // The currently executing Simulator instance. Potentially there can be one
180 static Simulator* current(v8::internal::Isolate* isolate);
367 // Simulator support.
407 reinterpret_cast<Object*>(Simulator
[all...]
H A Dsimulator-ppc.cc38 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);
604 PrintF(" - They can be enabled / disabled: the Simulator\n");
606 PrintF(" - The Simulator keeps track of how many times they \n");
656 void Simulator
738 Simulator::Simulator(Isolate* isolate) : isolate_(isolate) { function in class:v8::internal::Simulator
[all...]
/external/v8/src/s390/
H A Dsimulator-s390.h5 // 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
99 class Simulator { class in namespace:v8::internal
145 explicit Simulator(Isolate* isolate);
146 ~Simulator();
148 // The currently executing Simulator instance. Potentially there can be one
150 static Simulator* current(v8::internal::Isolate* isolate);
480 // Simulator support.
520 typedef int (Simulator
[all...]
H A Dsimulator-s390.cc38 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);
610 PrintF(" - They can be enabled / disabled: the Simulator\n");
612 PrintF(" - The Simulator keeps track of how many times they \n");
658 void Simulator
1487 Simulator::Simulator(Isolate* isolate) : isolate_(isolate) { function in class:v8::internal::Simulator
[all...]
/external/vixl/src/aarch64/
H A Dsimulator-aarch64.h790 class Simulator : public DecoderVisitor { class in namespace:vixl::aarch64
792 explicit Simulator(Decoder* decoder, FILE* stream = stdout);
793 ~Simulator();
819 static R Wrapper(Simulator* simulator,
840 static void Wrapper(Simulator* simulator,
1795 static void Wrapper(Simulator* simulator, uintptr_t function_pointer) {
1804 static void Wrapper(Simulator* simulator, uintptr_t function_pointer) {
2051 typedef LogicVRegister (Simulator::*ByElementOp)(VectorFormat vform,
2952 typedef float (Simulator::*FPMinMaxOp)(float a, float b);
3203 struct Simulator
[all...]
H A Dsimulator-aarch64.cc38 const Instruction* Simulator::kEndOfSimAddress = NULL;
65 Simulator::Simulator(Decoder* decoder, FILE* stream) { function in class:vixl::aarch64::Simulator
104 void Simulator::ResetState() {
129 // Returning to address 0 exits the Simulator.
134 Simulator::~Simulator() {
145 void Simulator::Run() {
156 void Simulator::RunFrom(const Instruction* first) {
162 const char* Simulator
[all...]
/external/v8/src/mips/
H A Dsimulator-mips.cc53 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");
758 PrintF(" - The Simulator keeps track of how many times they \n");
806 void Simulator::set_last_debugger_input(char* input) {
811 void Simulator
889 Simulator::Simulator(Isolate* isolate) : isolate_(isolate) { function in class:v8::internal::Simulator
[all...]
H A Dsimulator-mips.h6 // 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
149 class Simulator { class in namespace:v8::internal
187 explicit Simulator(Isolate* isolate);
188 ~Simulator();
190 // The currently executing Simulator instance. Potentially there can be one
192 static Simulator* current(v8::internal::Isolate* isolate);
490 // Simulator support.
528 reinterpret_cast<Object*>(Simulator
[all...]
/external/v8/src/mips64/
H A Dsimulator-mips64.cc68 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");
691 PrintF(" - The Simulator keeps track of how many times they \n");
739 void Simulator::set_last_debugger_input(char* input) {
744 void Simulator
821 Simulator::Simulator(Isolate* isolate) : isolate_(isolate) { function in class:v8::internal::Simulator
[all...]
H A Dsimulator-mips64.h6 // 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
158 class Simulator { class in namespace:v8::internal
196 explicit Simulator(Isolate* isolate);
197 ~Simulator();
199 // The currently executing Simulator instance. Potentially there can be one
201 static Simulator* current(v8::internal::Isolate* isolate);
519 // Simulator support.
558 reinterpret_cast<Object*>(Simulator
[all...]
/external/dexmaker/lib/
H A Ddalvik-dx-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dx/ com/android/dx/cf/ ...

Completed in 478 milliseconds