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
16struct amd_kernel_code_t;
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
36

source code of llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.h