[SLP][REVEC] The vectorized result for ShuffleVector may not be ShuffleVectorInst...
[llvm-project.git] / libc / config / gpu / app.h
blob148c51b702203f7ada6b0cb700f756d365db35c2
1 //===-- Classes to capture properites of GPU applications -------*- 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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIBC_CONFIG_GPU_APP_H
10 #define LLVM_LIBC_CONFIG_GPU_APP_H
12 #include "src/__support/macros/config.h"
13 #include "src/__support/macros/properties/architectures.h"
15 #include <stdint.h>
17 namespace LIBC_NAMESPACE_DECL {
19 // TODO: Move other global values here and export them to the host.
20 struct DataEnvironment {
21 uintptr_t *env_ptr;
24 extern DataEnvironment app;
26 } // namespace LIBC_NAMESPACE_DECL
28 #endif // LLVM_LIBC_CONFIG_GPU_APP_H