LLVM 19.0.0git
AMDKernelCodeTUtils.h
Go to the documentation of this file.
1//===- AMDGPUKernelCodeTUtils.h - helpers for amd_kernel_code_t -*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9/// \file AMDKernelCodeTUtils.h
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_TARGET_AMDGPU_UTILS_AMDKERNELCODETUTILS_H
14#define LLVM_LIB_TARGET_AMDGPU_UTILS_AMDKERNELCODETUTILS_H
15
17
18namespace llvm {
19
20class MCAsmParser;
21class raw_ostream;
22class StringRef;
23
24void printAmdKernelCodeField(const amd_kernel_code_t &C, int FldIndex,
25 raw_ostream &OS);
26
27void dumpAmdKernelCode(const amd_kernel_code_t *C, raw_ostream &OS,
28 const char *tab);
29
30bool parseAmdKernelCodeField(StringRef ID, MCAsmParser &Parser,
31 amd_kernel_code_t &C, raw_ostream &Err);
32
33} // end namespace llvm
34
35#endif // LLVM_LIB_TARGET_AMDGPU_UTILS_AMDKERNELCODETUTILS_H
raw_pwrite_stream & OS
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void dumpAmdKernelCode(const amd_kernel_code_t *C, raw_ostream &OS, const char *tab)
void printAmdKernelCodeField(const amd_kernel_code_t &C, int FldIndex, raw_ostream &OS)
bool parseAmdKernelCodeField(StringRef ID, MCAsmParser &Parser, amd_kernel_code_t &C, raw_ostream &Err)
AMD Kernel Code Object (amd_kernel_code_t).