Skip to content

[Basic] Manually implement popcount when not available #73384

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions include/swift/Basic/MathUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
#ifndef SWIFT_BASIC_MATH_UTILS_H
#define SWIFT_BASIC_MATH_UTILS_H

#include "Compiler.h"
#include <cstddef>
#include <cstdint>

#if SWIFT_COMPILER_IS_MSVC
#include <intrin.h>
Expand All @@ -38,11 +40,17 @@ static inline size_t roundUpToAlignMask(size_t size, size_t alignMask) {
}

static inline unsigned popcount(unsigned value) {
#if SWIFT_COMPILER_IS_MSVC
#if SWIFT_COMPILER_IS_MSVC && (defined(_M_IX86) || defined(_M_X64))
// The __popcnt intrinsic is only available when targetting x86{_64} with MSVC.
return __popcnt(value);
#else
// Assume we have a compiler with this intrinsic.
#elif __has_builtin(__builtin_popcount)
return __builtin_popcount(value);
#else
// From llvm/ADT/bit.h which the runtime doesn't have access to (yet?)
uint32_t v = value;
v = v - ((v >> 1) & 0x55555555);
v = (v & 0x33333333) + ((v >> 2) & 0x33333333);
return int(((v + (v >> 4) & 0xF0F0F0F) * 0x1010101) >> 24);
#endif
}

Expand Down