[AMDGPU][AsmParser][NFC] Get rid of custom default operand handlers.
[llvm-project.git] / clang / lib / Headers / riscv_ntlh.h
blob9ce1709205835343ca81a30ff593bcb2054cc1fd
1 /*===---- riscv_ntlh.h - RISC-V NTLH intrinsics ----------------------------===
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-exception
7 *===-----------------------------------------------------------------------===
8 */
10 #ifndef __RISCV_NTLH_H
11 #define __RISCV_NTLH_H
13 #ifndef __riscv_zihintntl
14 #error "NTLH intrinsics require the NTLH extension."
15 #endif
17 enum {
18 __RISCV_NTLH_INNERMOST_PRIVATE = 2,
19 __RISCV_NTLH_ALL_PRIVATE,
20 __RISCV_NTLH_INNERMOST_SHARED,
21 __RISCV_NTLH_ALL
24 #define __riscv_ntl_load(PTR, DOMAIN) __builtin_riscv_ntl_load((PTR), (DOMAIN))
25 #define __riscv_ntl_store(PTR, VAL, DOMAIN) \
26 __builtin_riscv_ntl_store((PTR), (VAL), (DOMAIN))
28 #endif