Searched refs:Simulator (Results 1 - 25 of 47) sorted by relevance

12

/external/v8/src/s390/
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 Dlogic-aarch64.cc37 double Simulator::FPDefaultNaN<double>() {
43 float Simulator::FPDefaultNaN<float>() {
86 double Simulator::FixedToDouble(int64_t src, int fbits, FPRounding round) {
97 double Simulator::UFixedToDouble(uint64_t src, int fbits, FPRounding round) {
113 float Simulator::FixedToFloat(int64_t src, int fbits, FPRounding round) {
124 float Simulator::UFixedToFloat(uint64_t src, int fbits, FPRounding round) {
140 double Simulator::FPToDouble(float value) {
180 float Simulator::FPToFloat(float16 value) {
244 float16 Simulator::FPToFloat16(float value, FPRounding round_mode) {
294 float16 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/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/vixl/examples/aarch64/
H A Dabs.cc49 Simulator simulator(&decoder);
H A Dgetting-started.cc47 Simulator simulator(&decoder);
H A Dcheck-bounds.cc61 void run_function(Simulator* simulator,
83 Simulator simulator(&decoder);
H A Dadd3-double.cc50 Simulator simulator(&decoder);
H A Dfactorial.cc59 Simulator simulator(&decoder);
H A Dadd4-double.cc58 Simulator simulator(&decoder);
H A Dcrc-checksums.cc82 Simulator simulator(&decoder);
H A Dfactorial-rec.cc61 Simulator simulator(&decoder);
H A Dliteral.cc36 Simulator simulator(&decoder);
H A Dsimulated-runtime-calls.cc99 Simulator simulator(&decoder);
H A Dsum-array.cc65 Simulator simulator(&decoder);
H A Dswap-int32.cc67 Simulator simulator(&decoder);
/external/v8/src/profiler/
H A Dtick-sample.cc93 Simulator* simulator = isolate->thread_local_top()->simulator_;
100 state->sp = reinterpret_cast<Address>(simulator->get_register(Simulator::sp));
102 reinterpret_cast<Address>(simulator->get_register(Simulator::r11));
111 state->sp = reinterpret_cast<Address>(simulator->get_register(Simulator::sp));
112 state->fp = reinterpret_cast<Address>(simulator->get_register(Simulator::fp));
117 state->sp = reinterpret_cast<Address>(simulator->get_register(Simulator::sp));
118 state->fp = reinterpret_cast<Address>(simulator->get_register(Simulator::fp));
123 state->sp = reinterpret_cast<Address>(simulator->get_register(Simulator::sp));
124 state->fp = reinterpret_cast<Address>(simulator->get_register(Simulator::fp));
/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...]
/external/v8/src/arm/
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...]
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...]
/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/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...]
/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/
H A Dvm-state-inl.h63 scope_address_ = Simulator::current(isolate)->get_sp();

Completed in 455 milliseconds

12