Searched defs:use_position (Results 1 - 2 of 2) sorted by relevance

/art/compiler/optimizing/
H A Dssa_liveness_analysis.cc362 size_t use_position = use->GetPosition(); local
363 if (use_position >= start && !use->IsSynthesized()) {
372 if (free_until[reg] >= use_position) {
389 if (free_until[reg] >= use_position) {
399 // We use the user's lifetime position - 1 (and not `use_position`) because the
H A Dssa_liveness_analysis.h492 size_t use_position = use->GetPosition(); local
493 if (use_position > position) {
495 return use_position;
520 size_t use_position = use->GetPosition(); local
521 if (use_position > position) {
522 return use_position;
949 size_t use_position = use->GetPosition(); local
950 if ((use_position == position) && use->IsSynthesized()) {
953 if (use_position > position) break;

Completed in 32 milliseconds