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

/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DConstants.cpp1761 Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) { argument
1765 C, HasNUW, HasNSW);
1781 bool HasNUW, bool HasNSW) {
1783 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1792 bool HasNUW, bool HasNSW) {
1794 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1803 bool HasNUW, bool HasNSW) {
1805 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
1852 bool HasNUW, bool HasNSW) {
1854 (HasNSW
1780 getAdd(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
1791 getSub(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
1802 getMul(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
1851 getShl(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
[all...]
/external/llvm/include/llvm/IR/
H A DIRBuilder.h759 bool HasNUW, bool HasNSW) {
762 if (HasNSW) BO->setHasNoSignedWrap();
779 bool HasNUW = false, bool HasNSW = false) {
782 return Insert(Folder.CreateAdd(LC, RC, HasNUW, HasNSW), Name);
784 HasNUW, HasNSW);
801 bool HasNUW = false, bool HasNSW = false) {
804 return Insert(Folder.CreateSub(LC, RC, HasNUW, HasNSW), Name);
806 HasNUW, HasNSW);
823 bool HasNUW = false, bool HasNSW = false) {
826 return Insert(Folder.CreateMul(LC, RC, HasNUW, HasNSW), Nam
756 CreateInsertNUWNSWBinOp(BinaryOperator::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name, bool HasNUW, bool HasNSW) argument
[all...]
/external/llvm/lib/IR/
H A DConstants.cpp2113 Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) { argument
2117 C, HasNUW, HasNSW);
2133 bool HasNUW, bool HasNSW) {
2135 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2144 bool HasNUW, bool HasNSW) {
2146 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2155 bool HasNUW, bool HasNSW) {
2157 (HasNSW ? OverflowingBinaryOperator::NoSignedWrap : 0);
2204 bool HasNUW, bool HasNSW) {
2206 (HasNSW
2132 getAdd(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2143 getSub(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2154 getMul(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2203 getShl(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp515 bool HasNSW = false; local
517 HasNSW = I.hasNoSignedWrap();
521 HasNSW &= Op0->hasNoSignedWrap();
525 HasNSW &= Op1->hasNoSignedWrap();
538 BO->setHasNoSignedWrap(HasNSW);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DIRBuilder.h493 bool HasNUW, bool HasNSW) {
496 if (HasNSW) BO->setHasNoSignedWrap();
501 bool HasNUW = false, bool HasNSW = false) {
504 return Insert(Folder.CreateAdd(LC, RC, HasNUW, HasNSW), Name);
506 HasNUW, HasNSW);
521 bool HasNUW = false, bool HasNSW = false) {
526 HasNUW, HasNSW);
541 bool HasNUW = false, bool HasNSW = false) {
546 HasNUW, HasNSW);
610 bool HasNUW = false, bool HasNSW
490 CreateInsertNUWNSWBinOp(BinaryOperator::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name, bool HasNUW, bool HasNSW) argument
[all...]

Completed in 214 milliseconds