Home
last modified time | relevance | path

Searched refs:arg_count (Results 1 – 3 of 3) 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/
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()
/art/openjdkjvmti/
Dti_method.cc185 size_t arg_count = art::ArtMethod::NumArgRegisters(base_method->GetShorty()); in GetArgumentsSize() local
187 arg_count++; in GetArgumentsSize()
189 *size_ptr = static_cast<jint>(arg_count); in GetArgumentsSize()