/aosp12/art/tools/veridex/ |
H A D | flow_analysis.cc | 704 bool is_range, in GetParameterAt() argument 707 return is_range ? instruction.VRegC() + index : args[index]; in GetParameterAt() 711 uint32_t id = is_range ? instruction.VRegB_3rc() : instruction.VRegB_35c(); in AnalyzeInvoke() 714 if (!is_range) { in AnalyzeInvoke() 726 RegisterValue cls = GetRegister(GetParameterAt(instruction, is_range, args, 0)); in AnalyzeInvoke() 727 RegisterValue name = GetRegister(GetParameterAt(instruction, is_range, args, 1)); in AnalyzeInvoke() 733 RegisterValue cls = GetRegister(GetParameterAt(instruction, is_range, args, 0)); in AnalyzeInvoke() 739 RegisterValue obj = GetRegister(GetParameterAt(instruction, is_range, args, 0)); in AnalyzeInvoke() 768 bool is_range) { in AnalyzeInvoke() argument 769 uint32_t id = is_range ? instruction.VRegB_3rc() : instruction.VRegB_35c(); in AnalyzeInvoke() [all …]
|
H A D | flow_analysis.h | 116 virtual RegisterValue AnalyzeInvoke(const Instruction& instruction, bool is_range) = 0; 196 RegisterValue AnalyzeInvoke(const Instruction& instruction, bool is_range) override; 216 RegisterValue AnalyzeInvoke(const Instruction& instruction, bool is_range) override;
|
/aosp12/art/runtime/interpreter/ |
H A D | interpreter_common.cc | 243 template <bool is_range> 323 template<bool is_range> 379 if (UNLIKELY(is_range)) { in DoMethodHandleInvokeCommon() 554 template<bool is_range> in DO_VAR_HANDLE_ACCESSOR() 1181 template <bool is_range> 1188 if (is_range) { in CopyRegisters() 1203 template <bool is_range, 1386 if (is_range) { in DoCallCommon() 1425 if (is_range) { in DoCall() 1445 if (!is_range) { in DoFilledNewArray() [all …]
|
H A D | interpreter_common.h | 128 template<bool is_range, bool do_assignability_check> 227 template<InvokeType type, bool is_range, bool do_access_check, bool is_mterp> 240 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); in DoInvoke() 241 const uint32_t vregC = (is_range) ? inst->VRegC_3rc() : inst->VRegC_35c(); in DoInvoke() 285 if (is_mterp && !is_range && called_method->IsIntrinsic()) { in DoInvoke() 321 (is_range) ? inst->VRegA_3rc(inst_data) : inst->VRegA_35c(inst_data); in DoInvoke() 341 if (is_range) { in DoInvoke() 415 template<bool is_range> 431 template<bool is_range> 439 if (is_range) { in DoInvokeCustom() [all …]
|
H A D | interpreter_switch_impl-inl.h | 361 template<InvokeType type, bool is_range> 363 bool success = DoInvoke<type, is_range, do_access_check, /*is_mterp=*/ false>( in HandleInvoke()
|
/aosp12/hardware/google/graphics/common/libhwc2.1/libdrmresource/drm/ |
H A D | drmproperty.cpp | 125 bool DrmProperty::is_range() const { in is_range() function in android::DrmProperty 130 if (!is_range()) in range_min() 139 if (!is_range()) in range_max()
|
/aosp12/art/runtime/verifier/ |
H A D | method_verifier.cc | 625 bool is_range) 3957 DCHECK_EQ(!is_range, inst->HasVarArgs()); in VerifyInvocationArgsFromIterator() 3964 DCHECK(is_range || expected_args <= 5); in VerifyInvocationArgsFromIterator() 4038 if (!is_range) { in VerifyInvocationArgsFromIterator() 4081 if (!is_range && sig_registers + 1 < expected_args) { in VerifyInvocationArgsFromIterator() 4198 const Instruction* inst, MethodType method_type, bool is_range) { in VerifyInvocationArgs() argument 4206 VerifyInvocationArgsUnresolvedMethod(inst, method_type, is_range); in VerifyInvocationArgs() 4355 bool is_range) { in VerifyNewArray() argument 4360 } else if (!is_range) { in VerifyNewArray() 4387 if (!is_range) { in VerifyNewArray() [all …]
|
/aosp12/art/runtime/interpreter/mterp/ |
H A D | nterp.cc | 635 bool is_range) in DoFilledNewArray() argument 639 if (is_range) { in DoFilledNewArray() 645 const int32_t length = is_range ? inst->VRegA_3rc() : inst->VRegA_35c(); in DoFilledNewArray() 647 if (!is_range) { in DoFilledNewArray() 651 uint16_t type_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c(); in DoFilledNewArray() 689 if (is_range) { in DoFilledNewArray() 695 size_t src_reg = is_range ? vregC + i : arg[i]; in DoFilledNewArray()
|
/aosp12/art/runtime/entrypoints/quick/ |
H A D | quick_trampoline_entrypoints.cc | 1248 bool is_range; in artQuickResolutionTrampoline() local 1252 is_range = false; in artQuickResolutionTrampoline() 1256 is_range = true; in artQuickResolutionTrampoline() 1260 is_range = false; in artQuickResolutionTrampoline() 1264 is_range = true; in artQuickResolutionTrampoline() 1268 is_range = false; in artQuickResolutionTrampoline() 1272 is_range = true; in artQuickResolutionTrampoline() 1276 is_range = false; in artQuickResolutionTrampoline() 1280 is_range = true; in artQuickResolutionTrampoline() 1284 is_range = false; in artQuickResolutionTrampoline() [all …]
|
/aosp12/system/bt/stack/sdp/ |
H A D | sdp_utils.cc | 1034 bool is_range = false; in sdpu_get_attrib_seq_len() local 1038 if (!is_range) { in sdpu_get_attrib_seq_len() 1051 is_range = true; in sdpu_get_attrib_seq_len() 1053 is_range = false; in sdpu_get_attrib_seq_len() 1055 is_range = false; in sdpu_get_attrib_seq_len()
|
/aosp12/hardware/google/graphics/common/libhwc2.1/libdrmresource/include/ |
H A D | drmproperty.h | 53 bool is_range() const;
|