Warning, /include/llvm/Config/TargetExegesis.def is written in an unsupported language. File is not indexed.
0001 /*===----- llvm/Config/TargetExegesis.def - LLVM Target Exegesis-*- 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's of llvm-exegesis *|
0011 |* supported by this build of LLVM. Clients of this file should define *|
0012 |* the LLVM_EXEGISIS macro to be a function-like macro with a *|
0013 |* single parameter (the name of the target whose assembly can be *|
0014 |* generated); including this file will then enumerate all of the *|
0015 |* targets with target llvm-exegsis support. *|
0016 |* *|
0017 |* The set of targets supported by LLVM is generated at configuration *|
0018 |* time, at which point this header is generated. Do not modify this *|
0019 |* header directly. *|
0020 |* *|
0021 \*===----------------------------------------------------------------------===*/
0022
0023 #ifndef LLVM_EXEGESIS
0024 # error Please define the macro LLVM_EXEGESIS(TargetName)
0025 #endif
0026
0027 LLVM_EXEGESIS(AArch64)
0028 LLVM_EXEGESIS(Mips)
0029 LLVM_EXEGESIS(PowerPC)
0030 LLVM_EXEGESIS(RISCV)
0031 LLVM_EXEGESIS(X86)
0032
0033
0034 #undef LLVM_EXEGESIS