Home
last modified time | relevance | path

Searched refs:inline_depth_limit (Results 1 – 3 of 3) sorted by relevance

/art/compiler/driver/
Dcompiler_options.cc57 size_t inline_depth_limit, in CompilerOptions() argument
78 inline_depth_limit_(inline_depth_limit), in CompilerOptions()
Dcompiler_options.h70 size_t inline_depth_limit,
/art/dex2oat/
Ddex2oat.cc575 int inline_depth_limit = kUnsetInlineDepthLimit; in ParseArgs() local
750 if (!ParseInt(limit, &inline_depth_limit)) { in ParseArgs()
753 if (inline_depth_limit < 0) { in ParseArgs()
754 Usage("--inline-depth-limit passed a negative value %s", inline_depth_limit); in ParseArgs()
1011 if (inline_depth_limit == kUnsetInlineDepthLimit) { in ParseArgs()
1012 inline_depth_limit = (compiler_filter == CompilerOptions::kSpace) in ParseArgs()
1052 inline_depth_limit, in ParseArgs()