Home | History | Annotate | Download | only in dex2oat

Lines Matching refs:runtime

92 #include "runtime.h"
145 // All runtime-arg parameters are dropped.
146 if (strcmp(original_argv[i], "--runtime-arg") == 0) {
190 // It seems only "/apex/com.android.runtime/bin/dex2oat" is left, or not
298 UsageError(" On target the value 'runtime' can be used to detect features at run time.");
299 UsageError(" If target does not support run-time detection the value 'runtime'");
301 UsageError(" Note: the value 'runtime' has no effect if it is used on host.");
347 UsageError(" and the filter is not interpret-only or verify-none or verify-at-runtime, ");
391 UsageError(" --runtime-arg <argument>: used to specify various arguments for the runtime,");
393 UsageError(" Use a separate --runtime-arg switch for each argument.");
394 UsageError(" Example: --runtime-arg -Xms256m");
443 UsageError(" runtime loading context for the compiled dex files.");
446 UsageError(" runtime loading context that is stored in the oat file. Overrides");
450 UsageError(" classes are resolved during dex2aot as they would be resolved at runtime.");
451 UsageError(" This spec will be encoded in the oat file. If at runtime the dex file is");
551 static void SetRuntime(Runtime* runtime) {
552 const char* reason = "dex2oat watch dog set runtime";
554 runtime_ = runtime;
593 Runtime* runtime = GetRuntime();
594 if (!kIsTargetBuild && runtime != nullptr) {
595 runtime->AttachCurrentThread("Watchdog thread attached for dumping",
599 runtime->DumpForSigQuit(std::cerr);
628 static Runtime* GetRuntime() {
629 const char* reason = "dex2oat watch dog get runtime";
631 Runtime* runtime = runtime_;
633 return runtime;
637 static Runtime* runtime_;
650 Runtime* WatchDog::runtime_ = nullptr;
694 // the runtime.
698 // We want to just exit on non-debug builds, not bringing the runtime down
1101 InitLogging(argv, Runtime::Abort);
1471 // Set up the environment for compilation. Includes starting the runtime and loading/opening the
1508 // When compiling an app, create the runtime early to retrieve
1516 Runtime* runtime = Runtime::Current();
1518 android::base::Join(runtime->GetBootClassPathLocations(), ':'));
1519 runtime->GetHeap()->GetBootImageSpaces();
1521 runtime->GetClassLinker()->GetBootClassPath();
1652 // For boot image, pass opened dex files to the Runtime::Create().
1653 // Note: Runtime acquires ownership of these dex files.
1740 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
1846 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
1937 // load the .so at the desired location at runtime by offsetting the
1961 gc::Heap* const heap = Runtime::Current()->GetHeap();
1971 // moving space. This means the runtime's non moving space space size will be as large
2275 // TODO(calin): We should be using the runtime arena pool (instead of the
2278 // runtime).
2495 // Only allow no boot image for the runtime if we're compiling one. When we compile an app,
2514 // Note that with read barriers, this option is ignored, because Runtime::Init
2517 // which uses an unstarted runtime.
2527 // Likewise, this option is ignored with read barriers because Runtime::Init
2536 if (!Runtime::ParseOptions(raw_options, false, runtime_options)) {
2537 LOG(ERROR) << "Failed to parse runtime options";
2543 // Create a runtime necessary for compilation.
2545 TimingLogger::ScopedTiming t_runtime("Create runtime", timings_);
2546 if (!Runtime::Create(std::move(runtime_options))) {
2547 LOG(ERROR) << "Failed to create runtime";
2551 // Runtime::Init will rename this thread to be "main". Prefer "dex2oat" so that "top" and
2555 runtime_.reset(Runtime::Current());
2564 // Initialize maps for unstarted runtime. This needs to be here, as running clinits needs this
2571 // Runtime::Create acquired the mutator_lock_ that is normally given away when we
2572 // Runtime::Start, give it away now so that we don't starve GC.
2693 // Note: when creation of a runtime fails, e.g., when trying to compile an app but when there
2694 // is no image, there won't be a Runtime::Current().
2700 << ((Runtime::Current() != nullptr && driver_ != nullptr) ?
2733 std::unique_ptr<Runtime> runtime_;
3029 // Everything was done, do an explicit exit here to avoid running Runtime destructors that take
3031 // Note: The Dex2Oat class should not destruct the runtime in this case.