Searched defs:HasNUW (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/IR/
H A DIRBuilder.h614 bool HasNUW, bool HasNSW) {
616 if (HasNUW) BO->setHasNoUnsignedWrap();
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, HasNS
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) {
2104 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2114 bool HasNUW, bool HasNSW) {
2115 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2125 bool HasNUW, bool HasNSW) {
2126 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2174 bool HasNUW, bool HasNSW) {
2175 unsigned Flags = (HasNUW
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...]

Completed in 3844 milliseconds