Searched defs:HasNSW (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/IR/
H A DIRBuilder.h614 bool HasNUW, bool HasNSW) {
617 if (HasNSW) BO->setHasNoSignedWrap();
633 bool HasNUW = false, bool HasNSW = false) {
636 return Insert(Folder.CreateAdd(LC, RC, HasNUW, HasNSW), Name);
638 HasNUW, HasNSW);
655 bool HasNUW = false, bool HasNSW = false) {
658 return Insert(Folder.CreateSub(LC, RC, HasNUW, HasNSW), Name);
660 HasNUW, HasNSW);
677 bool HasNUW = false, bool HasNSW = false) {
680 return Insert(Folder.CreateMul(LC, RC, HasNUW, HasNSW), Nam
611 CreateInsertNUWNSWBinOp(BinaryOperator::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name, bool HasNUW, bool HasNSW) argument
[all...]
/external/llvm/lib/IR/
H A DConstants.cpp2083 Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) { argument
2087 C, HasNUW, HasNSW);
2103 bool HasNUW, bool HasNSW) {
2105 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2114 bool HasNUW, bool HasNSW) {
2116 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2125 bool HasNUW, bool HasNSW) {
2127 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2174 bool HasNUW, bool HasNSW) {
2176 (HasNSW
2102 getAdd(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2113 getSub(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2124 getMul(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2173 getShl(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp502 bool HasNSW = false; local
504 HasNSW = I.hasNoSignedWrap();
508 HasNSW &= Op0->hasNoSignedWrap();
512 HasNSW &= Op1->hasNoSignedWrap();
513 BO->setHasNoSignedWrap(HasNSW);

Completed in 5744 milliseconds