OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dex2oat
(Results
1 - 7
of
7
) sorted by null
/art/dex2oat/
Android.mk
22
dex2oat
.cc
25
$(eval $(call build-art-executable,
dex2oat
,$(DEX2OAT_SRC_FILES),libcutils libart-compiler,art/compiler,target,ndebug))
28
$(eval $(call build-art-executable,
dex2oat
,$(DEX2OAT_SRC_FILES),libcutils libartd-compiler,art/compiler,target,debug))
32
# We always build
dex2oat
and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target.
34
$(eval $(call build-art-executable,
dex2oat
,$(DEX2OAT_SRC_FILES),libart-compiler,art/compiler,host,ndebug))
37
$(eval $(call build-art-executable,
dex2oat
,$(DEX2OAT_SRC_FILES),libartd-compiler,art/compiler,host,debug))
dex2oat.cc
78
UsageError("Usage:
dex2oat
[options]...");
152
class
Dex2Oat
{
154
static bool Create(
Dex2Oat
** p_dex2oat,
164
*p_dex2oat = new
Dex2Oat
(Runtime::Current(), compiler_backend, instruction_set, thread_count);
168
~
Dex2Oat
() {
170
VLOG(compiler) << "
dex2oat
took " << PrettyDuration(NanoTime() - start_ns_)
268
timings.NewSplit("
dex2oat
OatWriter");
327
explicit
Dex2Oat
(Runtime* runtime,
399
DISALLOW_IMPLICIT_CONSTRUCTORS(
Dex2Oat
);
460
const char* reason = "
dex2oat
watch dog thread startup"
566
static int
dex2oat
(int argc, char** argv) {
function in namespace:art
[
all
...]
/build/target/product/
runtime_libart.mk
22
dex2oat
\
/art/runtime/gc/space/
image_space.cc
57
std::string
dex2oat
(GetAndroidRoot());
58
dex2oat
+= (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/
dex2oat
");
59
arg_vector.push_back(
dex2oat
);
101
// fork and exec
dex2oat
109
execv(
dex2oat
.c_str(), &char_args[0]);
111
PLOG(FATAL) << "execv(" <<
dex2oat
<< ") failed";
118
// wait for
dex2oat
to finish
126
LOG(ERROR) <<
dex2oat
<< " failed: " << command_line;
/art/compiler/
Android.mk
220
$(TARGET_OUT_EXECUTABLES)/
dex2oat
: $$(LOCAL_INSTALLED_MODULE)
226
$(HOST_OUT_EXECUTABLES)/
dex2oat
: $$(LOCAL_INSTALLED_MODULE)
239
# We always build
dex2oat
and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target.
255
$(
DEX2OAT
): $(TARGET_OUT_SHARED_LIBRARIES)/libcompiler_rt.a
/art/
Android.mk
87
include $(art_path)/
dex2oat
/Android.mk
272
$(
DEX2OAT
) $(PARALLEL_ART_COMPILE_JOBS) --runtime-arg -Xms64m --runtime-arg -Xmx64m --boot-image=$(TARGET_BOOT_IMG_OUT) --dex-file=$(PRODUCT_OUT)/$(1) --dex-location=/$(1) --oat-file=$$@ --host-prefix=$(PRODUCT_OUT) --instruction-set=$(TARGET_ARCH) --android-root=$(PRODUCT_OUT)/system
/art/runtime/
class_linker.cc
547
dex2oat_string += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/
dex2oat
");
548
const char*
dex2oat
= dex2oat_string.c_str();
local
591
// fork and exec
dex2oat
600
VLOG(class_linker) <<
dex2oat
614
execl(
dex2oat
,
dex2oat
,
629
PLOG(FATAL) << "execl(" <<
dex2oat
<< ") failed";
632
// wait for
dex2oat
to finish
640
LOG(ERROR) <<
dex2oat
<< " failed with dex-file=" << dex_filename;
[
all
...]
Completed in 244 milliseconds