Warning, /include/llvm/Config/TargetMCAs.def is written in an unsupported language. File is not indexed.
0001 /*===------ llvm/Config/TargetMCAs.def - LLVM Target MCAs -------*- 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 MCAs *|
0011 |* supported by this build of LLVM. Clients of this file should define *|
0012 |* the LLVM_TARGETMCA 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 MCAs. *|
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_TARGETMCA
0024 # error Please define the macro LLVM_TARGETMCA(TargetName)
0025 #endif
0026
0027 LLVM_TARGETMCA(AMDGPU)
0028 LLVM_TARGETMCA(RISCV)
0029 LLVM_TARGETMCA(X86)
0030
0031
0032 #undef LLVM_TARGETMCA