Home | History | Annotate | Download | only in quick

Lines Matching defs:it

508   auto it = inline_methods_.find(method_index);
509 if (it != inline_methods_.end()) {
510 DCHECK_NE(it->second.flags & (kInlineIntrinsic | kInlineSpecial), 0);
511 return it->second.flags;
519 auto it = inline_methods_.find(method_index);
520 bool res = (it != inline_methods_.end() && (it->second.flags & kInlineIntrinsic) != 0);
522 *intrinsic = it->second;
531 auto it = inline_methods_.find(info->method_ref.dex_method_index);
532 if (it == inline_methods_.end() || (it->second.flags & kInlineIntrinsic) == 0) {
535 intrinsic = it->second;
625 auto it = inline_methods_.find(method_index);
626 return it != inline_methods_.end() && (it->second.flags & kInlineSpecial) != 0;
633 auto it = inline_methods_.find(method_idx);
634 if (it == inline_methods_.end() || (it->second.flags & kInlineSpecial) == 0) {
637 special = it->second;
647 auto it = inline_methods_.find(method_idx);
648 if (it == inline_methods_.end() || (it->second.flags & kInlineSpecial) == 0) {
651 method = it->second;
682 // If the invoke has not been eliminated yet, check now whether we should do it.
692 // For invokes, the object register is in vC. For null check mir, it is in vA.
1026 auto it = inline_methods_.find(method_index);
1027 if (it != inline_methods_.end() && (it->second.opcode == kInlineStringInit)) {
1030 return string_init_base_offset + it->second.d.data * pointer_size;
1037 auto it = inline_methods_.find(method_index);
1038 return (it != inline_methods_.end()) && (it->second.opcode == kInlineStringInit);