LLVM target specific built-ins

Hi all,

Does someone knows if there is an easy way to list LLMV built-ins that are target specific ?

For instance I would like to know all LLVM built-ins that are implemented for ARM NEON unit, how can I list them ? get their prototype ?

Thanks for your answers

Best Regards

Seb

The easiest way is probably to look at the source tree and look at the intrinsicsARM.td in llvm/include/llvm directory.

Micah

Or just look at the generated arm_neon.h header file.

-Jim