diff options
author | Vladimir Marko <vmarko@google.com> | 2014-05-02 11:53:22 +0100 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2014-05-02 12:21:02 +0100 |
commit | 8194963098247be6bca9cc4a54dbfa65c73e8ccc (patch) | |
tree | 547cc708e06e6541676b17066023ae6f07b2049b /runtime/arch/arm/context_arm.cc | |
parent | 56a341a82ece9aa4f2a071629f3e1fd1adf988ae (diff) | |
download | art-8194963098247be6bca9cc4a54dbfa65c73e8ccc.zip art-8194963098247be6bca9cc4a54dbfa65c73e8ccc.tar.gz art-8194963098247be6bca9cc4a54dbfa65c73e8ccc.tar.bz2 |
Replace CountOneBits and __builtin_popcount with POPCOUNT.
Clean up utils.h, make some functions constexpr.
Change-Id: I2399100280cbce81c3c4f5765f0680c1ddcb5883
Diffstat (limited to 'runtime/arch/arm/context_arm.cc')
-rw-r--r-- | runtime/arch/arm/context_arm.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/arch/arm/context_arm.cc b/runtime/arch/arm/context_arm.cc index 102e126..0e1b25e 100644 --- a/runtime/arch/arm/context_arm.cc +++ b/runtime/arch/arm/context_arm.cc @@ -44,8 +44,8 @@ void ArmContext::FillCalleeSaves(const StackVisitor& fr) { mirror::ArtMethod* method = fr.GetMethod(); uint32_t core_spills = method->GetCoreSpillMask(); uint32_t fp_core_spills = method->GetFpSpillMask(); - size_t spill_count = __builtin_popcount(core_spills); - size_t fp_spill_count = __builtin_popcount(fp_core_spills); + size_t spill_count = POPCOUNT(core_spills); + size_t fp_spill_count = POPCOUNT(fp_core_spills); size_t frame_size = method->GetFrameSizeInBytes(); if (spill_count > 0) { // Lowest number spill is farthest away, walk registers and fill into context |