/external/llvm/lib/Analysis/ |
D | BasicAliasAnalysis.cpp | 185 AssumptionCache *AC, DominatorTree *DT, bool &NSW, bool &NUW) { in GetLinearExpression() argument 233 SExtBits, DL, Depth + 1, AC, DT, NSW, NUW); in GetLinearExpression() 238 SExtBits, DL, Depth + 1, AC, DT, NSW, NUW); in GetLinearExpression() 243 SExtBits, DL, Depth + 1, AC, DT, NSW, NUW); in GetLinearExpression() 249 SExtBits, DL, Depth + 1, AC, DT, NSW, NUW); in GetLinearExpression() 254 NSW = NUW = false; in GetLinearExpression() 260 NSW &= BOp->hasNoSignedWrap(); in GetLinearExpression() 276 Depth + 1, AC, DT, NSW, NUW); in GetLinearExpression() 285 if (NSW) { in GetLinearExpression() 447 bool NSW = true, NUW = true; in DecomposeGEPExpression() local [all …]
|
D | ValueTracking.cpp | 235 static void computeKnownBitsAddSub(bool Add, Value *Op0, Value *Op1, bool NSW, in computeKnownBitsAddSub() argument 301 if (NSW) { in computeKnownBitsAddSub() 314 static void computeKnownBitsMul(Value *Op0, Value *Op1, bool NSW, in computeKnownBitsMul() argument 325 if (NSW) { in computeKnownBitsMul() 930 bool NSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap(); in computeKnownBitsFromOperator() local 931 computeKnownBitsMul(I->getOperand(0), I->getOperand(1), NSW, KnownZero, in computeKnownBitsFromOperator() 1070 bool NSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap(); in computeKnownBitsFromOperator() local 1071 computeKnownBitsAddSub(false, I->getOperand(0), I->getOperand(1), NSW, in computeKnownBitsFromOperator() 1077 bool NSW = cast<OverflowingBinaryOperator>(I)->hasNoSignedWrap(); in computeKnownBitsFromOperator() local 1078 computeKnownBitsAddSub(true, I->getOperand(0), I->getOperand(1), NSW, in computeKnownBitsFromOperator()
|
D | InstructionSimplify.cpp | 2889 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap(); in SimplifyICmpInst() local 2890 if (!NUW && !NSW) in SimplifyICmpInst() 2892 if (!NSW && ICmpInst::isSigned(Pred)) in SimplifyICmpInst()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | InstrTypes.h | 267 DEFINE_HELPERS(Add, NSW) // CreateNSWAdd 269 DEFINE_HELPERS(Sub, NSW) // CreateNSWSub 271 DEFINE_HELPERS(Mul, NSW) // CreateNSWMul 273 DEFINE_HELPERS(Shl, NSW) // CreateNSWShl
|
/external/llvm/test/Transforms/LoopVectorize/ |
D | nsw-crash.ll | 17 … ; <------------- Make sure we don't set NSW flags to the undef.
|
/external/swiftshader/third_party/LLVM/test/Transforms/IndVarSimplify/ |
D | elim-extend.ll | 5 ; IV with constant start, preinc and postinc sign extends, with and without NSW. 36 ; with and without NSW.
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | elim-extend.ll | 5 ; IV with constant start, preinc and postinc sign extends, with and without NSW. 36 ; with and without NSW.
|
/external/llvm/include/llvm/Analysis/ |
D | BasicAliasAnalysis.h | 154 DominatorTree *DT, bool &NSW, bool &NUW);
|
/external/llvm/include/llvm/IR/ |
D | InstrTypes.h | 469 DEFINE_HELPERS(Add, NSW) // CreateNSWAdd 471 DEFINE_HELPERS(Sub, NSW) // CreateNSWSub 473 DEFINE_HELPERS(Mul, NSW) // CreateNSWMul 475 DEFINE_HELPERS(Shl, NSW) // CreateNSWShl
|
/external/timezonepicker-support/ |
D | backward | 42 Link Australia/Sydney Australia/NSW
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | TimeZoneAliases.txt | 34 Australia/NSW ; Australia/Sydney
|
/external/llvm/test/Analysis/ScalarEvolution/ |
D | trip-count10.ll | 130 ; We can't assume undefined behavior just because we have an NSW flag.
|
D | flags-from-poison.ll | 661 ; maps to is NSW, but the negation of the RHS does not since that
|
/external/llvm/test/Transforms/Reassociate/ |
D | canonicalize-neg-const.ll | 148 ; Don't create an NSW violation
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | TimeZoneAliases.txt | 34 Australia/NSW ; Australia/Sydney
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1722 bool NSW; in visitGetElementPtrInst() local 1723 if (Value *NewIdx = Descale(Idx, APInt(BitWidth, Scale), NSW)) { in visitGetElementPtrInst() 1728 GEP.isInBounds() && NSW in visitGetElementPtrInst() 1761 bool NSW; in visitGetElementPtrInst() local 1762 if (Value *NewIdx = Descale(Idx, APInt(BitWidth, Scale), NSW)) { in visitGetElementPtrInst() 1770 Value *NewGEP = GEP.isInBounds() && NSW in visitGetElementPtrInst()
|
/external/llvm/test/Transforms/LoopUnroll/ |
D | scevunroll.ll | 177 ; of the induction variable's NSW flag. However, the loop latch's
|
/external/swiftshader/third_party/LLVM/lib/AsmParser/ |
D | LLParser.cpp | 2193 bool NSW = false; in ParseValID() local 2204 NSW = true; in ParseValID() 2224 if (NSW) in ParseValID() 2254 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap; in ParseValID() 2898 bool NSW = EatIfPresent(lltok::kw_nsw); in ParseInstruction() local 2904 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true); in ParseInstruction()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | InstructionSimplify.cpp | 1892 bool NSW = LBO->hasNoSignedWrap() && RBO->hasNoSignedWrap(); in SimplifyICmpInst() local 1893 if (!NUW && !NSW) in SimplifyICmpInst() 1895 if (!NSW && ICmpInst::isSigned(Pred)) in SimplifyICmpInst()
|
/external/llvm/lib/Transforms/Scalar/ |
D | Reassociate.cpp | 945 bool NSW = cast<BinaryOperator>(Shl)->hasNoSignedWrap(); in ConvertShiftToMul() local 947 if (NSW && NUW) in ConvertShiftToMul()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 2431 bool NSW = BO0->hasNoSignedWrap() && BO1->hasNoSignedWrap(); in visitICmpInst() local 2432 if (!NUW && !NSW) in visitICmpInst() 2434 if (!NSW && I.isSigned()) in visitICmpInst()
|
/external/icu/icu4c/source/test/testdata/ |
D | timezoneTypes.txt | 49 "Australia:NSW"{"Australia/Sydney"}
|
D | zoneinfo64.txt | 2010 /* Australia/NSW */ :int { 356 } //Z#351 3150 ,"Australia/Lord_Howe","Australia/Melbourne","Australia/NSW" // 351 3673 "AU", //Z#351 Australia/NSW
|
/external/icu/icu4c/source/data/misc/ |
D | timezoneTypes.txt | 56 "Australia:NSW"{"Australia/Sydney"}
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 3044 bool NSW = false; in ParseValID() local 3055 NSW = true; in ParseValID() 3075 if (NSW) in ParseValID() 3105 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap; in ParseValID() 4958 bool NSW = EatIfPresent(lltok::kw_nsw); in ParseInstruction() local 4964 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true); in ParseInstruction()
|