Home
last modified time | relevance | path

Searched refs:IsTargetDevice (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h103 std::optional<bool> IsTargetDevice;
134 LLVM_ABI OpenMPIRBuilderConfig(bool IsTargetDevice, bool IsGPU,
143 assert(IsTargetDevice.has_value() && "IsTargetDevice is not set"); in isTargetDevice()
144 return *IsTargetDevice; in isTargetDevice()
193 void setIsTargetDevice(bool Value) { IsTargetDevice = Value; } in setIsTargetDevice()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGException.cpp626 const bool IsTargetDevice = in EmitCXXTryStmt() local
628 if (!IsTargetDevice) in EmitCXXTryStmt()
631 if (!IsTargetDevice) in EmitCXXTryStmt()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DOpenMPOpt.cpp289 OMPBuilder.Config.IsTargetDevice = isOpenMPDevice(OMPBuilder.M); in OMPInformationCache()
295 assert(OMPBuilder.Config.IsTargetDevice && in OMPInformationCache()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp432 bool IsTargetDevice, bool IsGPU, bool OpenMPOffloadMandatory, in OpenMPIRBuilderConfig() argument
435 : IsTargetDevice(IsTargetDevice), IsGPU(IsGPU), in OpenMPIRBuilderConfig()
6672 if (Config.IsTargetDevice.value_or(false)) { in createTargetData()