Path: blob/main/contrib/llvm-project/clang/lib/Headers/armintr.h
35233 views
/*===---- armintr.h - ARM Windows intrinsics -------------------------------===1*2* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3* See https://llvm.org/LICENSE.txt for license information.4* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5*6*===-----------------------------------------------------------------------===7*/89/* Only include this if we're compiling for the windows platform. */10#ifndef _MSC_VER11#include_next <armintr.h>12#else1314#ifndef __ARMINTR_H15#define __ARMINTR_H1617typedef enum18{19_ARM_BARRIER_SY = 0xF,20_ARM_BARRIER_ST = 0xE,21_ARM_BARRIER_ISH = 0xB,22_ARM_BARRIER_ISHST = 0xA,23_ARM_BARRIER_NSH = 0x7,24_ARM_BARRIER_NSHST = 0x6,25_ARM_BARRIER_OSH = 0x3,26_ARM_BARRIER_OSHST = 0x227} _ARMINTR_BARRIER_TYPE;2829#endif /* __ARMINTR_H */30#endif /* _MSC_VER */313233