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

/external/llvm/include/llvm/IR/
H A DIRBuilder.h744 bool HasNUW, bool HasNSW) {
746 if (HasNUW) BO->setHasNoUnsignedWrap();
764 bool HasNUW = false, bool HasNSW = false) {
767 return Insert(Folder.CreateAdd(LC, RC, HasNUW, HasNSW), Name);
769 HasNUW, HasNSW);
786 bool HasNUW = false, bool HasNSW = false) {
789 return Insert(Folder.CreateSub(LC, RC, HasNUW, HasNSW), Name);
791 HasNUW, HasNSW);
808 bool HasNUW = false, bool HasNSW = false) {
811 return Insert(Folder.CreateMul(LC, RC, HasNUW, HasNS
741 CreateInsertNUWNSWBinOp(BinaryOperator::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name, bool HasNUW, bool HasNSW) argument
[all...]
/external/llvm/lib/IR/
H A DConstants.cpp2174 Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) { argument
2178 C, HasNUW, HasNSW);
2194 bool HasNUW, bool HasNSW) {
2195 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2205 bool HasNUW, bool HasNSW) {
2206 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2216 bool HasNUW, bool HasNSW) {
2217 unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2265 bool HasNUW, bool HasNSW) {
2266 unsigned Flags = (HasNUW
2193 getAdd(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2204 getSub(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2215 getMul(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2264 getShl(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
[all...]

Completed in 39 milliseconds