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