2016-02-08 23:59:20 +08:00
|
|
|
//===----- CGOpenMPRuntimeNVPTX.h - Interface to OpenMP NVPTX Runtimes ----===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This provides a class for OpenMP runtime code generation specialized to NVPTX
|
|
|
|
// targets.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CLANG_LIB_CODEGEN_CGOPENMPRUNTIMENVPTX_H
|
|
|
|
#define LLVM_CLANG_LIB_CODEGEN_CGOPENMPRUNTIMENVPTX_H
|
|
|
|
|
|
|
|
#include "CGOpenMPRuntime.h"
|
2016-03-22 09:48:56 +08:00
|
|
|
#include "CodeGenFunction.h"
|
|
|
|
#include "clang/AST/StmtOpenMP.h"
|
|
|
|
#include "llvm/IR/CallSite.h"
|
2016-02-08 23:59:20 +08:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace CodeGen {
|
|
|
|
|
|
|
|
class CGOpenMPRuntimeNVPTX : public CGOpenMPRuntime {
|
2017-01-05 23:24:05 +08:00
|
|
|
private:
|
2017-01-10 23:42:51 +08:00
|
|
|
// Parallel outlined function work for workers to execute.
|
|
|
|
llvm::SmallVector<llvm::Function *, 16> Work;
|
|
|
|
|
2016-12-23 03:44:05 +08:00
|
|
|
struct EntryFunctionState {
|
|
|
|
llvm::BasicBlock *ExitBB = nullptr;
|
2016-03-29 13:34:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class WorkerFunctionState {
|
|
|
|
public:
|
|
|
|
llvm::Function *WorkerFn;
|
|
|
|
const CGFunctionInfo *CGFI;
|
|
|
|
|
|
|
|
WorkerFunctionState(CodeGenModule &CGM);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void createWorkerFunction(CodeGenModule &CGM);
|
|
|
|
};
|
|
|
|
|
2017-01-19 03:35:00 +08:00
|
|
|
bool isInSpmdExecutionMode() const;
|
|
|
|
|
2016-03-22 09:48:56 +08:00
|
|
|
/// \brief Emit the worker function for the current target region.
|
|
|
|
void emitWorkerFunction(WorkerFunctionState &WST);
|
|
|
|
|
|
|
|
/// \brief Helper for worker function. Emit body of worker loop.
|
|
|
|
void emitWorkerLoop(CodeGenFunction &CGF, WorkerFunctionState &WST);
|
|
|
|
|
2017-01-05 23:24:05 +08:00
|
|
|
/// \brief Helper for generic target entry function. Guide the master and
|
|
|
|
/// worker threads to their respective locations.
|
|
|
|
void emitGenericEntryHeader(CodeGenFunction &CGF, EntryFunctionState &EST,
|
|
|
|
WorkerFunctionState &WST);
|
|
|
|
|
|
|
|
/// \brief Signal termination of OMP execution for generic target entry
|
|
|
|
/// function.
|
|
|
|
void emitGenericEntryFooter(CodeGenFunction &CGF, EntryFunctionState &EST);
|
|
|
|
|
2017-01-19 03:35:00 +08:00
|
|
|
/// \brief Helper for Spmd mode target directive's entry function.
|
|
|
|
void emitSpmdEntryHeader(CodeGenFunction &CGF, EntryFunctionState &EST,
|
|
|
|
const OMPExecutableDirective &D);
|
|
|
|
|
|
|
|
/// \brief Signal termination of Spmd mode execution.
|
|
|
|
void emitSpmdEntryFooter(CodeGenFunction &CGF, EntryFunctionState &EST);
|
|
|
|
|
2017-02-16 22:25:35 +08:00
|
|
|
/// \brief Returns specified OpenMP runtime function for the current OpenMP
|
|
|
|
/// implementation. Specialized for the NVPTX device.
|
|
|
|
/// \param Function OpenMP runtime function.
|
|
|
|
/// \return Specified function.
|
|
|
|
llvm::Constant *createNVPTXRuntimeFunction(unsigned Function);
|
|
|
|
|
2016-03-22 09:48:56 +08:00
|
|
|
//
|
|
|
|
// Base class overrides.
|
|
|
|
//
|
|
|
|
|
|
|
|
/// \brief Creates offloading entry for the provided entry ID \a ID,
|
[OpenMP] Add fields for flags in the offload entry descriptor.
Summary:
This patch adds two fields to the offload entry descriptor. One field is meant to signal Ctors/Dtors and `link` global variables, and the other is reserved for runtime library use.
Currently, these fields are only filled with zeros in the current code generation, but that will change when `declare target` is added.
The reason, we are adding these fields now is to make the code generation consistent with the runtime library proposal under review in https://reviews.llvm.org/D14031.
Reviewers: ABataev, hfinkel, carlo.bertolli, kkwli0, arpith-jacob, Hahnfeld
Subscribers: cfe-commits, caomhin, jholewinski
Differential Revision: https://reviews.llvm.org/D28298
llvm-svn: 291124
2017-01-06 00:02:49 +08:00
|
|
|
/// address \a Addr, size \a Size, and flags \a Flags.
|
2016-03-22 09:48:56 +08:00
|
|
|
void createOffloadEntry(llvm::Constant *ID, llvm::Constant *Addr,
|
[OpenMP] Add fields for flags in the offload entry descriptor.
Summary:
This patch adds two fields to the offload entry descriptor. One field is meant to signal Ctors/Dtors and `link` global variables, and the other is reserved for runtime library use.
Currently, these fields are only filled with zeros in the current code generation, but that will change when `declare target` is added.
The reason, we are adding these fields now is to make the code generation consistent with the runtime library proposal under review in https://reviews.llvm.org/D14031.
Reviewers: ABataev, hfinkel, carlo.bertolli, kkwli0, arpith-jacob, Hahnfeld
Subscribers: cfe-commits, caomhin, jholewinski
Differential Revision: https://reviews.llvm.org/D28298
llvm-svn: 291124
2017-01-06 00:02:49 +08:00
|
|
|
uint64_t Size, int32_t Flags = 0) override;
|
2016-03-22 09:48:56 +08:00
|
|
|
|
2017-01-05 23:24:05 +08:00
|
|
|
/// \brief Emit outlined function specialized for the Fork-Join
|
|
|
|
/// programming model for applicable target directives on the NVPTX device.
|
|
|
|
/// \param D Directive to emit.
|
|
|
|
/// \param ParentName Name of the function that encloses the target region.
|
|
|
|
/// \param OutlinedFn Outlined function value to be defined by this call.
|
|
|
|
/// \param OutlinedFnID Outlined function ID value to be defined by this call.
|
|
|
|
/// \param IsOffloadEntry True if the outlined function is an offload entry.
|
|
|
|
/// An outlined function may not be an entry if, e.g. the if clause always
|
|
|
|
/// evaluates to false.
|
|
|
|
void emitGenericKernel(const OMPExecutableDirective &D, StringRef ParentName,
|
|
|
|
llvm::Function *&OutlinedFn,
|
|
|
|
llvm::Constant *&OutlinedFnID, bool IsOffloadEntry,
|
|
|
|
const RegionCodeGenTy &CodeGen);
|
|
|
|
|
2017-01-19 03:35:00 +08:00
|
|
|
/// \brief Emit outlined function specialized for the Single Program
|
|
|
|
/// Multiple Data programming model for applicable target directives on the
|
|
|
|
/// NVPTX device.
|
|
|
|
/// \param D Directive to emit.
|
|
|
|
/// \param ParentName Name of the function that encloses the target region.
|
|
|
|
/// \param OutlinedFn Outlined function value to be defined by this call.
|
|
|
|
/// \param OutlinedFnID Outlined function ID value to be defined by this call.
|
|
|
|
/// \param IsOffloadEntry True if the outlined function is an offload entry.
|
|
|
|
/// \param CodeGen Object containing the target statements.
|
|
|
|
/// An outlined function may not be an entry if, e.g. the if clause always
|
|
|
|
/// evaluates to false.
|
|
|
|
void emitSpmdKernel(const OMPExecutableDirective &D, StringRef ParentName,
|
|
|
|
llvm::Function *&OutlinedFn,
|
|
|
|
llvm::Constant *&OutlinedFnID, bool IsOffloadEntry,
|
|
|
|
const RegionCodeGenTy &CodeGen);
|
|
|
|
|
2016-03-22 09:48:56 +08:00
|
|
|
/// \brief Emit outlined function for 'target' directive on the NVPTX
|
|
|
|
/// device.
|
|
|
|
/// \param D Directive to emit.
|
|
|
|
/// \param ParentName Name of the function that encloses the target region.
|
|
|
|
/// \param OutlinedFn Outlined function value to be defined by this call.
|
|
|
|
/// \param OutlinedFnID Outlined function ID value to be defined by this call.
|
|
|
|
/// \param IsOffloadEntry True if the outlined function is an offload entry.
|
|
|
|
/// An outlined function may not be an entry if, e.g. the if clause always
|
|
|
|
/// evaluates to false.
|
|
|
|
void emitTargetOutlinedFunction(const OMPExecutableDirective &D,
|
|
|
|
StringRef ParentName,
|
|
|
|
llvm::Function *&OutlinedFn,
|
|
|
|
llvm::Constant *&OutlinedFnID,
|
2016-03-29 13:34:15 +08:00
|
|
|
bool IsOffloadEntry,
|
|
|
|
const RegionCodeGenTy &CodeGen) override;
|
2016-03-22 09:48:56 +08:00
|
|
|
|
2017-01-10 23:42:51 +08:00
|
|
|
/// \brief Emits code for parallel or serial call of the \a OutlinedFn with
|
|
|
|
/// variables captured in a record which address is stored in \a
|
|
|
|
/// CapturedStruct.
|
|
|
|
/// This call is for the Generic Execution Mode.
|
|
|
|
/// \param OutlinedFn Outlined function to be run in parallel threads. Type of
|
|
|
|
/// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*).
|
|
|
|
/// \param CapturedVars A pointer to the record with the references to
|
|
|
|
/// variables used in \a OutlinedFn function.
|
|
|
|
/// \param IfCond Condition in the associated 'if' clause, if it was
|
|
|
|
/// specified, nullptr otherwise.
|
|
|
|
void emitGenericParallelCall(CodeGenFunction &CGF, SourceLocation Loc,
|
|
|
|
llvm::Value *OutlinedFn,
|
|
|
|
ArrayRef<llvm::Value *> CapturedVars,
|
|
|
|
const Expr *IfCond);
|
|
|
|
|
2017-01-19 03:35:00 +08:00
|
|
|
/// \brief Emits code for parallel or serial call of the \a OutlinedFn with
|
|
|
|
/// variables captured in a record which address is stored in \a
|
|
|
|
/// CapturedStruct.
|
|
|
|
/// This call is for a parallel directive within an SPMD target directive.
|
|
|
|
/// \param OutlinedFn Outlined function to be run in parallel threads. Type of
|
|
|
|
/// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*).
|
|
|
|
/// \param CapturedVars A pointer to the record with the references to
|
|
|
|
/// variables used in \a OutlinedFn function.
|
|
|
|
/// \param IfCond Condition in the associated 'if' clause, if it was
|
|
|
|
/// specified, nullptr otherwise.
|
|
|
|
///
|
|
|
|
void emitSpmdParallelCall(CodeGenFunction &CGF, SourceLocation Loc,
|
|
|
|
llvm::Value *OutlinedFn,
|
|
|
|
ArrayRef<llvm::Value *> CapturedVars,
|
|
|
|
const Expr *IfCond);
|
|
|
|
|
2017-01-10 23:42:51 +08:00
|
|
|
protected:
|
|
|
|
/// \brief Get the function name of an outlined region.
|
|
|
|
// The name can be customized depending on the target.
|
|
|
|
//
|
|
|
|
StringRef getOutlinedHelperName() const override {
|
|
|
|
return "__omp_outlined__";
|
|
|
|
}
|
|
|
|
|
2016-02-08 23:59:20 +08:00
|
|
|
public:
|
|
|
|
explicit CGOpenMPRuntimeNVPTX(CodeGenModule &CGM);
|
2016-04-04 23:55:02 +08:00
|
|
|
|
2017-01-26 00:55:10 +08:00
|
|
|
/// \brief Emit call to void __kmpc_push_proc_bind(ident_t *loc, kmp_int32
|
|
|
|
/// global_tid, int proc_bind) to generate code for 'proc_bind' clause.
|
|
|
|
virtual void emitProcBindClause(CodeGenFunction &CGF,
|
|
|
|
OpenMPProcBindClauseKind ProcBind,
|
|
|
|
SourceLocation Loc) override;
|
|
|
|
|
2017-01-25 09:18:34 +08:00
|
|
|
/// \brief Emits call to void __kmpc_push_num_threads(ident_t *loc, kmp_int32
|
|
|
|
/// global_tid, kmp_int32 num_threads) to generate code for 'num_threads'
|
|
|
|
/// clause.
|
|
|
|
/// \param NumThreads An integer value of threads.
|
|
|
|
virtual void emitNumThreadsClause(CodeGenFunction &CGF,
|
|
|
|
llvm::Value *NumThreads,
|
|
|
|
SourceLocation Loc) override;
|
|
|
|
|
2016-04-04 23:55:02 +08:00
|
|
|
/// \brief This function ought to emit, in the general case, a call to
|
|
|
|
// the openmp runtime kmpc_push_num_teams. In NVPTX backend it is not needed
|
|
|
|
// as these numbers are obtained through the PTX grid and block configuration.
|
|
|
|
/// \param NumTeams An integer expression of teams.
|
|
|
|
/// \param ThreadLimit An integer expression of threads.
|
|
|
|
void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams,
|
|
|
|
const Expr *ThreadLimit, SourceLocation Loc) override;
|
|
|
|
|
|
|
|
/// \brief Emits inlined function for the specified OpenMP parallel
|
2017-01-19 02:18:53 +08:00
|
|
|
// directive.
|
2016-04-04 23:55:02 +08:00
|
|
|
/// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
|
|
|
|
/// kmp_int32 BoundID, struct context_vars*).
|
|
|
|
/// \param D OpenMP directive.
|
|
|
|
/// \param ThreadIDVar Variable for thread id in the current OpenMP region.
|
|
|
|
/// \param InnermostKind Kind of innermost directive (for simple directives it
|
|
|
|
/// is a directive itself, for combined - its innermost directive).
|
|
|
|
/// \param CodeGen Code generation sequence for the \a D directive.
|
|
|
|
llvm::Value *
|
2017-01-19 02:18:53 +08:00
|
|
|
emitParallelOutlinedFunction(const OMPExecutableDirective &D,
|
|
|
|
const VarDecl *ThreadIDVar,
|
|
|
|
OpenMPDirectiveKind InnermostKind,
|
|
|
|
const RegionCodeGenTy &CodeGen) override;
|
|
|
|
|
|
|
|
/// \brief Emits inlined function for the specified OpenMP teams
|
|
|
|
// directive.
|
|
|
|
/// \a D. This outlined function has type void(*)(kmp_int32 *ThreadID,
|
|
|
|
/// kmp_int32 BoundID, struct context_vars*).
|
|
|
|
/// \param D OpenMP directive.
|
|
|
|
/// \param ThreadIDVar Variable for thread id in the current OpenMP region.
|
|
|
|
/// \param InnermostKind Kind of innermost directive (for simple directives it
|
|
|
|
/// is a directive itself, for combined - its innermost directive).
|
|
|
|
/// \param CodeGen Code generation sequence for the \a D directive.
|
|
|
|
llvm::Value *
|
|
|
|
emitTeamsOutlinedFunction(const OMPExecutableDirective &D,
|
|
|
|
const VarDecl *ThreadIDVar,
|
|
|
|
OpenMPDirectiveKind InnermostKind,
|
|
|
|
const RegionCodeGenTy &CodeGen) override;
|
2016-04-04 23:55:02 +08:00
|
|
|
|
|
|
|
/// \brief Emits code for teams call of the \a OutlinedFn with
|
|
|
|
/// variables captured in a record which address is stored in \a
|
|
|
|
/// CapturedStruct.
|
|
|
|
/// \param OutlinedFn Outlined function to be run by team masters. Type of
|
|
|
|
/// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*).
|
|
|
|
/// \param CapturedVars A pointer to the record with the references to
|
|
|
|
/// variables used in \a OutlinedFn function.
|
|
|
|
///
|
|
|
|
void emitTeamsCall(CodeGenFunction &CGF, const OMPExecutableDirective &D,
|
|
|
|
SourceLocation Loc, llvm::Value *OutlinedFn,
|
|
|
|
ArrayRef<llvm::Value *> CapturedVars) override;
|
2017-01-10 23:42:51 +08:00
|
|
|
|
|
|
|
/// \brief Emits code for parallel or serial call of the \a OutlinedFn with
|
|
|
|
/// variables captured in a record which address is stored in \a
|
|
|
|
/// CapturedStruct.
|
|
|
|
/// \param OutlinedFn Outlined function to be run in parallel threads. Type of
|
|
|
|
/// this function is void(*)(kmp_int32 *, kmp_int32, struct context_vars*).
|
|
|
|
/// \param CapturedVars A pointer to the record with the references to
|
|
|
|
/// variables used in \a OutlinedFn function.
|
|
|
|
/// \param IfCond Condition in the associated 'if' clause, if it was
|
|
|
|
/// specified, nullptr otherwise.
|
|
|
|
void emitParallelCall(CodeGenFunction &CGF, SourceLocation Loc,
|
|
|
|
llvm::Value *OutlinedFn,
|
|
|
|
ArrayRef<llvm::Value *> CapturedVars,
|
|
|
|
const Expr *IfCond) override;
|
2017-01-19 03:35:00 +08:00
|
|
|
|
2017-02-16 22:25:35 +08:00
|
|
|
public:
|
2017-01-19 03:35:00 +08:00
|
|
|
/// Target codegen is specialized based on two programming models: the
|
|
|
|
/// 'generic' fork-join model of OpenMP, and a more GPU efficient 'spmd'
|
|
|
|
/// model for constructs like 'target parallel' that support it.
|
|
|
|
enum ExecutionMode {
|
|
|
|
/// Single Program Multiple Data.
|
|
|
|
Spmd,
|
|
|
|
/// Generic codegen to support fork-join model.
|
|
|
|
Generic,
|
|
|
|
Unknown,
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Track the execution mode when codegening directives within a target
|
|
|
|
// region. The appropriate mode (generic/spmd) is set on entry to the
|
|
|
|
// target region and used by containing directives such as 'parallel'
|
|
|
|
// to emit optimized code.
|
|
|
|
ExecutionMode CurrentExecutionMode;
|
2016-02-08 23:59:20 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // CodeGen namespace.
|
|
|
|
} // clang namespace.
|
|
|
|
|
|
|
|
#endif // LLVM_CLANG_LIB_CODEGEN_CGOPENMPRUNTIMENVPTX_H
|