Keil™, An ARM® Company

Technical Support

C166: _PRIORD_ INTRINSIC LIBRARY ROUTINE


Information in this article applies to:

  • C166 Version 4.06

QUESTION

Is there a way in C to use the PRIOR assembly instruction to normalize a 32-bit value?

ANSWER

Yes. The _priord_ intrinsic library routine uses the PRIOR instruction to count the number of shifts required to normalize a 32-bit number. The return value is a number from 0 to 31 which indicates how many times the number must be shifted left before the MSB is set. For example:

#include <intrins.h>

void testprior (long val)  {
  volatile int temp;

  temp = _priord_ (val);
}

MORE INFORMATION

  • Refer to _priord_ in the C166 User's Guide.

SEE ALSO

Last Reviewed: Thursday, October 20, 2005


Did this article provide the answer you needed?
 
Yes
No
Not Sure