Home
last modified time | relevance | path

Searched refs:CodeObjectVersion (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DROCm.h29 static DeviceLibABIVersion fromCodeObjectVersion(unsigned CodeObjectVersion) { in fromCodeObjectVersion()
30 if (CodeObjectVersion < 4) in fromCodeObjectVersion()
31 CodeObjectVersion = 4; in fromCodeObjectVersion()
32 return DeviceLibABIVersion(CodeObjectVersion * 100); in fromCodeObjectVersion()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUAttributor.cpp60 unsigned CodeObjectVersion = AMDGPU::getAmdhsaCodeObjectVersion(); in intrinsicToAttrMask() local
91 NeedsImplicit = (CodeObjectVersion == 5); in intrinsicToAttrMask()
100 return CodeObjectVersion == 5 ? IMPLICIT_ARG_PTR : QUEUE_PTR; in intrinsicToAttrMask()
103 return CodeObjectVersion >= 4 ? NOT_IMPLICIT_INPUT : QUEUE_PTR; in intrinsicToAttrMask()
104 NeedsImplicit = (CodeObjectVersion == 5); // Need impicitarg_ptr under V5. in intrinsicToAttrMask()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DTargetOptions.h91 CodeObjectVersionKind CodeObjectVersion; variable
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DELFDumper.cpp5281 struct CodeObjectVersion { in getAMDNote() struct
5285 if (Desc.size() != sizeof(CodeObjectVersion)) in getAMDNote()
5290 auto Version = reinterpret_cast<const CodeObjectVersion *>(Desc.data()); in getAMDNote()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenModule.cpp598 if (getTarget().getTargetOpts().CodeObjectVersion != in Release()
602 getTarget().getTargetOpts().CodeObjectVersion); in Release()
H A DCGBuiltin.cpp16778 bool IsCOV_5 = CGF.getTarget().getTargetOpts().CodeObjectVersion == in EmitAMDGPUWorkGroupSize()
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DOptions.td3752 MarshallingInfoEnum<TargetOpts<"CodeObjectVersion">, "COV_4">;