SYS/BIOS  7.00
Intrinsics.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020, Texas Instruments Incorporated - http://www.ti.com
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  */
33 
34 /*
35  * ======== Intrinsics.h ========
36  */
37 
38 #ifndef ti_sysbios_knl_Intrinsics__include
39 #define ti_sysbios_knl_Intrinsics__include
40 
42 
43 #define ti_sysbios_knl_Intrinsics_long_names
44 #include "Intrinsics_defs.h"
45 
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
49 
50 #if (defined(__ARM_ARCH) && ((__ARM_ARCH == 6) && (__ARM_ARCH_PROFILE == 'M'))) || \
51  (defined(__CORE__) && (__CORE__ == __ARM6M__)) || \
52  defined(__ARM_ARCH_6M__)
53 /*
54  * ======== Intrinsics_maxbit ========
55  */
56 static inline unsigned int Intrinsics_maxbit(unsigned int bits)
57 {
58  unsigned int maxbit = 0;
59 
60  if (bits >> 16) {
61  bits >>= 16;
62  maxbit += 16;
63  }
64 
65  if (bits >> 8) {
66  bits >>= 8;
67  maxbit += 8;
68  }
69 
70  if (bits >> 4) {
71  bits >>= 4;
72  maxbit += 4;
73  }
74 
75  if (bits >> 2) {
76  bits >>= 2;
77  maxbit += 2;
78  }
79 
80  if (bits >> 1) {
81  maxbit += 1;
82  }
83 
84  return (maxbit);
85 }
86 
87 #elif defined(__ti__) && !defined(__clang__)
88 extern int _norm(int val);
89 static inline unsigned int Intrinsics_maxbit(unsigned int bits)
90 {
91  return ((unsigned int)(int)(31 - _norm((int)(bits))));
92 }
93 #else
94 static inline unsigned int Intrinsics_maxbit(unsigned int bits)
95 {
96  unsigned int retVal;
97 
98 #if defined(__IAR_SYSTEMS_ICC__)
99  asm volatile (
100 #else
101  __asm__ __volatile__ (
102 #endif
103  "clz %0, %1\n\t"
104  "rsb %0, %0, #31"
105  : "=r" (retVal)
106  : "r" (bits)
107  : "cc"
108  );
109  return retVal;
110 }
111 #endif
112 
113 #ifdef __cplusplus
114 }
115 #endif
116 
117 #endif /* ti_sysbios_knl_Intrinsics__include */
118 
119 #undef ti_sysbios_knl_Intrinsics_long_names
120 #include "Intrinsics_defs.h"
Basic constants and types.
static unsigned int Intrinsics_maxbit(unsigned int bits)
Definition: Intrinsics.h:94
© Copyright 1995-2023, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale