Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPUAttributor.cpp55 unsigned CodeObjectVersion = AMDGPU::getAmdhsaCodeObjectVersion(); in intrinsicToAttrMask() local
86 NeedsImplicit = (CodeObjectVersion == 5); in intrinsicToAttrMask()
95 return CodeObjectVersion == 5 ? IMPLICIT_ARG_PTR : QUEUE_PTR; in intrinsicToAttrMask()
98 return CodeObjectVersion >= 4 ? NOT_IMPLICIT_INPUT : QUEUE_PTR; in intrinsicToAttrMask()
99 NeedsImplicit = (CodeObjectVersion == 5); // Need impicitarg_ptr under V5. in intrinsicToAttrMask()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTargetOptions.h91 CodeObjectVersionKind CodeObjectVersion; variable
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Dnote-amd-invalid-v2.test175 ## Desc size is too small (less than sizeof(CodeObjectVersion)).
182 ## Desc size is too large (more than sizeof(CodeObjectVersion)).
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DELFDumper.cpp5224 struct CodeObjectVersion { in getAMDNote() struct
5228 if (Desc.size() != sizeof(CodeObjectVersion)) in getAMDNote()
5233 auto Version = reinterpret_cast<const CodeObjectVersion *>(Desc.data()); in getAMDNote()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenModule.cpp599 if (getTarget().getTargetOpts().CodeObjectVersion == TargetOptions::COV_5) { in Release()
602 getTarget().getTargetOpts().CodeObjectVersion); in Release()
H A DCGBuiltin.cpp16454 bool IsCOV_5 = CGF.getTarget().getTargetOpts().CodeObjectVersion == in EmitAMDGPUWorkGroupSize()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td3646 MarshallingInfoEnum<TargetOpts<"CodeObjectVersion">, "COV_4">;