Home
last modified time | relevance | path

Searched refs:MakeExecutable (Results 1 – 8 of 8) sorted by relevance

/art/compiler/
Dcommon_compiler_test.h48 void MakeExecutable(ArtMethod* method) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
50 static void MakeExecutable(const void* code_start, size_t code_length);
52 void MakeExecutable(mirror::ClassLoader* class_loader, const char* class_name)
Dcommon_compiler_test.cc44 void CommonCompilerTest::MakeExecutable(ArtMethod* method) { in MakeExecutable() function in art::CommonCompilerTest
97 MakeExecutable(code_ptr, code->size()); in MakeExecutable()
109 void CommonCompilerTest::MakeExecutable(const void* code_start, size_t code_length) { in MakeExecutable() function in art::CommonCompilerTest
131 void CommonCompilerTest::MakeExecutable(mirror::ClassLoader* class_loader, const char* class_name) { in MakeExecutable() function in art::CommonCompilerTest
140 MakeExecutable(&m); in MakeExecutable()
143 MakeExecutable(&m); in MakeExecutable()
247 MakeExecutable(method); in CompileMethod()
/art/compiler/jit/
Djit_compiler.h65 bool MakeExecutable(CompiledMethod* compiled_method, ArtMethod* method)
Djit_compiler.cc165 result = MakeExecutable(compiled_method, method); in CompileMethod()
266 bool JitCompiler::MakeExecutable(CompiledMethod* compiled_method, ArtMethod* method) { in MakeExecutable() function in art::jit::JitCompiler
/art/compiler/driver/
Dcompiler_driver_test.cc90 MakeExecutable(&m); in MakeDexFileExecutable()
93 MakeExecutable(&m); in MakeDexFileExecutable()
/art/runtime/
Dreflection_test.cc97 MakeExecutable(ScopedObjectAccessUnchecked(self).Decode<mirror::ClassLoader*>(jclass_loader), in ReflectionTestMakeExecutable()
100 MakeExecutable(nullptr, "java.lang.Class"); in ReflectionTestMakeExecutable()
101 MakeExecutable(nullptr, "java.lang.Object"); in ReflectionTestMakeExecutable()
102 MakeExecutable(ScopedObjectAccessUnchecked(self).Decode<mirror::ClassLoader*>(jclass_loader), in ReflectionTestMakeExecutable()
Djni_internal_test.cc2024 MakeExecutable(nullptr, "java.lang.Class"); in TEST_F()
2025 MakeExecutable(nullptr, "java.lang.Object"); in TEST_F()
2026 MakeExecutable(nullptr, "java.nio.DirectByteBuffer"); in TEST_F()
2027 MakeExecutable(nullptr, "java.nio.MemoryBlock"); in TEST_F()
2028 MakeExecutable(nullptr, "java.nio.MemoryBlock$UnmanagedBlock"); in TEST_F()
2029 MakeExecutable(nullptr, "java.nio.MappedByteBuffer"); in TEST_F()
2030 MakeExecutable(nullptr, "java.nio.ByteBuffer"); in TEST_F()
2031 MakeExecutable(nullptr, "java.nio.Buffer"); in TEST_F()
/art/compiler/optimizing/
Dcodegen_test.cc129 CommonCompilerTest::MakeExecutable(allocator.GetMemory(), allocator.GetSize()); in Run()