diff options
author | Ekaterina Romanova <katya_romanova@playstation.sony.com> | 2016-12-09 18:35:50 +0000 |
---|---|---|
committer | Ekaterina Romanova <katya_romanova@playstation.sony.com> | 2016-12-09 18:35:50 +0000 |
commit | 0c1c3bbc78e4548831e307c0e527449254a2bbbb (patch) | |
tree | 138c289a4ebfca4aff0c2a538448ac58acd96a80 /clang/lib/Headers/pmmintrin.h | |
parent | 7b00cf4706f7dd855096ef20313617fd89323337 (diff) | |
download | bcm5719-llvm-0c1c3bbc78e4548831e307c0e527449254a2bbbb.tar.gz bcm5719-llvm-0c1c3bbc78e4548831e307c0e527449254a2bbbb.zip |
[DOXYGEN] Improved doxygen comments for x86 intrinsics headers.
Tagged instruction names with <c> INSTR_NAME </c> to display them in typewriter font.
In the past, \c command was used, unfortunately it applied to only one word.
<c> .. </c> has the same meaning, but applies to all words in between the tags.
llvm-svn: 289249
Diffstat (limited to 'clang/lib/Headers/pmmintrin.h')
-rw-r--r-- | clang/lib/Headers/pmmintrin.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/clang/lib/Headers/pmmintrin.h b/clang/lib/Headers/pmmintrin.h index 5b1058069c4..5f201fb53bd 100644 --- a/clang/lib/Headers/pmmintrin.h +++ b/clang/lib/Headers/pmmintrin.h @@ -37,7 +37,7 @@ /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c VLDDQU instruction. +/// This intrinsic corresponds to the <c> VLDDQU </c> instruction. /// /// \param __p /// A pointer to a 128-bit integer vector containing integer values. @@ -53,7 +53,7 @@ _mm_lddqu_si128(__m128i const *__p) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c VADDSUBPS instruction. +/// This intrinsic corresponds to the <c> VADDSUBPS </c> instruction. /// /// \param __a /// A 128-bit vector of [4 x float] containing the left source operand. @@ -72,7 +72,7 @@ _mm_addsub_ps(__m128 __a, __m128 __b) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c VHADDPS instruction. +/// This intrinsic corresponds to the <c> VHADDPS </c> instruction. /// /// \param __a /// A 128-bit vector of [4 x float] containing one of the source operands. @@ -95,7 +95,7 @@ _mm_hadd_ps(__m128 __a, __m128 __b) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c VHSUBPS instruction. +/// This intrinsic corresponds to the <c> VHSUBPS </c> instruction. /// /// \param __a /// A 128-bit vector of [4 x float] containing one of the source operands. @@ -123,7 +123,7 @@ _mm_hsub_ps(__m128 __a, __m128 __b) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c VMOVSHDUP instruction. +/// This intrinsic corresponds to the <c> VMOVSHDUP </c> instruction. /// /// \param __a /// A 128-bit vector of [4 x float]. @@ -145,7 +145,7 @@ _mm_movehdup_ps(__m128 __a) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c VMOVSLDUP instruction. +/// This intrinsic corresponds to the <c> VMOVSLDUP </c> instruction. /// /// \param __a /// A 128-bit vector of [4 x float]. @@ -162,7 +162,7 @@ _mm_moveldup_ps(__m128 __a) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c VADDSUBPD instruction. +/// This intrinsic corresponds to the <c> VADDSUBPD </c> instruction. /// /// \param __a /// A 128-bit vector of [2 x double] containing the left source operand. @@ -181,7 +181,7 @@ _mm_addsub_pd(__m128d __a, __m128d __b) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c VHADDPD instruction. +/// This intrinsic corresponds to the <c> VHADDPD </c> instruction. /// /// \param __a /// A 128-bit vector of [2 x double] containing one of the source operands. @@ -204,7 +204,7 @@ _mm_hadd_pd(__m128d __a, __m128d __b) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c VHSUBPD instruction. +/// This intrinsic corresponds to the <c> VHSUBPD </c> instruction. /// /// \param __a /// A 128-bit vector of [2 x double] containing one of the source operands. @@ -231,7 +231,7 @@ _mm_hsub_pd(__m128d __a, __m128d __b) /// __m128d _mm_loaddup_pd(double const * dp); /// \endcode /// -/// This intrinsic corresponds to the \c VMOVDDUP instruction. +/// This intrinsic corresponds to the <c> VMOVDDUP </c> instruction. /// /// \param dp /// A pointer to a double-precision value to be moved and duplicated. @@ -245,7 +245,7 @@ _mm_hsub_pd(__m128d __a, __m128d __b) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c VMOVDDUP instruction. +/// This intrinsic corresponds to the <c> VMOVDDUP </c> instruction. /// /// \param __a /// A 128-bit vector of [2 x double]. Bits [63:0] are written to bits @@ -272,7 +272,7 @@ _mm_movedup_pd(__m128d __a) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c MONITOR instruction. +/// This intrinsic corresponds to the <c> MONITOR </c> instruction. /// /// \param __p /// The memory range to be monitored. The size of the range is determined by @@ -293,7 +293,7 @@ _mm_monitor(void const *__p, unsigned __extensions, unsigned __hints) /// /// \headerfile <x86intrin.h> /// -/// This intrinsic corresponds to the \c MWAIT instruction. +/// This intrinsic corresponds to the <c> MWAIT </c> instruction. /// /// \param __extensions /// Optional extensions for the monitoring state, which may vary by |