Searched refs:runtime (Results 51 - 63 of 63) sorted by relevance

123

/art/runtime/
H A DAndroid.mk143 runtime.cc \
278 $(info TODOMips64: $(LOCAL_PATH)/Android.mk Add mips64 specific runtime files)
H A Ddebugger.cc761 Runtime* runtime = Runtime::Current(); local
762 runtime->GetThreadList()->SuspendAll();
766 runtime->GetInstrumentation()->EnableDeoptimization();
770 runtime->GetThreadList()->ResumeAll();
783 Runtime* runtime = Runtime::Current(); local
784 runtime->GetThreadList()->SuspendAll();
800 runtime->GetInstrumentation()->RemoveListener(&gDebugInstrumentationListener,
804 runtime->GetInstrumentation()->DisableDeoptimization();
810 runtime->GetThreadList()->ResumeAll();
1880 // Debugging can't use transactional mode (runtime onl
3086 Runtime* const runtime = Runtime::Current(); local
[all...]
H A Dmonitor.cc754 Runtime* runtime = Runtime::Current(); local
755 if (contention_count <= runtime->GetMaxSpinsBeforeThinkLockInflation()) {
H A Dthread_list.cc166 Runtime* runtime = Runtime::Current(); local
169 runtime->GetThreadList()->DumpLocked(ss);
/art/runtime/native/
H A Ddalvik_system_DexFile.cc44 #include "runtime.h"
385 Runtime* runtime = Runtime::Current(); local
386 ClassLinker* class_linker = runtime->GetClassLinker();
388 // class paths. isDexOptNeeded will not necessarily be called on a runtime
/art/runtime/interpreter/
H A Dinterpreter.cc26 // Hand select a number of methods to be run in a not yet started runtime without using JNI.
35 Runtime* runtime = Runtime::Current(); local
36 mirror::Class* array_class = runtime->GetClassLinker()->FindArrayClass(self, &element_class);
38 gc::AllocatorType allocator = runtime->GetHeap()->GetCurrentAllocator();
123 AbortTransaction(self, "Attempt to invoke native method in non-started runtime: %s",
128 "non-transactional runtime";
H A Dinterpreter_goto_table_impl.cc533 Runtime* runtime = Runtime::Current(); local
536 runtime->GetHeap()->GetCurrentAllocator());
542 // finalized without a started runtime.
2422 Runtime* runtime = Runtime::Current(); \
2423 const instrumentation::Instrumentation* instrumentation = runtime->GetInstrumentation(); \
H A Dinterpreter_common.cc554 // We need to do runtime check on reference assignment. We need to load the shorty
726 Runtime* runtime = Runtime::Current(); variable
728 runtime->RecordWriteArray(array, i, array->GetWithoutChecks(i));
766 // Helper function to deal with class loading in an unstarted runtime.
779 AbortTransaction(self, "%s failed in un-started runtime for class: %s",
798 // In a runtime that's not started we intercept certain methods to avoid complicated dependency
834 // Special managed code cut-out to allow field lookup in a un-started runtime that'd fail
856 << "Failed to find field in Class.getDeclaredField in un-started runtime. name="
H A Dinterpreter_switch_impl.cc446 Runtime* runtime = Runtime::Current(); local
449 runtime->GetHeap()->GetCurrentAllocator());
455 // be finalized without a started runtime.
/art/test/
H A DAndroid.run-test.mk359 run_test_options := $(addprefix --runtime-option ,$(DALVIKVM_FLAGS))
443 run_test_options += --runtime-option -Xgc:preverify --runtime-option -Xgc:postverify \
444 --runtime-option -Xgc:preverify_rosalloc --runtime-option -Xgc:postverify_rosalloc
451 run_test_options += --runtime-option -Xgc:SS --runtime-option -Xms2m \
452 --runtime-option -Xmx2m --runtime-option -Xgc:preverify --runtime
[all...]
/art/compiler/
H A DAndroid.mk252 LOCAL_C_INCLUDES += $(ART_C_INCLUDES) art/runtime
/art/compiler/driver/
H A Dcompiler_driver.cc40 #include "runtime.h"
884 // check this at runtime (for example for class loaders).
918 // going to have to check this at runtime (for example for class loaders).
1101 // invoked, so this can be passed to the out-of-line runtime support code.
1823 // exclusive access to the runtime and the transaction. To achieve this, we could use
1826 Runtime* const runtime = Runtime::Current(); local
1830 runtime->EnterTransactionMode(&transaction);
1833 // TODO we detach transaction from runtime to indicate we quit the transactional
1837 runtime->ExitTransactionMode();
1926 // Skip compiling classes with generic verifier failures since they will still fail at runtime
[all...]
/art/oatdump/
H A Doatdump.cc50 #include "runtime.h"
1799 fprintf(stderr, "Failed to create runtime\n");
1802 std::unique_ptr<Runtime> runtime(Runtime::Current());

Completed in 902 milliseconds

123