[clang] [lldb] [HLSL] Implement intangible AST type (PR #97362)

Helena Kotas via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 31 12:14:46 PDT 2024


================
@@ -115,6 +116,18 @@ GlobalVariable *replaceBuffer(CGHLSLRuntime::Buffer &Buf) {
 
 } // namespace
 
+llvm::Type *CGHLSLRuntime::convertHLSLSpecificType(const Type *T) {
+  assert(T->isHLSLSpecificType() && "Not an HLSL specific type!");
+
+  // Check if the target has a specific translation for this type first.
+  if (llvm::Type *TargetTy = CGM.getTargetCodeGenInfo().getHLSLType(CGM, T))
+    return TargetTy;
+
+  // TODO: What do we actually want to do generically here? OpenCL uses a
+  // pointer in a particular address space.
+  llvm_unreachable("Generic handling of HLSL types is not implemented yet");
----------------
hekota wrote:

I have removed the comment and left the `llvm_unreachable`. We can revisit this in the future.

https://github.com/llvm/llvm-project/pull/97362


More information about the cfe-commits mailing list