Loom C API
Public Loom compiler C API
Loading...
Searching...
No Matches
target/llvmir/base.h
Go to the documentation of this file.
1// Copyright 2026 The IREE Authors
2//
3// Licensed 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#ifndef LOOMC_TARGET_LLVMIR_BASE_H_
8#define LOOMC_TARGET_LLVMIR_BASE_H_
9
10#include "loomc/target.h"
11
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
25#define LOOMC_ARTIFACT_FORMAT_LLVMIR_TEXT "llvmir-text"
26
28#define LOOMC_ARTIFACT_FORMAT_LLVMIR_BITCODE "llvmir-bitcode"
29
41 loomc_allocator_t allocator,
42 loomc_target_environment_t** out_target_environment);
43
44#ifdef __cplusplus
45} // extern "C"
46#endif
47
48#endif // LOOMC_TARGET_LLVMIR_BASE_H_
#define LOOMC_API_EXPORT
Exports a public Loom C API symbol from a shared library build.
Definition base.h:34
struct iree_status_handle_t * loomc_status_t
Opaque status handle.
Definition base.h:55
Host allocator used for persistent Loom object storage.
Definition base.h:375
loomc_status_t loomc_target_environment_create_llvmir(loomc_allocator_t allocator, loomc_target_environment_t **out_target_environment)
Creates a target environment containing the LLVMIR target package.
Prepared target environments and target lowering pipelines.
struct loomc_target_environment_t loomc_target_environment_t
Prepared immutable target environment.
Definition target.h:123