Home
last modified time | relevance | path

Searched refs:arg_count (Results 1 – 7 of 7) sorted by relevance

/art/tools/dexanalyze/
Ddexanalyze_bytecode.cc371 uint32_t arg_count = inst->GetVarArgs(args); in ProcessCodeItem() local
396 if (kMoveToDestReg && arg_count % 2 == 1) { in ProcessCodeItem()
408 for (size_t i = 0; i < arg_count; ++i) { in ProcessCodeItem()
414 new_args.insert(new_args.end(), args, args + arg_count); in ProcessCodeItem()
479 uint32_t arg_count = next->GetVarArgs(args); in ProcessCodeItem() local
481 if (arg_count == 1u && in ProcessCodeItem()
/art/runtime/jdwp/
Djdwp_handler.cc94 int32_t arg_count = request->ReadSigned32("argument count"); in RequestInvoke() local
101 VLOG(jdwp) << StringPrintf(" %d args:", arg_count); in RequestInvoke()
103 std::unique_ptr<JdwpTag[]> argTypes(arg_count > 0 ? new JdwpTag[arg_count] : nullptr); in RequestInvoke()
104 std::unique_ptr<uint64_t[]> argValues(arg_count > 0 ? new uint64_t[arg_count] : nullptr); in RequestInvoke()
105 for (int32_t i = 0; i < arg_count; ++i) { in RequestInvoke()
119 class_id, method_id, arg_count, in RequestInvoke()
/art/runtime/
Ddebugger.h90 arg_count(args_count), in DebugInvokeReq()
106 const uint32_t arg_count; member
650 JDWP::MethodId method_id, uint32_t arg_count,
Dreflection.cc467 uint32_t arg_count = (objects == nullptr) ? 0 : objects->GetLength(); in CheckArgsForInvokeMethod() local
468 if (UNLIKELY(arg_count != classes_size)) { in CheckArgsForInvokeMethod()
470 classes_size, arg_count).c_str()); in CheckArgsForInvokeMethod()
Ddebugger.cc3839 JDWP::MethodId method_id, uint32_t arg_count, in PrepareInvokeMethod() argument
3928 if (shorty_len - 1 != arg_count) { in PrepareInvokeMethod()
3937 for (size_t i = 0; i < arg_count; ++i) { in PrepareInvokeMethod()
3963 request_id, thread_id, receiver, c, m, options, arg_values, arg_count); in PrepareInvokeMethod()
4049 << " arg_count=" << pReq->arg_count; in ExecuteMethodWithoutPendingException()
/art/openjdkjvmti/
Dti_method.cc167 size_t arg_count = art::ArtMethod::NumArgRegisters(base_method->GetShorty()); in GetArgumentsSize() local
169 arg_count++; in GetArgumentsSize()
171 *size_ptr = static_cast<jint>(arg_count); in GetArgumentsSize()
/art/runtime/verifier/
Dmethod_verifier.cc4443 uint32_t arg_count = (is_range) ? inst->VRegA_3rc() : inst->VRegA_35c(); in VerifyNewArray() local
4448 for (size_t ui = 0; ui < arg_count; ui++) { in VerifyNewArray()