clang 19.0.0git
CGCUDARuntime.cpp
Go to the documentation of this file.
1//===----- CGCUDARuntime.cpp - Interface to CUDA Runtimes -----------------===//
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// This provides an abstract class for CUDA code generation. Concrete
10// subclasses of this implement code generation for specific CUDA
11// runtime libraries.
12//
13//===----------------------------------------------------------------------===//
14
15#include "CGCUDARuntime.h"
16#include "CGCall.h"
17#include "CodeGenFunction.h"
18#include "clang/AST/Decl.h"
19#include "clang/AST/ExprCXX.h"
20
21using namespace clang;
22using namespace CodeGen;
23
25
27 const CUDAKernelCallExpr *E,
28 ReturnValueSlot ReturnValue) {
29 llvm::BasicBlock *ConfigOKBlock = CGF.createBasicBlock("kcall.configok");
30 llvm::BasicBlock *ContBlock = CGF.createBasicBlock("kcall.end");
31
33 CGF.EmitBranchOnBoolExpr(E->getConfig(), ContBlock, ConfigOKBlock,
34 /*TrueCount=*/0);
35
36 eval.begin(CGF);
37 CGF.EmitBlock(ConfigOKBlock);
38 CGF.EmitSimpleCallExpr(E, ReturnValue);
39 CGF.EmitBranch(ContBlock);
40
41 CGF.EmitBlock(ContBlock);
42 eval.end(CGF);
43
44 return RValue::get(nullptr);
45}
Defines the clang::Expr interface and subclasses for C++ expressions.
Represents a call to a CUDA kernel function.
Definition: ExprCXX.h:231
const CallExpr * getConfig() const
Definition: ExprCXX.h:257
virtual RValue EmitCUDAKernelCallExpr(CodeGenFunction &CGF, const CUDAKernelCallExpr *E, ReturnValueSlot ReturnValue)
An object to manage conditionally-evaluated expressions.
CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code...
void EmitBranchOnBoolExpr(const Expr *Cond, llvm::BasicBlock *TrueBlock, llvm::BasicBlock *FalseBlock, uint64_t TrueCount, Stmt::Likelihood LH=Stmt::LH_None, const Expr *ConditionalOp=nullptr)
EmitBranchOnBoolExpr - Emit a branch on a boolean condition (e.g.
llvm::BasicBlock * createBasicBlock(const Twine &name="", llvm::Function *parent=nullptr, llvm::BasicBlock *before=nullptr)
createBasicBlock - Create an LLVM basic block.
void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false)
EmitBlock - Emit the given block.
RValue EmitSimpleCallExpr(const CallExpr *E, ReturnValueSlot ReturnValue)
void EmitBranch(llvm::BasicBlock *Block)
EmitBranch - Emit a branch to the specified basic block from the current insert block,...
RValue - This trivial value class is used to represent the result of an expression that is evaluated.
Definition: CGValue.h:41
static RValue get(llvm::Value *V)
Definition: CGValue.h:97
ReturnValueSlot - Contains the address where the return value of a function can be stored,...
Definition: CGCall.h:356
The JSON file list parser is used to communicate input to InstallAPI.