Searched refs:simulator (Results 1 - 8 of 8) sorted by relevance

/art/runtime/simulator/
H A DAndroid.mk27 define build-libart-simulator
48 LOCAL_MODULE := libart-simulator
50 LOCAL_MODULE := libartd-simulator
101 $(eval $(call build-libart-simulator,host,ndebug))
104 $(eval $(call build-libart-simulator,host,debug))
/art/runtime/
H A Dcode_simulator_container.cc28 kIsDebugBuild ? "libartd-simulator.so" : "libart-simulator.so";
30 // It is not a real error when libart-simulator does not exist, e.g., on target.
32 VLOG(simulator) << "Could not load " << libart_simulator_so_name << ": " << dlerror();
45 // Free simulator object before closing libart-simulator because destructor of
H A Dparsed_options_test.cc103 EXPECT_FALSE(VLOG_IS_ON(simulator));
/art/compiler/optimizing/
H A Dcodegen_test.cc136 CodeSimulatorContainer simulator(target_isa);
137 return CanExecuteOnHardware(target_isa) || simulator.CanSimulate();
141 static Expected SimulatorExecute(CodeSimulator* simulator, Expected (*f)());
144 bool SimulatorExecute<bool>(CodeSimulator* simulator, bool (*f)()) { argument
145 simulator->RunFrom(reinterpret_cast<intptr_t>(f));
146 return simulator->GetCReturnBool();
150 int32_t SimulatorExecute<int32_t>(CodeSimulator* simulator, int32_t (*f)()) { argument
151 simulator->RunFrom(reinterpret_cast<intptr_t>(f));
152 return simulator->GetCReturnInt32();
156 int64_t SimulatorExecute<int64_t>(CodeSimulator* simulator, int64_ argument
[all...]
/art/runtime/base/
H A Dlogging.h53 bool simulator; member in struct:art::LogVerbosity
/art/cmdline/
H A Dcmdline_parser_test.cc246 "class,compiler,gc,heap,jdwp,jni,monitor,profiler,signals,simulator,startup,"
259 log_verbosity.simulator = true;
H A Dcmdline_types.h611 } else if (verbose_options[j] == "simulator") {
612 log_verbosity.simulator = true;
/art/
H A DAndroid.mk80 include $(art_path)/runtime/simulator/Android.mk

Completed in 4779 milliseconds