search for: hasnsw

Displaying 6 results from an estimated 6 matches for "hasnsw".

Did you mean: hasn't
2014 Sep 19
2
[LLVMdev] More careful treatment of floating point exceptions
Hi Sanjay, Thanks, I saw this flag and it's definitely should be considered, but it appeared to me to be static characteristic of target platform. I'm not sure how appropriate it would be to change its value from a front-end. It says "Has", while optional flag would rather say "Uses" meaning that implementation cares about floating point exceptions. Regards, Sergey
2014 Sep 25
2
[LLVMdev] More careful treatment of floating point exceptions
...ex 587a7ef..e9b2ba17 100644 --- a/include/llvm/Analysis/TargetFolder.h +++ b/include/llvm/Analysis/TargetFolder.h @@ -62,11 +62,14 @@ public: return Fold(ConstantExpr::getFSub(LHS, RHS)); } Constant *CreateMul(Constant *LHS, Constant *RHS, - bool HasNUW = false, bool HasNSW = false) const { - return Fold(ConstantExpr::getMul(LHS, RHS, HasNUW, HasNSW)); - } - Constant *CreateFMul(Constant *LHS, Constant *RHS) const { - return Fold(ConstantExpr::getFMul(LHS, RHS)); + bool HasNUW = false, bool HasNSW = false, + bool Honor...
2012 Jul 31
0
[LLVMdev] rotate
Oh, no. I should have been more clear. The patch was not rejected, just lost in the daily shuffle. I already have my employer's approval to send this upstream, so I will prepare a patch against trunk this morning. > I proposed a similar patch to LLVM (left circular shift) around 10/2011. > > Parts of my patch did make it into trunk about a year after, but others > > did not.
2012 Jul 31
4
[LLVMdev] rotate
On Monday, July 30, 2012 12:16 AM, Cameron McInally wrote: > Hey Andy, > > I proposed a similar patch to LLVM (left circular shift) around 10/2011. > Parts of my patch did make it into trunk about a year after, but others > did not. > > At that time, my solution was to add a binary operator to the IRBuilder, > since LCS fits in nicely with the other shift operators. But,
2012 Jul 31
3
[LLVMdev] rotate
.../Constants.h =================================================================== --- include/llvm/Constants.h (revision 161045) +++ include/llvm/Constants.h (working copy) @@ -864,6 +864,7 @@ static Constant *getShl(Constant *C1, Constant *C2, bool HasNUW = false, bool HasNSW = false); static Constant *getLShr(Constant *C1, Constant *C2, bool isExact = false); + static Constant *getCShl(Constant *C1, Constant *C2); static Constant *getAShr(Constant *C1, Constant *C2, bool isExact = false); static Constant *getTrunc (Constant *C, Type *Ty); static Constant...
2016 Nov 04
2
[RFC] Supporting ARM's SVE in LLVM
...e entire vector. However, this feature is not currently used. ### IRBuilder Interface: ```cpp Value *CreateSeriesVector(VectorType::ElementCount EC, Value *Start, Value* Step, const Twine &Name = "", bool HasNUW = false, bool HasNSW = false); ``` ### Fixed-Width Behaviour: A constant vector is created with the same arithmetic series. ### SelectionDAG: See [*ISD::SERIES_VECTOR*](#isdseriesvector). ## *test* ### Syntax: `<result> = test <cond> <ty> <v1>` ### Overview: This instruction returns a s...