Displaying 3 results from an estimated 3 matches for "m_specificfp".
Did you mean:
m_specific
2013 Jul 22
0
[LLVMdev] Inverse of ConstantFP::get and similar functions?
...er sign, a
> ConstantVector or ConstantDataVector with all zeros of either sign, or
> a zero initializer...
>
> Anyone have any thoughts, and/or can point me to somewhere where this
> kind of thing is already implemented?
We do already have Constant::isZeroValue(). There's also m_SpecificFP
and m_AnyZero in PatternMatch.h.
-Eli
2013 Jul 22
6
[LLVMdev] Inverse of ConstantFP::get and similar functions?
Hi,
I noticed that ConstantFP::get automatically returns the appropriately
types Constant depending on the LLVM type passed in (i.e. if called
with a vector, it returns a splat vector with the given constant).
Is there any simple way to do the inverse of this function? i.e.,
given a llvm::Value, check whether it is either a scalar of the given
constant value or a splat vector with the given
2013 Jul 23
0
[LLVMdev] Inverse of ConstantFP::get and similar functions?
Hi Stephen,
On 22/07/13 19:19, Stephen Lin wrote:
> Hi,
>
> I noticed that ConstantFP::get automatically returns the appropriately
> types Constant depending on the LLVM type passed in (i.e. if called
> with a vector, it returns a splat vector with the given constant).
>
> Is there any simple way to do the inverse of this function? i.e.,
> given a llvm::Value, check