Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/llvm/Config/Targets.def is written in an unsupported language. File is not indexed.

0001 /*===- llvm/Config/Targets.def - LLVM Target Architectures ------*- C++ -*-===*\
0002 |*                                                                            *|
0003 |* Part of the LLVM Project, under the Apache License v2.0 with LLVM          *|
0004 |* Exceptions.                                                                *|
0005 |* See https://llvm.org/LICENSE.txt for license information.                  *|
0006 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception                    *|
0007 |*                                                                            *|
0008 |*===----------------------------------------------------------------------===*|
0009 |*                                                                            *|
0010 |* This file enumerates all of the target architectures supported by          *|
0011 |* this build of LLVM. Clients of this file should define the                 *|
0012 |* LLVM_TARGET macro to be a function-like macro with a single                *|
0013 |* parameter (the name of the target); including this file will then          *|
0014 |* enumerate all of the targets.                                              *|
0015 |*                                                                            *|
0016 |* The set of targets supported by LLVM is generated at configuration         *|
0017 |* time, at which point this header is generated. Do not modify this          *|
0018 |* header directly.                                                           *|
0019 |*                                                                            *|
0020 \*===----------------------------------------------------------------------===*/
0021 
0022 #ifndef LLVM_TARGET
0023 #  error Please define the macro LLVM_TARGET(TargetName)
0024 #endif
0025 
0026 LLVM_TARGET(AArch64)
0027 LLVM_TARGET(AMDGPU)
0028 LLVM_TARGET(ARM)
0029 LLVM_TARGET(AVR)
0030 LLVM_TARGET(BPF)
0031 LLVM_TARGET(Hexagon)
0032 LLVM_TARGET(Lanai)
0033 LLVM_TARGET(LoongArch)
0034 LLVM_TARGET(Mips)
0035 LLVM_TARGET(MSP430)
0036 LLVM_TARGET(NVPTX)
0037 LLVM_TARGET(PowerPC)
0038 LLVM_TARGET(RISCV)
0039 LLVM_TARGET(Sparc)
0040 LLVM_TARGET(SPIRV)
0041 LLVM_TARGET(SystemZ)
0042 LLVM_TARGET(VE)
0043 LLVM_TARGET(WebAssembly)
0044 LLVM_TARGET(X86)
0045 LLVM_TARGET(XCore)
0046 
0047 
0048 #undef LLVM_TARGET