Displaying 5 results from an estimated 5 matches for "pr1297".
2007 Mar 31
4
[LLVMdev] About implementing new intrinsic
...;> 3. Can I introduce an intrinsic that is actually a call to my function
>> that implements the logic? I suppose it is possible but unfortunately
>> I couldn't figure it out. For example, in GCC we can write an
>> intrinsic that translates to a C code.
>
> As part of PR1297 (http://llvm.org/PR1297) I am about to make this
> happen. There are certain kinds of intrinsics that want to have a
> function body generated for them if a target or code generator cannot
> handle the intrinsic natively. For example, the company I work for has
IntrinsicLowering already d...
2007 Mar 31
0
[LLVMdev] About implementing new intrinsic
...an intrinsic that is actually a call to my function
> >> that implements the logic? I suppose it is possible but unfortunately
> >> I couldn't figure it out. For example, in GCC we can write an
> >> intrinsic that translates to a C code.
> >
> > As part of PR1297 (http://llvm.org/PR1297) I am about to make this
> > happen. There are certain kinds of intrinsics that want to have a
> > function body generated for them if a target or code generator cannot
> > handle the intrinsic natively. For example, the company I work for has
>
> In...
2007 Mar 31
0
[LLVMdev] About implementing new intrinsic
...is target
specific.
> 3. Can I introduce an intrinsic that is actually a call to my function
> that implements the logic? I suppose it is possible but unfortunately
> I couldn't figure it out. For example, in GCC we can write an
> intrinsic that translates to a C code.
As part of PR1297 (http://llvm.org/PR1297) I am about to make this
happen. There are certain kinds of intrinsics that want to have a
function body generated for them if a target or code generator cannot
handle the intrinsic natively. For example, the company I work for has
targets that know how to do a "bit_con...
2007 Mar 31
2
[LLVMdev] About implementing new intrinsic
...ally a call to my function
> > >> that implements the logic? I suppose it is possible but unfortunately
> > >> I couldn't figure it out. For example, in GCC we can write an
> > >> intrinsic that translates to a C code.
> > >
> > > As part of PR1297 (http://llvm.org/PR1297) I am about to make this
> > > happen. There are certain kinds of intrinsics that want to have a
> > > function body generated for them if a target or code generator cannot
> > > handle the intrinsic natively. For example, the company I work for ha...
2007 Mar 31
6
[LLVMdev] About implementing new intrinsic
Hi,
I want to implement a new intrinsic in llvm that will denote a
parallel section within a function. I followed the documentation for
extending llvm (http://llvm.org/docs/ExtendingLLVM.html) but there is
something about the working mechanism that is not clear for me.
1. Why do we have to add support for the C backend? Is this only
necessary to transform the llvm assembly (bytecode) into C code