Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
HDOMPIRBuilder.h92 std::optional<bool> IsTargetDevice;
119 OpenMPIRBuilderConfig(bool IsTargetDevice, bool IsGPU,
128 assert(IsTargetDevice.has_value() && "IsTargetDevice is not set"); in isTargetDevice()
129 return *IsTargetDevice; in isTargetDevice()
178 void setIsTargetDevice(bool Value) { IsTargetDevice = Value; } in setIsTargetDevice()
/freebsd-14-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGException.cpp626 const bool IsTargetDevice = in EmitCXXTryStmt() local
628 if (!IsTargetDevice) in EmitCXXTryStmt()
631 if (!IsTargetDevice) in EmitCXXTryStmt()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
HDOMPIRBuilder.cpp425 bool IsTargetDevice, bool IsGPU, bool OpenMPOffloadMandatory, in OpenMPIRBuilderConfig() argument
428 : IsTargetDevice(IsTargetDevice), IsGPU(IsGPU), in OpenMPIRBuilderConfig()
6352 if (Config.IsTargetDevice.value_or(false)) { in createTargetData()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
HDOpenMPOpt.cpp289 OMPBuilder.Config.IsTargetDevice = isOpenMPDevice(OMPBuilder.M); in OMPInformationCache()