Skip to content

Commit 55cd421

Browse files
authored
Fix C++ emit for bit_cast inst. (shader-slang#1570)
Co-authored-by: Yong He <yhe@nvidia.com>
1 parent 4ad2e52 commit 55cd421

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

prelude/slang-cpp-types.h

+6
Original file line numberDiff line numberDiff line change
@@ -1036,6 +1036,12 @@ struct ComputeVaryingInput
10361036
typedef void(*ComputeThreadFunc)(ComputeThreadVaryingInput* varyingInput, void* uniformEntryPointParams, void* uniformState);
10371037
typedef void(*ComputeFunc)(ComputeVaryingInput* varyingInput, void* uniformEntryPointParams, void* uniformState);
10381038

1039+
template<typename TResult, typename TInput>
1040+
TResult slang_bit_cast(TInput val)
1041+
{
1042+
return *(TResult*)(&val);
1043+
}
1044+
10391045
#ifdef SLANG_PRELUDE_NAMESPACE
10401046
}
10411047
#endif

prelude/slang-cuda-prelude.h

+6
Original file line numberDiff line numberDiff line change
@@ -1237,6 +1237,12 @@ __device__ uint3 operator*(uint3 a, dim3 b)
12371237
return r;
12381238
}
12391239

1240+
template<typename TResult, typename TInput>
1241+
__inline__ __device__ TResult slang_bit_cast(TInput val)
1242+
{
1243+
return *(TResult*)(&val);
1244+
}
1245+
12401246
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
12411247

12421248

source/slang/slang-emit-cpp.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2238,9 +2238,9 @@ bool CPPSourceEmitter::tryEmitInstExprImpl(IRInst* inst, const EmitOpInfo& inOut
22382238
}
22392239
case kIROp_BitCast:
22402240
{
2241-
m_writer->emit("((");
2241+
m_writer->emit("(slang_bit_cast<");
22422242
emitType(inst->getDataType());
2243-
m_writer->emit(")(");
2243+
m_writer->emit(">(");
22442244
emitOperand(inst->getOperand(0), getInfo(EmitOp::General));
22452245
m_writer->emit("))");
22462246
return true;

0 commit comments

Comments
 (0)