HomeSort by relevance Sort by last modified time
    Searched defs:object_arg (Results 1 - 2 of 2) sorted by null

  /art/compiler/dex/
inline_method_analyser.h 53 uint16_t object_arg : 4; member in struct:art::InlineIGetIPutData
inline_method_analyser.cc 603 uint32_t object_arg = object_reg - arg_start; local
610 if (is_static || object_arg != 0u) {
618 // InlineIGetIPutData::object_arg is only 4 bits wide.
620 if (object_arg > kMaxObjectArg) {
632 data->object_arg = object_arg; // Allow IGET on any register, not just "this".
673 uint32_t object_arg = object_reg - arg_start; local
676 if (is_static || object_arg != 0u) {
684 // InlineIGetIPutData::object_arg/src_arg/return_arg_plus1 are each only 4 bits wide.
688 if (object_arg > kMaxObjectArg || src_arg > kMaxSrcArg || return_arg_plus1 > kMaxReturnArgPlus1)
    [all...]

Completed in 1081 milliseconds