
* Add spec generation to offload-tblgen tool * This patch adds generation of Sphinx compatible reStructuedText utilizing the C domain to document the Offload API directly from the spec definition `.td` files. * Add Sphinx HTML documentation target * Introduces the `docs-offload-html` target when CMake is configured with `LLVM_ENABLE_SPHINX=ON` and `SPHINX_OUTPUT_HTML=ON`. Utilized `offload-tblgen -gen-spen` to generate Offload API specification docs.
28 lines
1.3 KiB
C++
28 lines
1.3 KiB
C++
//===- offload-tblgen/Generators.hpp - Offload generator declarations -----===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#pragma once
|
|
|
|
#include "llvm/TableGen/Record.h"
|
|
|
|
void EmitOffloadAPI(const llvm::RecordKeeper &Records, llvm::raw_ostream &OS);
|
|
void EmitOffloadDoc(const llvm::RecordKeeper &Records, llvm::raw_ostream &OS);
|
|
void EmitOffloadFuncNames(const llvm::RecordKeeper &Records,
|
|
llvm::raw_ostream &OS);
|
|
void EmitOffloadImplFuncDecls(const llvm::RecordKeeper &Records,
|
|
llvm::raw_ostream &OS);
|
|
void EmitOffloadEntryPoints(const llvm::RecordKeeper &Records,
|
|
llvm::raw_ostream &OS);
|
|
void EmitOffloadPrintHeader(const llvm::RecordKeeper &Records,
|
|
llvm::raw_ostream &OS);
|
|
void EmitOffloadExports(const llvm::RecordKeeper &Records,
|
|
llvm::raw_ostream &OS);
|
|
void EmitOffloadErrcodes(const llvm::RecordKeeper &Records,
|
|
llvm::raw_ostream &OS);
|
|
void EmitOffloadInfo(const llvm::RecordKeeper &Records, llvm::raw_ostream &OS);
|