17 lines · plain
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9_CLC_OVERLOAD _CLC_DEF __CLC_U_GENTYPE10__clc_bitfield_extract_unsigned(__CLC_GENTYPE base, uint offset, uint count) {11 if (count == 0)12 return 0;13 __CLC_U_GENTYPE result = __CLC_AS_U_GENTYPE(base)14 << (__CLC_GENSIZE - offset - count);15 return result >> (__CLC_GENSIZE - count);16}17