Lines Matching refs:number_of_instructions
107 size_t number_of_instructions = 0; in CountNumberOfInstructions() local
112 ++number_of_instructions; in CountNumberOfInstructions()
115 return number_of_instructions; in CountNumberOfInstructions()
1909 size_t number_of_instructions = 0; in CanInlineBody() local
1935 if (++number_of_instructions >= inlining_budget_) { in CanInlineBody()
1985 *out_number_of_instructions = number_of_instructions; in CanInlineBody()
2084 size_t number_of_instructions = 0; in TryBuildAndInlineHelper() local
2085 if (!CanInlineBody(callee_graph, invoke_instruction->GetBlock(), &number_of_instructions)) { in TryBuildAndInlineHelper()
2097 total_number_of_instructions_ += number_of_instructions; in TryBuildAndInlineHelper()
2148 size_t number_of_instructions = CountNumberOfInstructions(callee_graph); in RunOptimizations() local
2149 if (number_of_instructions > inlining_budget_) { in RunOptimizations()
2152 << " its instruction budget limit. " << number_of_instructions; in RunOptimizations()
2165 total_number_of_instructions_ + number_of_instructions, in RunOptimizations()