Warning, /include/llvm/Config/Disassemblers.def is written in an unsupported language. File is not indexed.
0001 /*===- llvm/Config/Disassemblers.def - LLVM Assembly Parsers ----*- 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 assembly-language parsers *|
0011 |* supported by this build of LLVM. Clients of this file should define *|
0012 |* the LLVM_DISASSEMBLER 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 assembly parsers. *|
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_DISASSEMBLER
0024 # error Please define the macro LLVM_DISASSEMBLER(TargetName)
0025 #endif
0026
0027 LLVM_DISASSEMBLER(AArch64)
0028 LLVM_DISASSEMBLER(AMDGPU)
0029 LLVM_DISASSEMBLER(ARM)
0030 LLVM_DISASSEMBLER(AVR)
0031 LLVM_DISASSEMBLER(BPF)
0032 LLVM_DISASSEMBLER(Hexagon)
0033 LLVM_DISASSEMBLER(Lanai)
0034 LLVM_DISASSEMBLER(LoongArch)
0035 LLVM_DISASSEMBLER(Mips)
0036 LLVM_DISASSEMBLER(MSP430)
0037 LLVM_DISASSEMBLER(PowerPC)
0038 LLVM_DISASSEMBLER(RISCV)
0039 LLVM_DISASSEMBLER(Sparc)
0040 LLVM_DISASSEMBLER(SystemZ)
0041 LLVM_DISASSEMBLER(VE)
0042 LLVM_DISASSEMBLER(WebAssembly)
0043 LLVM_DISASSEMBLER(X86)
0044 LLVM_DISASSEMBLER(XCore)
0045
0046
0047 #undef LLVM_DISASSEMBLER