search for: __llvm__custom_op

Displaying 1 result from an estimated 1 matches for "__llvm__custom_op".

Did you mean: __llvm__custom_op_
2007 Aug 01
1
[LLVMdev] Adding custom operation intrinsic for ASIP architectures.
.... I think you want to convert macro-inclusions (that invoke certain custom instructions through inline assembly) to LLVM parlance. Let's study this more closely. > > Basically our custom operation are like calls, with operand name and > multiple inputs and outputs. e.g. C code: > __llvm__custom_op_add(a,b,c) would be raised to customop add(i32 %tmp1, > i32 %tmp24 , i32 %tmp25). Those "__llvm__custom_op_" prefixed function > will not have function body, but pure declarations in C code level. What is the mechanism to first insert the __llvm__custom_op IR operations? Are these...