Path: blob/main/system/lib/llvm-libc/config/gpu/app.h
6168 views
//===-- Classes to capture properites of GPU applications -------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_LIBC_CONFIG_GPU_APP_H9#define LLVM_LIBC_CONFIG_GPU_APP_H1011#include "src/__support/macros/config.h"12#include "src/__support/macros/properties/architectures.h"1314#include <stdint.h>1516namespace LIBC_NAMESPACE_DECL {1718// TODO: Move other global values here and export them to the host.19struct DataEnvironment {20uintptr_t *env_ptr;21};2223extern DataEnvironment app;2425} // namespace LIBC_NAMESPACE_DECL2627#endif // LLVM_LIBC_CONFIG_GPU_APP_H282930