Searched refs:compiler (Results 1 - 25 of 31) sorted by relevance

12

/art/imgdiag/
H A DAndroid.mk32 $(eval $(call build-art-multi-executable,imgdiag,$(IMGDIAG_SRC_FILES),libart-compiler libbacktrace,libcutils,libziparchive-host,art/compiler,both,$(HOST_PREFER_32_BIT)))
/art/dex2oat/
H A DAndroid.mk51 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libart-compiler libsigchain,art/compiler,target,ndebug,$(dex2oat_target_arch)))
55 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libartd-compiler libsigchain,art/compiler,target,debug,$(dex2oat_target_arch)))
84 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libart-compiler libsigchain libziparchive-host liblz4,art/compiler,host,ndebug,$(dex2oat_host_arch)))
86 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libart libart-compiler libart $(DEX2OAT_STATIC_DEPENDENCIES),art/compiler,host,ndebug,$(dex2oat_host_arch),static))
91 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),libcutils libartd-compiler libsigchain libziparchive-host liblz4,art/compiler,hos
[all...]
H A Ddex2oat.cc48 #include "compiler.h"
255 UsageError(" --compiler-backend=(Quick|Optimizing): select compiler backend");
257 UsageError(" Example: --compiler-backend=Optimizing");
260 UsageError(" --compiler-filter="
273 UsageError(" select compiler filter.");
275 UsageError(" Example: --compiler-filter=everything");
279 UsageError(" method for compiler filter tuning.");
284 UsageError(" method for compiler filter tuning.");
289 UsageError(" method for compiler filte
[all...]
/art/compiler/jni/quick/
H A Djni_compiler.h27 CompiledMethod* ArtQuickJniCompileMethod(CompilerDriver* compiler, uint32_t access_flags,
H A Djni_compiler.cc606 CompiledMethod* ArtQuickJniCompileMethod(CompilerDriver* compiler, uint32_t access_flags, argument
608 return ArtJniCompileMethodInternal(compiler, access_flags, method_idx, dex_file);
/art/test/595-profile-saving/
H A Drun18 # --compiler-filter=interpret-only to make sure that the test is not compiled AOT
24 -Xcompiler-option --compiler-filter=interpret-only \
/art/build/
H A DAndroid.gtest.mk268 compiler/compiled_method_test.cc \
269 compiler/debug/dwarf/dwarf_test.cc \
270 compiler/driver/compiled_method_storage_test.cc \
271 compiler/driver/compiler_driver_test.cc \
272 compiler/elf_writer_test.cc \
273 compiler/exception_test.cc \
274 compiler/image_test.cc \
275 compiler/jni/jni_compiler_test.cc \
276 compiler/linker/multi_oat_relative_patcher_test.cc \
277 compiler/linke
[all...]
H A DAndroid.oat.mk40 # $(1): compiler - default, optimizing, jit, interpreter or interpreter-access-checks.
57 core_compile_options += --compiler-backend=Quick
60 core_compile_options += --compiler-backend=Optimizing
65 core_compile_options += --compiler-filter=interpret-only
69 core_compile_options += --compiler-filter=verify-at-runtime --runtime-arg -Xverify:softfail
73 core_compile_options += --compiler-filter=verify-at-runtime
151 # $(1): compiler - default, optimizing, jit, interpreter or interpreter-access-checks.
197 core_compile_options += --compiler-backend=Quick
200 core_compile_options += --compiler-backend=Optimizing
201 # With the optimizing compiler, w
[all...]
/art/patchoat/
H A DAndroid.mk33 $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),libcutils libsigchain,art/compiler,target,ndebug,$(patchoat_arch)))
36 $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),libcutils libsigchain,art/compiler,target,debug,$(patchoat_arch)))
41 $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),libcutils libsigchain,art/compiler,host,ndebug))
44 $(eval $(call build-art-executable,patchoat,$(PATCHOAT_SRC_FILES),libcutils libsigchain,art/compiler,host,debug))
/art/compiler/optimizing/
H A Dbuilder.cc42 // Note that the compiler driver is null when unit testing.
53 VLOG(compiler) << "Skip compilation of huge method "
63 VLOG(compiler) << "Skip compilation of large method with no branch "
H A Dinliner.cc257 VLOG(compiler) << "Try inlining " << PrettyMethod(method_index, caller_dex_file);
265 VLOG(compiler) << "Not inlining a String.<init> method";
288 VLOG(compiler) << "Method cannot be resolved " << PrettyMethod(method_index, caller_dex_file);
312 VLOG(compiler) << "Interface or virtual call to "
330 VLOG(compiler) << "Interface or virtual call to "
339 VLOG(compiler) << "Interface or virtual call to "
375 VLOG(compiler) << "Call to " << PrettyMethod(resolved_method)
534 VLOG(compiler) << "Call to " << PrettyMethod(resolved_method)
668 VLOG(compiler) << "Call to " << PrettyMethod(resolved_method)
760 VLOG(compiler) << "Metho
[all...]
H A Doptimizing_compiler_stats.h80 if (!kIsDebugBuild && !VLOG_IS_ON(compiler)) {
81 // Log only in debug builds or if the compiler is verbose.
H A Dinstruction_builder.cc362 // The compiler also expects the move at the start of basic block so
743 // builder, which means that the code-generator (and compiler driver during sharpening and
1056 VLOG(compiler) << "Did not compile "
1070 VLOG(compiler) << "Did not compile "
1350 // The compiler driver cannot currently understand multiple dex caches involved. Just bailout.
2681 VLOG(compiler) << "Did not compile "
/art/compiler/
H A DAndroid.mk81 compiler.cc \
181 define build-libart-compiler
206 LOCAL_MODULE := libart-compiler
216 LOCAL_MODULE := libartd-compiler
270 # For compiler driver TLS.
314 $(eval $(call build-libart-compiler,host,ndebug))
316 $(eval $(call build-libart-compiler,host,ndebug,static))
320 $(eval $(call build-libart-compiler,host,debug))
322 $(eval $(call build-libart-compiler,host,debug,static))
326 $(eval $(call build-libart-compiler,targe
[all...]
H A Doat_writer.h86 // VmapTable one variable sized VmapTable blob (quick compiler only).
91 // MappingTable one variable sized blob with MappingTable (quick compiler only).
158 void PrepareLayout(const CompilerDriver* compiler,
H A Dimage_writer.cc269 VLOG(compiler) << "Compressed from " << image_data_size << " to " << data_size << " in "
315 // Write header last in case the compiler gets killed in the middle of image writing.
856 VLOG(compiler) << "Pruning " << visitor.classes_to_prune_.size() << " classes";
860 VLOG(compiler) << "Pruning class " << name;
1622 if (VLOG_IS_ON(compiler)) {
2156 // compiler pointers in here will make the output non-deterministic.
H A Doat_writer.cc469 void OatWriter::PrepareLayout(const CompilerDriver* compiler,
475 compiler_driver_ = compiler;
729 // compiler records its transformations.
825 // Deduplication is already done on a pointer basis by the compiler driver,
829 // Cache of compiler's --debuggable option.
869 // Deduplication is already done on a pointer basis by the compiler driver,
928 // Should already have been resolved by the compiler, just peek into the dex cache.
1562 VLOG(compiler) << #x "=" << PrettySize(x) << " (" << x << "B)"; \
1600 VLOG(compiler) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \
/art/compiler/dex/
H A Ddex_to_dex_compiler.cc49 DexCompiler(art::CompilerDriver& compiler, argument
52 : driver_(compiler),
104 // Filled by the compiler when quickening, in order to encode that information
212 VLOG(compiler) << "Replacing " << Instruction::Name(inst->Opcode())
232 VLOG(compiler) << "Removing " << Instruction::Name(inst->Opcode())
260 VLOG(compiler) << "Quickening " << Instruction::Name(inst->Opcode())
295 VLOG(compiler) << "Quickening " << Instruction::Name(inst->Opcode())
/art/oatdump/
H A DAndroid.mk25 $(eval $(call build-art-multi-executable,oatdump,$(OATDUMP_SRC_FILES),libart-compiler libart-disassembler,libcutils,,art/compiler art/disassembler))
/art/compiler/jit/
H A Djit_compiler.cc45 VLOG(jit) << "loading jit compiler";
49 VLOG(jit) << "Done loading jit compiler";
119 VLOG(compiler) << "JIT compiler option " << option;
123 VLOG(compiler) << "JIT instruction set variant " << str;
131 VLOG(compiler) << "JIT instruction set features " << str;
181 << "Generating debug info only works with one compiler thread";
204 TimingLogger logger("JIT compiler timing logger", true, VLOG_IS_ON(jit));
/art/test/
H A DAndroid.run-test.mk183 $(foreach compiler, $(4), \
193 test-art-$(target)-run-test-$(run-type)-$(prebuild)-$(compiler)-$(relocate)-$(trace)-$(gc)-$(jni)-$(image)-$(pictest)-$(debuggable)-$(test)$(address_size) \
458 # also uses Generic JNI instead of the JNI compiler.
470 # Known broken tests for the mips32 optimizing compiler backend.
485 # Known broken tests for the mips64 optimizing compiler backend.
499 # Tests that should fail when the optimizing compiler compiles them non-debuggable.
512 # Tests that should fail when the optimizing compiler compiles them debuggable.
526 # Tests that should fail in the read barrier configuration with the Optimizing compiler (AOT).
527 # 484: Baker's fast path based read barrier compiler instrumentation generates code containing
538 # Tests that should fail in the read barrier configuration with JIT (Optimizing compiler)
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc37 #include "compiler.h"
476 VLOG(compiler) << "Before precompile " << GetMemoryUsageString(false);
546 // GetQuickGenericJniStub allowing down calls that aren't compiled using a JNI compiler?
629 // NOTE: if compiler declines to compile this method, it will return null.
702 // Can we run DEX-to-DEX compiler on this class ?
894 VLOG(compiler) << "LoadImageClasses: " << GetMemoryUsageString(false);
905 VLOG(compiler) << "Resolve: " << GetMemoryUsageString(false);
909 VLOG(compiler) << "Verify none mode specified, skipping verification.";
920 VLOG(compiler) << "Resolve const-strings: " << GetMemoryUsageString(false);
924 VLOG(compiler) << "Verif
1860 ParallelCompilationManager(ClassLinker* class_linker, jobject class_loader, CompilerDriver* compiler, const DexFile* dex_file, const std::vector<const DexFile*>& dex_files, ThreadPool* thread_pool) argument
[all...]
/art/runtime/base/
H A Dlogging.h42 bool compiler; member in struct:art::LogVerbosity
/art/runtime/
H A Dparsed_options_test.cc96 EXPECT_FALSE(VLOG_IS_ON(compiler));
/art/cmdline/
H A Dcmdline_parser_test.cc246 "class,compiler,gc,heap,jdwp,jni,monitor,profiler,signals,simulator,startup,"
251 log_verbosity.compiler = true;
270 "class,compiler,gc,heap,jdwp,jni,monitor";
274 log_verbosity.compiler = true;

Completed in 305 milliseconds

12