Searched refs:POPCOUNT (Results 1 - 19 of 19) sorted by last modified time

/art/runtime/mirror/
H A Dclass.cc287 CHECK_EQ((size_t)POPCOUNT(new_reference_offsets), count);
298 CHECK_EQ((size_t)POPCOUNT(new_reference_offsets),
/art/runtime/
H A Dstack.h676 int spill_size = POPCOUNT(core_spills) * GetBytesPerGprSpillLocation(isa)
677 + POPCOUNT(fp_spills) * GetBytesPerFprSpillLocation(isa)
H A Dutils.h274 static constexpr int POPCOUNT(T x) { function in namespace:art
H A Dvmap_table.h108 CHECK_LT(vmap_offset - matches, static_cast<uint32_t>(POPCOUNT(spill_mask)));
/art/compiler/utils/arm/
H A Dassembler_arm32.cc1224 CHECK(IsInt(POPCOUNT(kBranchOffsetMask), offset)) << offset;
/art/compiler/utils/mips/
H A Dassembler_mips.cc126 CHECK(IsInt(POPCOUNT(kBranchOffsetMask), offset)) << offset;
/art/runtime/arch/arm/
H A Dcontext_arm.cc47 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
48 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
H A Dquick_method_frame_info_arm.h55 return RoundUp((POPCOUNT(ArmCalleeSaveCoreSpills(type)) /* gprs */ +
56 POPCOUNT(ArmCalleeSaveFpSpills(type)) /* fprs */ +
68 (POPCOUNT(ArmCalleeSaveCoreSpills(type)) +
69 POPCOUNT(ArmCalleeSaveFpSpills(type))) * kArmPointerSize;
74 POPCOUNT(ArmCalleeSaveCoreSpills(type)) * kArmPointerSize;
79 POPCOUNT(ArmCalleeSaveCoreSpills(type) & (-(1 << LR))) * kArmPointerSize;
/art/runtime/arch/arm64/
H A Dcontext_arm64.cc50 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
51 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
H A Dquick_method_frame_info_arm64.h23 #include "utils.h" // for POPCOUNT
75 return RoundUp((POPCOUNT(Arm64CalleeSaveCoreSpills(type)) /* gprs */ +
76 POPCOUNT(Arm64CalleeSaveFpSpills(type)) /* fprs */ +
88 (POPCOUNT(Arm64CalleeSaveCoreSpills(type)) +
89 POPCOUNT(Arm64CalleeSaveFpSpills(type))) * kArm64PointerSize;
94 POPCOUNT(Arm64CalleeSaveCoreSpills(type)) * kArm64PointerSize;
99 POPCOUNT(Arm64CalleeSaveCoreSpills(type) & (-(1 << LR))) * kArm64PointerSize;
/art/runtime/arch/mips/
H A Dcontext_mips.cc46 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
47 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
H A Dquick_method_frame_info_mips.h42 return RoundUp((POPCOUNT(MipsCalleeSaveCoreSpills(type)) /* gprs */ +
/art/runtime/arch/x86/
H A Dcontext_x86.cc42 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
H A Dquick_method_frame_info_x86.h38 return RoundUp((POPCOUNT(X86CalleeSaveCoreSpills(type)) /* gprs */ +
/art/runtime/arch/x86_64/
H A Dcontext_x86_64.cc45 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
46 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
H A Dquick_method_frame_info_x86_64.h53 return RoundUp((POPCOUNT(X86_64CalleeSaveCoreSpills(type)) /* gprs */ +
54 POPCOUNT(X86_64CalleeSaveFpSpills(type)) /* fprs */ +
/art/runtime/base/
H A Dbit_vector.cc263 count += POPCOUNT(storage_[word]);
389 count += POPCOUNT(storage[word]);
392 count += POPCOUNT(storage[word_end] & ~(0xffffffffu << partial_word_bits));
/art/compiler/dex/quick/arm64/
H A Dint_arm64.cc1456 int core_count = POPCOUNT(core_reg_mask);
1460 int fp_count = POPCOUNT(fp_reg_mask);
1488 int core_count = POPCOUNT(core_reg_mask);
1489 int fp_count = POPCOUNT(fp_reg_mask);
1577 DCHECK_EQ(POPCOUNT(core_reg_mask) % 2, 0);
1653 const int num_core_spills = POPCOUNT(core_reg_mask);
1654 const int num_fp_spills = POPCOUNT(fp_reg_mask);
/art/compiler/dex/quick/
H A Dcodegen_util.cc1093 DCHECK_EQ(POPCOUNT(core_spill_mask_), 0);
1094 DCHECK_EQ(POPCOUNT(fp_spill_mask_), 0);

Completed in 296 milliseconds