Lines Matching refs:it

627   ArtMethod* VerifyInvocationArgsFromIterator(T* it, const Instruction* inst,
1074 SafeDexInstructionIterator it(code_item_accessor_.begin(), code_item_accessor_.end()); in ComputeWidthsAndCountOps() local
1075 for ( ; !it.IsErrorState() && it < code_item_accessor_.end(); ++it) { in ComputeWidthsAndCountOps()
1077 SafeDexInstructionIterator next = it; in ComputeWidthsAndCountOps()
1082 Instruction::Code opcode = it->Opcode(); in ComputeWidthsAndCountOps()
1091 GetModifiableInstructionFlags(it.DexPc()).SetIsOpcode(); in ComputeWidthsAndCountOps()
1094 if (it != code_item_accessor_.end()) { in ComputeWidthsAndCountOps()
1097 << it.DexPc() << " vs. " << insns_size << ")"; in ComputeWidthsAndCountOps()
1126 for (DexInstructionIterator it(code_item_accessor_.Insns(), start); it < end_it; ++it) { in ScanTryCatchBlocks() local
1127 GetModifiableInstructionFlags(it.DexPc()).SetInTry(); in ScanTryCatchBlocks()
1850 auto it = insert_pair.first; in HandleMonitorDexPcsWorkLine() local
1851 auto set_insert_pair = it->second.dex_registers.insert(dex_reg); in HandleMonitorDexPcsWorkLine()
4020 T* it, const Instruction* inst, MethodType method_type, bool is_range, ArtMethod* res_method) { in VerifyInvocationArgsFromIterator() argument
4106 for ( ; it->HasNext(); it->Next()) { in VerifyInvocationArgsFromIterator()
4113 const char* param_descriptor = it->GetDescriptor(); in VerifyInvocationArgsFromIterator()
4174 DexFileParameterIterator it(*dex_file_, in VerifyInvocationArgsUnresolvedMethod() local
4176 VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, nullptr); in VerifyInvocationArgsUnresolvedMethod()
4187 CallSiteArrayValueIterator it(*dex_file_, dex_file_->GetCallSiteId(call_site_idx)); in CheckCallSite() local
4191 if (it.Size() < kRequiredArguments) { in CheckCallSite()
4194 << it.Size() << " < " << kRequiredArguments; in CheckCallSite()
4207 if (it.GetValueType() != type_and_max[i].first) { in CheckCallSite()
4210 << it.GetValueType() << "!=" << type_and_max[i].first; in CheckCallSite()
4213 index[i] = static_cast<uint32_t>(it.GetJavaValue().i); in CheckCallSite()
4220 it.Next(); in CheckCallSite()
4324 DexFileParameterIterator it(*dex_file_, dex_file_->GetProtoId(proto_idx)); in VerifyInvocationArgs() local
4325 return VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, res_method); in VerifyInvocationArgs()
4328 MethodParamListDescriptorIterator it(res_method); in VerifyInvocationArgs() local
4329 return VerifyInvocationArgsFromIterator(&it, inst, method_type, is_range, res_method); in VerifyInvocationArgs()