diff --git a/cpp/ql/lib/change-notes/2025-11-11-range-analysis-performance.md b/cpp/ql/lib/change-notes/2025-11-11-range-analysis-performance.md new file mode 100644 index 000000000000..f24ab4b87fec --- /dev/null +++ b/cpp/ql/lib/change-notes/2025-11-11-range-analysis-performance.md @@ -0,0 +1,4 @@ +--- +category: fix +--- +* Improve performance of the range analysis in cases where it would otherwise take an exorbitant amount of time. \ No newline at end of file diff --git a/cpp/ql/lib/semmle/code/cpp/rangeanalysis/SimpleRangeAnalysis.qll b/cpp/ql/lib/semmle/code/cpp/rangeanalysis/SimpleRangeAnalysis.qll index 95cdb2624b5b..722866c512f2 100644 --- a/cpp/ql/lib/semmle/code/cpp/rangeanalysis/SimpleRangeAnalysis.qll +++ b/cpp/ql/lib/semmle/code/cpp/rangeanalysis/SimpleRangeAnalysis.qll @@ -93,6 +93,18 @@ private float wideningUpperBounds(ArithmeticType t) { result = 1.0 / 0.0 // +Inf } +/** Gets the widened lower bound for a given type and lower bound. */ +bindingset[type, lb] +float widenLowerBound(Type type, float lb) { + result = max(float widenLB | widenLB = wideningLowerBounds(type) and widenLB <= lb | widenLB) +} + +/** Gets the widened upper bound for a given type and upper bound. */ +bindingset[type, ub] +float widenUpperBound(Type type, float ub) { + result = min(float widenUB | widenUB = wideningUpperBounds(type) and widenUB >= ub | widenUB) +} + /** * Gets the value of the expression `e`, if it is a constant. * This predicate also handles the case of constant variables initialized in different @@ -504,6 +516,336 @@ private predicate isRecursiveExpr(Expr e) { ) } +/** + * Provides predicates that estimate the number of bounds that the range + * analysis might produce. + */ +private module BoundsEstimate { + /** + * Gets the limit beyond which we enable widening. That is, if the estimated + * number of bounds exceeds this limit, we enable widening such that the limit + * will not be reached. + */ + float getBoundsLimit() { + // This limit is arbitrary, but low enough that it prevents timeouts on + // specific observed customer databases (and the in the tests). + result = 2.0.pow(40) + } + + /** Gets the maximum number of bounds possible for `t` when widening is used. */ + private int getNrOfWideningBounds(ArithmeticType t) { + result = strictcount(wideningLowerBounds(t)).maximum(strictcount(wideningUpperBounds(t))) + } + + /** + * Holds if `boundFromGuard(guard, v, _, branch)` holds, but without + * relying on range analysis (which would cause non-monotonic recursion + * elsewhere). + */ + private predicate hasBoundFromGuard(Expr guard, VariableAccess v, boolean branch) { + exists(Expr lhs | linearAccess(lhs, v, _, _) | + relOpWithSwapAndNegate(guard, lhs, _, _, _, branch) + or + eqOpWithSwapAndNegate(guard, lhs, _, true, branch) + or + eqZeroWithNegate(guard, lhs, true, branch) + ) + } + + /** Holds if `def` is a guard phi node for `v` with a bound from a guard. */ + predicate isGuardPhiWithBound(RangeSsaDefinition def, StackVariable v, VariableAccess access) { + exists(Expr guard, boolean branch | + def.isGuardPhi(v, access, guard, branch) and + hasBoundFromGuard(guard, access, branch) + ) + } + + /** + * Gets the number of bounds for `def` when `def` is a guard phi node for the + * variable `v`. + */ + language[monotonicAggregates] + private float nrOfBoundsPhiGuard(RangeSsaDefinition def, StackVariable v) { + // If we have + // + // if (x < c) { e1 } + // e2 + // + // then `e2` is both a guard phi node (guarded by `x < c`) and a normal + // phi node (control is merged after the `if` statement). + // + // Assume `x` has `n` bounds. Then `n` bounds are propagated to the guard + // phi node `{ e1 }` and, since `{ e1 }` is input to `e2` as a normal phi + // node, `n` bounds are propagated to `e2`. If we also propagate the `n` + // bounds to `e2` as a guard phi node, then we square the number of + // bounds. + // + // However in practice `x < c` is going to cut down the number of bounds: + // The tracked bounds can't flow to both branches as that would require + // them to simultaneously be greater and smaller than `c`. To approximate + // this better, the contribution from a guard phi node that is also a + // normal phi node is 1. + exists(def.getAPhiInput(v)) and + isGuardPhiWithBound(def, v, _) and + result = 1 + or + not exists(def.getAPhiInput(v)) and + // If there's different `access`es, then they refer to the same variable + // with the same lower bounds. Hence adding these guards make no sense (the + // implementation will take the union, but they'll be removed by + // deduplication). Hence we use `max` as an approximation. + result = + max(VariableAccess access | isGuardPhiWithBound(def, v, access) | nrOfBoundsExpr(access)) + or + def.isPhiNode(v) and + not isGuardPhiWithBound(def, v, _) and + result = 0 + } + + /** + * Gets the number of bounds for `def` when `def` is a normal phi node for the + * variable `v`. + */ + language[monotonicAggregates] + private float nrOfBoundsPhiNormal(RangeSsaDefinition def, StackVariable v) { + result = + strictsum(RangeSsaDefinition inputDef | + inputDef = def.getAPhiInput(v) + | + nrOfBoundsDef(inputDef, v) + ) + or + def.isPhiNode(v) and + not exists(def.getAPhiInput(v)) and + result = 0 + } + + /** + * Gets the number of bounds for `def` when `def` is an NE phi node for the + * variable `v`. + */ + language[monotonicAggregates] + float nrOfBoundsNEPhi(RangeSsaDefinition def, StackVariable v) { + // If there's different `access`es, then they refer to the same variable + // with the same lower bounds. Hence adding these guards make no sense (the + // implementation will take the union, but they'll be removed by + // deduplication). Hence we use `max` as an approximation. + result = max(VariableAccess access | isNEPhi(v, def, access, _) | nrOfBoundsExpr(access)) + or + def.isPhiNode(v) and + not isNEPhi(v, def, _, _) and + result = 0 + } + + /** + * Gets the number of bounds for `def` when `def` is an unsupported guard phi + * node for the variable `v`. + */ + language[monotonicAggregates] + private float nrOfBoundsUnsupportedGuardPhi(RangeSsaDefinition def, StackVariable v) { + // If there's different `access`es, then they refer to the same variable + // with the same lower bounds. Hence adding these guards make no sense (the + // implementation will take the union, but they'll be removed by + // deduplication). Hence we use `max` as an approximation. + result = + max(VariableAccess access | isUnsupportedGuardPhi(v, def, access) | nrOfBoundsExpr(access)) + or + def.isPhiNode(v) and + not isUnsupportedGuardPhi(v, def, _) and + result = 0 + } + + private float nrOfBoundsPhi(RangeSsaDefinition def, StackVariable v) { + // The cases for phi nodes are not mutually exclusive. For instance a phi + // node can be both a guard phi node and a normal phi node. To handle this + // we sum the contributions from the different cases. + result = + nrOfBoundsPhiGuard(def, v) + nrOfBoundsPhiNormal(def, v) + nrOfBoundsNEPhi(def, v) + + nrOfBoundsUnsupportedGuardPhi(def, v) + } + + /** Gets the estimated number of bounds for `def` and `v`. */ + float nrOfBoundsDef(RangeSsaDefinition def, StackVariable v) { + // Recursive definitions are already widened, so we simply estimate them as + // having the number of widening bounds available. This is crucial as it + // ensures that we don't follow recursive cycles when calculating the + // estimate. Had that not been the case the estimate itself would be at risk + // of causing performance issues and being non-functional. + if isRecursiveDef(def, v) + then result = getNrOfWideningBounds(getVariableRangeType(v)) + else ( + // Definitions with a defining value + exists(Expr defExpr | assignmentDef(def, v, defExpr) and result = nrOfBoundsExpr(defExpr)) + or + // Assignment operations with a defining value + exists(AssignOperation assignOp | + def = assignOp and + assignOp.getLValue() = v.getAnAccess() and + result = nrOfBoundsExpr(assignOp) + ) + or + // Phi nodes + result = nrOfBoundsPhi(def, v) + or + unanalyzableDefBounds(def, v, _, _) and result = 1 + ) + } + + /** + * Gets a naive estimate of the number of bounds for `e`. + * + * The estimate is like an abstract interpretation of the range analysis, + * where the abstract value is the number of bounds. For instance, + * `nrOfBoundsExpr(12) = 1` and `nrOfBoundsExpr(x + y) = nrOfBoundsExpr(x) * + * nrOfBoundsExpr(y)`. + * + * The estimated number of bounds will usually be greater than the actual + * number of bounds, as the estimate can not detect cases where bounds are cut + * down when tracked precisely. For instance, in + * ```c + * int x = 1; + * if (cond) { x = 1; } + * int y = x + x; + * ``` + * the actual number of bounds for `y` is 1. However, the estimate will be 4 + * as the conditional assignment to `x` gives two bounds for `x` on the last + * line and the addition gives 2 * 2 bounds. There are two sources of inaccuracies: + * + * 1. Without tracking the lower bounds we can't see that `x` is assigned a + * value that is equal to its lower bound. + * 2. Had the conditional assignment been `x = 2` then the estimate of two + * bounds for `x` would have been correct. However, the estimate of 4 for `y` + * would still be incorrect. Summing the actual bounds `{1,2}` with itself + * gives `{2,3,4}` which is only three bounds. Again, we can't realise this + * without tracking the bounds. + * + * Since these inaccuracies compound the estimated number of bounds can often + * be _much_ greater than the actual number of bounds. Do note though that the + * estimate is not _guaranteed_ to be an upper bound. In some cases the + * approximations might underestimate the number of bounds. + * + * This predicate is functional. This is crucial as: + * + * - It ensures that the computing the estimate itself is fast. + * - Our use of monotonic aggregates assumes functionality. + * + * Any non-functional case should be considered a bug. + */ + float nrOfBoundsExpr(Expr e) { + // Similarly to what we do for definitions, we do not attempt to measure the + // number of bounds for recursive expressions. + if isRecursiveExpr(e) + then result = getNrOfWideningBounds(e.getUnspecifiedType()) + else + if analyzableExpr(e) + then + // The cases here are an abstraction of and mirrors the cases inside + // `getLowerBoundsImpl`/`getUpperBoundsImpl`. + result = 1 and exists(getValue(e).toFloat()) + or + exists(Expr operand | result = nrOfBoundsExpr(operand) | + effectivelyMultipliesByPositive(e, operand, _) + or + effectivelyMultipliesByNegative(e, operand, _) + ) + or + exists(ConditionalExpr condExpr | + e = condExpr and + result = nrOfBoundsExpr(condExpr.getThen()) * nrOfBoundsExpr(condExpr.getElse()) + ) + or + exists(BinaryOperation binop | + e = binop and + result = nrOfBoundsExpr(binop.getLeftOperand()) * nrOfBoundsExpr(binop.getRightOperand()) + | + e instanceof MaxExpr or + e instanceof MinExpr or + e instanceof AddExpr or + e instanceof SubExpr or + e instanceof UnsignedMulExpr or + e instanceof UnsignedBitwiseAndExpr + ) + or + exists(AssignExpr assign | e = assign and result = nrOfBoundsExpr(assign.getRValue())) + or + exists(AssignArithmeticOperation assignOp | + e = assignOp and + result = nrOfBoundsExpr(assignOp.getLValue()) * nrOfBoundsExpr(assignOp.getRValue()) + | + e instanceof AssignAddExpr or + e instanceof AssignSubExpr or + e instanceof UnsignedAssignMulExpr + ) + or + // Handles `AssignMulByPositiveConstantExpr` and `AssignMulByNegativeConstantExpr` + exists(AssignMulByConstantExpr mulExpr | + e = mulExpr and + result = nrOfBoundsExpr(mulExpr.getLValue()) + ) + or + // Handles the prefix and postfix increment and decrement operators. + exists(CrementOperation crementOp | + e = crementOp and result = nrOfBoundsExpr(crementOp.getOperand()) + ) + or + exists(RemExpr remExpr | e = remExpr | result = nrOfBoundsExpr(remExpr.getRightOperand())) + or + exists(Conversion convExpr | + e = convExpr and + if convExpr.getUnspecifiedType() instanceof BoolType + then result = 1 + else result = nrOfBoundsExpr(convExpr.getExpr()) + ) + or + exists(RangeSsaDefinition def, StackVariable v | + e = def.getAUse(v) and + result = nrOfBoundsDef(def, v) and + // Avoid returning two numbers when `e` is a use with a constant value. + not exists(getValue(e).toFloat()) + ) + or + exists(RShiftExpr rsExpr | + e = rsExpr and + exists(getValue(rsExpr.getRightOperand().getFullyConverted()).toInt()) and + result = nrOfBoundsExpr(rsExpr.getLeftOperand()) + ) + else ( + exists(exprMinVal(e)) and result = 1 + ) + } +} + +/** + * Holds if `v` is a variable for which widening should be used, as otherwise a + * very large number of bounds might be generated during the range analysis for + * `v`. + */ +private predicate varHasTooManyBounds(StackVariable v) { + exists(RangeSsaDefinition def | + def.getAVariable() = v and + BoundsEstimate::nrOfBoundsDef(def, v) > BoundsEstimate::getBoundsLimit() + ) +} + +/** + * Holds if `e` is an expression for which widening should be used, as otherwise + * a very large number of bounds might be generated during the range analysis + * for `e`. + */ +private predicate exprHasTooManyBounds(Expr e) { + BoundsEstimate::nrOfBoundsExpr(e) > BoundsEstimate::getBoundsLimit() + or + // A subexpressions of an expression with too many bounds may itself not have + // to many bounds. For instance, `x + y` can have too many bounds without `x` + // having as well. But in these cases, still want to consider `e` as having + // too many bounds since: + // - The overall result is widened anyway, so widening `e` as well is unlikely + // to cause further precision loss. + // - The number of bounds could be very large but still below the arbitrary + // limit. Hence widening `e` can improve performance. + exists(Expr pe | exprHasTooManyBounds(pe) and e.getParent() = pe) +} + /** * Holds if `binop` is a binary operation that's likely to be assigned a * quadratic (or more) number of candidate bounds during the analysis. This can @@ -654,13 +996,8 @@ private float getTruncatedLowerBounds(Expr expr) { if exprMinVal(expr) <= newLB and newLB <= exprMaxVal(expr) then // Apply widening where we might get a combinatorial explosion. - if isRecursiveBinary(expr) - then - result = - max(float widenLB | - widenLB = wideningLowerBounds(expr.getUnspecifiedType()) and - not widenLB > newLB - ) + if isRecursiveBinary(expr) or exprHasTooManyBounds(expr) + then result = widenLowerBound(expr.getUnspecifiedType(), newLB) else result = newLB else result = exprMinVal(expr) ) and @@ -713,13 +1050,8 @@ private float getTruncatedUpperBounds(Expr expr) { if exprMinVal(expr) <= newUB and newUB <= exprMaxVal(expr) then // Apply widening where we might get a combinatorial explosion. - if isRecursiveBinary(expr) - then - result = - min(float widenUB | - widenUB = wideningUpperBounds(expr.getUnspecifiedType()) and - not widenUB < newUB - ) + if isRecursiveBinary(expr) or exprHasTooManyBounds(expr) + then result = widenUpperBound(expr.getUnspecifiedType(), newUB) else result = newUB else result = exprMaxVal(expr) ) @@ -1796,18 +2128,12 @@ module SimpleRangeAnalysisInternal { | // Widening: check whether the new lower bound is from a source which // depends recursively on the current definition. - if isRecursiveDef(def, v) + if isRecursiveDef(def, v) or varHasTooManyBounds(v) then // The new lower bound is from a recursive source, so we round // down to one of a limited set of values to prevent the // recursion from exploding. - result = - max(float widenLB | - widenLB = wideningLowerBounds(getVariableRangeType(v)) and - not widenLB > truncatedLB - | - widenLB - ) + result = widenLowerBound(getVariableRangeType(v), truncatedLB) else result = truncatedLB ) or @@ -1826,18 +2152,12 @@ module SimpleRangeAnalysisInternal { | // Widening: check whether the new upper bound is from a source which // depends recursively on the current definition. - if isRecursiveDef(def, v) + if isRecursiveDef(def, v) or varHasTooManyBounds(v) then // The new upper bound is from a recursive source, so we round // up to one of a fixed set of values to prevent the recursion // from exploding. - result = - min(float widenUB | - widenUB = wideningUpperBounds(getVariableRangeType(v)) and - not widenUB < truncatedUB - | - widenUB - ) + result = widenUpperBound(getVariableRangeType(v), truncatedUB) else result = truncatedUB ) or @@ -1845,4 +2165,60 @@ module SimpleRangeAnalysisInternal { // bound is `typeUpperBound`. defMightOverflowNegatively(def, v) and result = varMaxVal(v) } + + /** Gets the estimate of the number of bounds for `e`. */ + float estimateNrOfBounds(Expr e) { result = BoundsEstimate::nrOfBoundsExpr(e) } +} + +/** Provides predicates for debugging the simple range analysis library. */ +private module Debug { + Locatable getRelevantLocatable() { + exists(string filepath, int startline | + result.getLocation().hasLocationInfo(filepath, startline, _, _, _) and + filepath.matches("%/test.c") and + startline = [621 .. 639] + ) + } + + float debugGetLowerBoundsImpl(Expr e) { + e = getRelevantLocatable() and + result = getLowerBoundsImpl(e) + } + + float debugGetUpperBoundsImpl(Expr e) { + e = getRelevantLocatable() and + result = getUpperBoundsImpl(e) + } + + /** + * Counts the number of lower bounds for a given expression. This predicate is + * useful for identifying performance issues in the range analysis. + */ + predicate countGetLowerBoundsImpl(Expr e, int n) { + e = getRelevantLocatable() and + n = strictcount(float lb | lb = getLowerBoundsImpl(e) | lb) + } + + float debugNrOfBounds(Expr e) { + e = getRelevantLocatable() and + result = BoundsEstimate::nrOfBoundsExpr(e) + } + + /** + * Finds any expressions for which `nrOfBounds` is not functional. The result + * should be empty, so this predicate is useful to debug non-functional cases. + */ + int nonFunctionalNrOfBounds(Expr e) { + strictcount(BoundsEstimate::nrOfBoundsExpr(e)) > 1 and + result = BoundsEstimate::nrOfBoundsExpr(e) + } + + /** + * Holds if `e` is an expression that has a lower bound, but where + * `nrOfBounds` does not compute an estimate. + */ + predicate missingNrOfBounds(Expr e, float n) { + n = lowerBound(e) and + not exists(BoundsEstimate::nrOfBoundsExpr(e)) + } } diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/lowerBound.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/lowerBound.expected index bc8f42dafc3f..cfebbd974c00 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/lowerBound.expected +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/lowerBound.expected @@ -485,197 +485,529 @@ | test.c:411:59:411:59 | k | 0.205191 | | test.c:411:63:411:63 | l | 0.132041 | | test.c:413:10:413:15 | output | 1.842468 | -| test.c:418:20:418:20 | x | 0 | -| test.c:418:30:418:30 | x | 0 | -| test.c:421:3:421:4 | y1 | 0 | -| test.c:421:11:421:11 | y | 0 | -| test.c:421:14:421:14 | y | 1 | -| test.c:422:3:422:4 | y2 | 0 | -| test.c:422:9:422:9 | y | 1 | -| test.c:422:14:422:14 | y | 2 | -| test.c:422:22:422:22 | y | 5 | -| test.c:423:10:423:11 | y1 | 1 | -| test.c:423:15:423:16 | y2 | 5 | -| test.c:431:3:431:3 | i | -2147483648 | -| test.c:432:7:432:7 | i | 10 | -| test.c:434:3:434:3 | i | -2147483648 | -| test.c:435:3:435:3 | i | 10 | -| test.c:436:7:436:7 | i | 20 | -| test.c:438:3:438:3 | i | -2147483648 | -| test.c:439:3:439:3 | i | 40 | -| test.c:440:7:440:7 | i | 30 | -| test.c:442:3:442:3 | i | -2147483648 | -| test.c:442:7:442:7 | j | -2147483648 | -| test.c:443:7:443:7 | i | 40 | -| test.c:445:3:445:3 | i | -2147483648 | -| test.c:445:8:445:8 | j | 40 | -| test.c:446:7:446:7 | i | 50 | -| test.c:448:3:448:3 | i | -2147483648 | -| test.c:448:13:448:13 | j | 50 | -| test.c:449:7:449:7 | i | 60 | -| test.c:456:12:456:12 | a | 0 | -| test.c:456:17:456:17 | a | 3 | -| test.c:456:33:456:33 | b | 0 | -| test.c:456:38:456:38 | b | 5 | -| test.c:457:13:457:13 | a | 3 | -| test.c:457:15:457:15 | b | 5 | -| test.c:458:5:458:9 | total | 0 | -| test.c:458:14:458:14 | r | 15 | -| test.c:460:12:460:12 | a | 0 | -| test.c:460:17:460:17 | a | 3 | -| test.c:460:33:460:33 | b | 0 | -| test.c:460:38:460:38 | b | 0 | -| test.c:461:13:461:13 | a | 3 | -| test.c:461:15:461:15 | b | 0 | -| test.c:462:5:462:9 | total | 0 | -| test.c:462:14:462:14 | r | 0 | -| test.c:464:12:464:12 | a | 0 | -| test.c:464:17:464:17 | a | 3 | -| test.c:464:34:464:34 | b | 0 | -| test.c:464:39:464:39 | b | 13 | -| test.c:465:13:465:13 | a | 3 | -| test.c:465:15:465:15 | b | 13 | -| test.c:466:5:466:9 | total | 0 | -| test.c:466:14:466:14 | r | 39 | -| test.c:469:10:469:14 | total | 0 | -| test.c:475:12:475:12 | b | 0 | -| test.c:475:17:475:17 | b | 5 | -| test.c:476:16:476:16 | b | 5 | -| test.c:477:5:477:9 | total | 0 | -| test.c:477:14:477:14 | r | 55 | -| test.c:479:12:479:12 | b | 0 | -| test.c:479:17:479:17 | b | 0 | -| test.c:480:16:480:16 | b | 0 | -| test.c:481:5:481:9 | total | 0 | -| test.c:481:14:481:14 | r | 0 | -| test.c:483:13:483:13 | b | 0 | -| test.c:483:18:483:18 | b | 13 | -| test.c:484:16:484:16 | b | 13 | -| test.c:485:5:485:9 | total | 0 | -| test.c:485:14:485:14 | r | 143 | -| test.c:488:10:488:14 | total | 0 | -| test.c:493:3:493:3 | x | 0 | -| test.c:493:7:493:7 | y | 0 | -| test.c:494:3:494:4 | xy | 0 | -| test.c:494:8:494:8 | x | 1000000003 | -| test.c:494:12:494:12 | y | 1000000003 | -| test.c:495:10:495:11 | xy | 1000000006000000000 | -| test.c:500:3:500:3 | x | 0 | -| test.c:501:3:501:3 | y | 0 | -| test.c:502:3:502:4 | xy | 0 | -| test.c:502:8:502:8 | x | 274177 | -| test.c:502:12:502:12 | y | 67280421310721 | -| test.c:503:10:503:11 | xy | 18446744073709551616 | -| test.c:507:7:507:8 | ui | 0 | -| test.c:508:43:508:44 | ui | 10 | -| test.c:508:48:508:49 | ui | 10 | -| test.c:509:12:509:17 | result | 100 | -| test.c:511:7:511:8 | ul | 0 | -| test.c:512:28:512:29 | ul | 10 | -| test.c:512:33:512:34 | ul | 10 | -| test.c:513:12:513:17 | result | 0 | -| test.c:519:7:519:8 | ui | 0 | -| test.c:519:19:519:20 | ui | 0 | -| test.c:520:5:520:6 | ui | 2 | -| test.c:520:11:520:12 | ui | 2 | -| test.c:521:12:521:13 | ui | 4 | -| test.c:525:3:525:9 | uiconst | 10 | -| test.c:528:3:528:9 | ulconst | 10 | -| test.c:529:10:529:16 | uiconst | 40 | -| test.c:529:20:529:26 | ulconst | 40 | -| test.c:533:7:533:7 | i | -2147483648 | -| test.c:533:18:533:18 | i | -1 | -| test.c:534:5:534:5 | i | -2147483648 | -| test.c:534:13:534:13 | i | -1 | -| test.c:535:9:535:9 | i | -5 | -| test.c:537:5:537:5 | i | -2147483648 | -| test.c:537:9:537:9 | i | -5 | -| test.c:538:9:538:9 | i | -30 | -| test.c:540:5:540:5 | i | -30 | -| test.c:541:9:541:9 | i | -210 | -| test.c:543:5:543:5 | i | -210 | -| test.c:544:9:544:9 | i | -1155 | -| test.c:546:7:546:7 | i | -2147483648 | -| test.c:547:5:547:5 | i | -2147483648 | -| test.c:547:9:547:9 | i | -1 | -| test.c:548:9:548:9 | i | 1 | -| test.c:550:3:550:3 | i | -2147483648 | -| test.c:550:7:550:7 | i | -2147483648 | -| test.c:551:10:551:10 | i | -2147483648 | -| test.c:554:3:554:3 | i | -2147483648 | -| test.c:554:10:554:11 | sc | 1 | -| test.c:556:7:556:7 | i | -128 | -| test.c:563:7:563:7 | n | 0 | -| test.c:565:7:565:7 | n | 0 | -| test.c:566:9:566:9 | n | 1 | -| test.c:569:7:569:7 | n | 0 | -| test.c:570:9:570:9 | n | 1 | -| test.c:572:9:572:9 | n | 0 | -| test.c:575:8:575:8 | n | 0 | -| test.c:576:9:576:9 | n | 0 | -| test.c:578:9:578:9 | n | 1 | -| test.c:581:10:581:10 | n | 0 | -| test.c:582:5:582:5 | n | 1 | -| test.c:585:7:585:7 | n | 0 | -| test.c:589:7:589:7 | n | -32768 | -| test.c:592:7:592:7 | n | 0 | -| test.c:593:9:593:9 | n | 0 | -| test.c:595:9:595:9 | n | 1 | -| test.c:598:7:598:7 | n | 0 | -| test.c:599:9:599:9 | n | 1 | -| test.c:601:9:601:9 | n | 0 | -| test.c:604:10:604:10 | n | 0 | -| test.c:605:5:605:5 | n | 1 | -| test.c:608:7:608:7 | n | 0 | -| test.c:612:7:612:7 | n | -32768 | -| test.c:613:9:613:9 | n | -32768 | -| test.c:614:11:614:11 | n | 0 | -| test.c:618:7:618:7 | n | -32768 | -| test.c:619:13:619:13 | n | 5 | -| test.c:622:9:622:9 | n | 6 | -| test.c:625:7:625:7 | n | -32768 | -| test.c:625:22:625:22 | n | -32767 | -| test.c:626:9:626:9 | n | -32766 | -| test.c:629:7:629:7 | n | -32768 | -| test.c:630:5:630:5 | n | 0 | -| test.c:630:10:630:10 | n | 1 | -| test.c:630:14:630:14 | n | 0 | -| test.c:631:6:631:6 | n | 0 | -| test.c:631:10:631:10 | n | 0 | -| test.c:631:14:631:14 | n | 1 | -| test.c:642:7:642:8 | ss | -32768 | -| test.c:643:9:643:10 | ss | 0 | -| test.c:646:7:646:8 | ss | -32768 | -| test.c:647:9:647:10 | ss | -32768 | -| test.c:650:14:650:15 | us | 0 | -| test.c:651:9:651:10 | us | 0 | -| test.c:654:14:654:15 | us | 0 | -| test.c:655:9:655:10 | us | 0 | -| test.c:658:7:658:8 | ss | -32768 | -| test.c:659:9:659:10 | ss | -32768 | -| test.c:662:7:662:8 | ss | -32768 | -| test.c:663:9:663:10 | ss | -1 | -| test.c:669:8:669:8 | s | -2147483648 | -| test.c:669:15:669:15 | s | 0 | -| test.c:669:23:669:23 | s | 0 | -| test.c:670:18:670:18 | s | 0 | -| test.c:670:22:670:22 | s | 0 | -| test.c:671:9:671:14 | result | 0 | -| test.c:677:7:677:7 | i | 0 | -| test.c:678:9:678:9 | i | -2147483648 | -| test.c:682:7:682:7 | u | 0 | -| test.c:683:9:683:9 | u | 0 | -| test.c:688:12:688:12 | s | -2147483648 | -| test.c:689:7:689:8 | s2 | -4 | -| test.c:694:7:694:7 | x | -2147483648 | -| test.c:695:9:695:9 | y | -2147483648 | -| test.c:699:7:699:7 | y | -2147483648 | -| test.c:708:7:708:7 | x | -2147483648 | -| test.c:713:7:713:7 | x | -2147483648 | -| test.c:720:8:720:8 | x | 2147483647 | -| test.c:720:12:720:12 | y | 256 | -| test.c:721:9:721:9 | x | 2147483647 | -| test.c:722:9:722:9 | y | 256 | +| test.c:420:7:420:9 | rhs | 0 | +| test.c:420:19:420:21 | rhs | 0 | +| test.c:421:7:421:9 | rhs | 0 | +| test.c:421:19:421:21 | rhs | 0 | +| test.c:422:7:422:9 | rhs | 0 | +| test.c:422:19:422:21 | rhs | 0 | +| test.c:423:7:423:9 | rhs | 0 | +| test.c:423:19:423:21 | rhs | 0 | +| test.c:424:7:424:9 | rhs | 0 | +| test.c:424:19:424:21 | rhs | 0 | +| test.c:425:10:425:12 | rhs | 0 | +| test.c:429:7:429:7 | a | -2147483648 | +| test.c:430:9:430:9 | b | -2147483648 | +| test.c:431:7:431:7 | a | 17 | +| test.c:431:12:431:12 | b | 23 | +| test.c:433:9:433:9 | a | 17 | +| test.c:434:7:434:7 | b | -2147483648 | +| test.c:439:11:439:11 | a | -2147483648 | +| test.c:439:15:439:15 | b | -2147483648 | +| test.c:440:10:440:10 | a | -2147483648 | +| test.c:440:14:440:14 | b | -2147483648 | +| test.c:447:10:447:11 | ip | 0 | +| test.c:447:20:447:21 | ip | 0 | +| test.c:447:40:447:41 | ip | 0 | +| test.c:448:14:448:15 | ip | 1 | +| test.c:449:14:449:15 | ip | 0 | +| test.c:449:34:449:35 | ip | 0 | +| test.c:450:11:450:12 | ip | 0 | +| test.c:451:13:451:14 | ip | 0 | +| test.c:452:14:452:15 | ip | 0 | +| test.c:453:14:453:15 | ip | 0 | +| test.c:454:15:454:16 | ip | 0 | +| test.c:454:41:454:42 | ip | 0 | +| test.c:454:52:454:53 | ip | 0 | +| test.c:454:67:454:68 | ip | 0 | +| test.c:454:78:454:79 | ip | 0 | +| test.c:455:18:455:19 | ip | 0 | +| test.c:456:23:456:24 | ip | 0 | +| test.c:456:34:456:35 | ip | 0 | +| test.c:457:25:457:26 | ip | 0 | +| test.c:458:20:458:21 | ip | 0 | +| test.c:459:11:459:12 | ip | 0 | +| test.c:459:26:459:27 | ip | 0 | +| test.c:460:16:460:17 | ip | 0 | +| test.c:461:16:461:17 | ip | 0 | +| test.c:462:16:462:17 | ip | 0 | +| test.c:463:17:463:18 | ip | 0 | +| test.c:464:22:464:23 | ip | 0 | +| test.c:464:33:464:34 | ip | 0 | +| test.c:464:48:464:49 | ip | 0 | +| test.c:464:59:464:60 | ip | 0 | +| test.c:465:20:465:21 | ip | 0 | +| test.c:466:25:466:26 | ip | 0 | +| test.c:466:36:466:37 | ip | 0 | +| test.c:467:27:467:28 | ip | 0 | +| test.c:468:22:468:23 | ip | 0 | +| test.c:469:15:469:16 | ip | 0 | +| test.c:469:30:469:31 | ip | 0 | +| test.c:470:11:470:12 | ip | 0 | +| test.c:471:12:471:13 | ip | 0 | +| test.c:472:12:472:13 | ip | 0 | +| test.c:473:13:473:14 | ip | 0 | +| test.c:473:39:473:40 | ip | 0 | +| test.c:473:50:473:51 | ip | 0 | +| test.c:473:65:473:66 | ip | 0 | +| test.c:473:76:473:77 | ip | 0 | +| test.c:474:16:474:17 | ip | 0 | +| test.c:475:21:475:22 | ip | 0 | +| test.c:475:32:475:33 | ip | 0 | +| test.c:476:23:476:24 | ip | 0 | +| test.c:477:18:477:19 | ip | 0 | +| test.c:478:11:478:12 | ip | 0 | +| test.c:478:17:478:18 | ip | 0 | +| test.c:478:37:478:38 | ip | 0 | +| test.c:478:43:478:44 | ip | 0 | +| test.c:479:14:479:15 | ip | 0 | +| test.c:480:14:480:15 | ip | 0 | +| test.c:481:14:481:15 | ip | 0 | +| test.c:482:15:482:16 | ip | 0 | +| test.c:482:41:482:42 | ip | 0 | +| test.c:482:52:482:53 | ip | 0 | +| test.c:482:67:482:68 | ip | 0 | +| test.c:482:78:482:79 | ip | 0 | +| test.c:483:18:483:19 | ip | 0 | +| test.c:484:23:484:24 | ip | 0 | +| test.c:484:34:484:35 | ip | 0 | +| test.c:485:25:485:26 | ip | 0 | +| test.c:486:20:486:21 | ip | 0 | +| test.c:487:14:487:15 | ip | 0 | +| test.c:487:20:487:21 | ip | 0 | +| test.c:488:16:488:17 | ip | 0 | +| test.c:489:12:489:13 | ip | 0 | +| test.c:490:14:490:15 | ip | 0 | +| test.c:491:15:491:16 | ip | 0 | +| test.c:492:16:492:17 | ip | 0 | +| test.c:493:16:493:17 | ip | 0 | +| test.c:494:17:494:18 | ip | 0 | +| test.c:495:22:495:23 | ip | 0 | +| test.c:495:33:495:34 | ip | 0 | +| test.c:495:48:495:49 | ip | 0 | +| test.c:495:59:495:60 | ip | 0 | +| test.c:496:20:496:21 | ip | 0 | +| test.c:497:25:497:26 | ip | 0 | +| test.c:497:36:497:37 | ip | 0 | +| test.c:498:27:498:28 | ip | 0 | +| test.c:499:22:499:23 | ip | 0 | +| test.c:500:13:500:14 | ip | 0 | +| test.c:500:28:500:29 | ip | 0 | +| test.c:501:18:501:19 | ip | 0 | +| test.c:502:18:502:19 | ip | 0 | +| test.c:503:18:503:19 | ip | 0 | +| test.c:504:19:504:20 | ip | 0 | +| test.c:505:24:505:25 | ip | 0 | +| test.c:505:35:505:36 | ip | 0 | +| test.c:505:50:505:51 | ip | 0 | +| test.c:505:61:505:62 | ip | 0 | +| test.c:506:22:506:23 | ip | 0 | +| test.c:507:27:507:28 | ip | 0 | +| test.c:507:38:507:39 | ip | 0 | +| test.c:508:29:508:30 | ip | 0 | +| test.c:509:24:509:25 | ip | 0 | +| test.c:510:17:510:18 | ip | 0 | +| test.c:510:32:510:33 | ip | 0 | +| test.c:511:14:511:15 | ip | 0 | +| test.c:512:18:512:19 | ip | 0 | +| test.c:513:18:513:19 | ip | 0 | +| test.c:514:19:514:20 | ip | 0 | +| test.c:515:24:515:25 | ip | 0 | +| test.c:515:35:515:36 | ip | 0 | +| test.c:515:50:515:51 | ip | 0 | +| test.c:515:61:515:62 | ip | 0 | +| test.c:516:22:516:23 | ip | 0 | +| test.c:517:27:517:28 | ip | 0 | +| test.c:517:38:517:39 | ip | 0 | +| test.c:518:29:518:30 | ip | 0 | +| test.c:519:24:519:25 | ip | 0 | +| test.c:520:17:520:18 | ip | 0 | +| test.c:520:23:520:24 | ip | 0 | +| test.c:520:43:520:44 | ip | 0 | +| test.c:520:49:520:50 | ip | 0 | +| test.c:521:16:521:17 | ip | 0 | +| test.c:522:16:522:17 | ip | 0 | +| test.c:523:16:523:17 | ip | 0 | +| test.c:524:17:524:18 | ip | 0 | +| test.c:525:22:525:23 | ip | 0 | +| test.c:525:33:525:34 | ip | 0 | +| test.c:525:48:525:49 | ip | 0 | +| test.c:525:59:525:60 | ip | 0 | +| test.c:526:20:526:21 | ip | 0 | +| test.c:527:25:527:26 | ip | 0 | +| test.c:527:36:527:37 | ip | 0 | +| test.c:528:27:528:28 | ip | 0 | +| test.c:529:22:529:23 | ip | 0 | +| test.c:530:16:530:17 | ip | 0 | +| test.c:530:22:530:23 | ip | 0 | +| test.c:531:18:531:19 | ip | 0 | +| test.c:532:14:532:15 | ip | 0 | +| test.c:533:14:533:15 | ip | 0 | +| test.c:533:24:533:25 | ip | 0 | +| test.c:533:44:533:45 | ip | 0 | +| test.c:534:16:534:17 | ip | 1 | +| test.c:535:16:535:17 | ip | 0 | +| test.c:535:36:535:37 | ip | 0 | +| test.c:536:14:536:15 | ip | 0 | +| test.c:537:19:537:20 | ip | 0 | +| test.c:538:20:538:21 | ip | 0 | +| test.c:539:20:539:21 | ip | 0 | +| test.c:540:21:540:22 | ip | 0 | +| test.c:541:26:541:27 | ip | 0 | +| test.c:541:37:541:38 | ip | 0 | +| test.c:541:52:541:53 | ip | 0 | +| test.c:541:63:541:64 | ip | 0 | +| test.c:542:24:542:25 | ip | 0 | +| test.c:543:29:543:30 | ip | 0 | +| test.c:543:40:543:41 | ip | 0 | +| test.c:544:31:544:32 | ip | 0 | +| test.c:545:26:545:27 | ip | 0 | +| test.c:546:17:546:18 | ip | 0 | +| test.c:546:32:546:33 | ip | 0 | +| test.c:547:22:547:23 | ip | 0 | +| test.c:548:22:548:23 | ip | 0 | +| test.c:549:22:549:23 | ip | 0 | +| test.c:550:23:550:24 | ip | 0 | +| test.c:551:28:551:29 | ip | 0 | +| test.c:551:39:551:40 | ip | 0 | +| test.c:551:54:551:55 | ip | 0 | +| test.c:551:65:551:66 | ip | 0 | +| test.c:552:26:552:27 | ip | 0 | +| test.c:553:31:553:32 | ip | 0 | +| test.c:553:42:553:43 | ip | 0 | +| test.c:554:33:554:34 | ip | 0 | +| test.c:555:28:555:29 | ip | 0 | +| test.c:556:21:556:22 | ip | 0 | +| test.c:556:36:556:37 | ip | 0 | +| test.c:557:17:557:18 | ip | 0 | +| test.c:558:18:558:19 | ip | 0 | +| test.c:559:18:559:19 | ip | 0 | +| test.c:560:19:560:20 | ip | 0 | +| test.c:561:24:561:25 | ip | 0 | +| test.c:561:35:561:36 | ip | 0 | +| test.c:561:50:561:51 | ip | 0 | +| test.c:561:61:561:62 | ip | 0 | +| test.c:562:22:562:23 | ip | 0 | +| test.c:563:27:563:28 | ip | 0 | +| test.c:563:38:563:39 | ip | 0 | +| test.c:564:29:564:30 | ip | 0 | +| test.c:565:24:565:25 | ip | 0 | +| test.c:566:17:566:18 | ip | 0 | +| test.c:566:23:566:24 | ip | 0 | +| test.c:566:43:566:44 | ip | 0 | +| test.c:566:49:566:50 | ip | 0 | +| test.c:567:20:567:21 | ip | 0 | +| test.c:568:20:568:21 | ip | 0 | +| test.c:569:20:569:21 | ip | 0 | +| test.c:570:21:570:22 | ip | 0 | +| test.c:571:26:571:27 | ip | 0 | +| test.c:571:37:571:38 | ip | 0 | +| test.c:571:52:571:53 | ip | 0 | +| test.c:571:63:571:64 | ip | 0 | +| test.c:572:24:572:25 | ip | 0 | +| test.c:573:29:573:30 | ip | 0 | +| test.c:573:40:573:41 | ip | 0 | +| test.c:574:31:574:32 | ip | 0 | +| test.c:575:26:575:27 | ip | 0 | +| test.c:576:20:576:21 | ip | 0 | +| test.c:576:26:576:27 | ip | 0 | +| test.c:577:22:577:23 | ip | 0 | +| test.c:578:18:578:19 | ip | 0 | +| test.c:579:16:579:17 | ip | 0 | +| test.c:580:17:580:18 | ip | 0 | +| test.c:581:18:581:19 | ip | 0 | +| test.c:582:18:582:19 | ip | 0 | +| test.c:583:19:583:20 | ip | 0 | +| test.c:584:24:584:25 | ip | 0 | +| test.c:584:35:584:36 | ip | 0 | +| test.c:584:50:584:51 | ip | 0 | +| test.c:584:61:584:62 | ip | 0 | +| test.c:585:22:585:23 | ip | 0 | +| test.c:586:27:586:28 | ip | 0 | +| test.c:586:38:586:39 | ip | 0 | +| test.c:587:29:587:30 | ip | 0 | +| test.c:588:24:588:25 | ip | 0 | +| test.c:589:15:589:16 | ip | 0 | +| test.c:589:30:589:31 | ip | 0 | +| test.c:590:20:590:21 | ip | 0 | +| test.c:591:20:591:21 | ip | 0 | +| test.c:592:20:592:21 | ip | 0 | +| test.c:593:21:593:22 | ip | 0 | +| test.c:594:26:594:27 | ip | 0 | +| test.c:594:37:594:38 | ip | 0 | +| test.c:594:52:594:53 | ip | 0 | +| test.c:594:63:594:64 | ip | 0 | +| test.c:595:24:595:25 | ip | 0 | +| test.c:596:29:596:30 | ip | 0 | +| test.c:596:40:596:41 | ip | 0 | +| test.c:597:31:597:32 | ip | 0 | +| test.c:598:26:598:27 | ip | 0 | +| test.c:599:19:599:20 | ip | 0 | +| test.c:599:34:599:35 | ip | 0 | +| test.c:600:16:600:17 | ip | 0 | +| test.c:601:20:601:21 | ip | 0 | +| test.c:602:20:602:21 | ip | 0 | +| test.c:603:21:603:22 | ip | 0 | +| test.c:604:26:604:27 | ip | 0 | +| test.c:604:37:604:38 | ip | 0 | +| test.c:604:52:604:53 | ip | 0 | +| test.c:604:63:604:64 | ip | 0 | +| test.c:605:24:605:25 | ip | 0 | +| test.c:606:29:606:30 | ip | 0 | +| test.c:606:40:606:41 | ip | 0 | +| test.c:607:31:607:32 | ip | 0 | +| test.c:608:26:608:27 | ip | 0 | +| test.c:609:19:609:20 | ip | 0 | +| test.c:609:25:609:26 | ip | 0 | +| test.c:609:45:609:46 | ip | 0 | +| test.c:609:51:609:52 | ip | 0 | +| test.c:610:18:610:19 | ip | 0 | +| test.c:611:18:611:19 | ip | 0 | +| test.c:612:18:612:19 | ip | 0 | +| test.c:613:19:613:20 | ip | 0 | +| test.c:614:24:614:25 | ip | 0 | +| test.c:614:35:614:36 | ip | 0 | +| test.c:614:50:614:51 | ip | 0 | +| test.c:614:61:614:62 | ip | 0 | +| test.c:615:22:615:23 | ip | 0 | +| test.c:616:27:616:28 | ip | 0 | +| test.c:616:38:616:39 | ip | 0 | +| test.c:617:29:617:30 | ip | 0 | +| test.c:618:24:618:25 | ip | 0 | +| test.c:619:18:619:19 | ip | 0 | +| test.c:619:24:619:25 | ip | 0 | +| test.c:620:20:620:21 | ip | 0 | +| test.c:621:16:621:17 | ip | 0 | +| test.c:622:10:622:23 | special_number | 0 | +| test.c:630:7:630:8 | c1 | -2147483648 | +| test.c:630:13:630:13 | x | 0 | +| test.c:631:7:631:8 | c2 | -2147483648 | +| test.c:631:13:631:13 | x | 0 | +| test.c:632:7:632:8 | c3 | -2147483648 | +| test.c:632:13:632:13 | x | 0 | +| test.c:633:7:633:8 | c4 | -2147483648 | +| test.c:633:13:633:13 | x | 0 | +| test.c:634:7:634:8 | c5 | -2147483648 | +| test.c:634:13:634:13 | x | 0 | +| test.c:635:7:635:8 | c1 | -2147483648 | +| test.c:635:13:635:14 | c2 | -2147483648 | +| test.c:635:19:635:19 | x | 0 | +| test.c:636:7:636:8 | c1 | -2147483648 | +| test.c:636:13:636:14 | c3 | -2147483648 | +| test.c:636:19:636:19 | x | 0 | +| test.c:637:7:637:8 | c1 | -2147483648 | +| test.c:637:13:637:14 | c4 | -2147483648 | +| test.c:637:19:637:19 | x | 0 | +| test.c:638:7:638:8 | c1 | -2147483648 | +| test.c:638:13:638:14 | c5 | -2147483648 | +| test.c:638:19:638:19 | x | 0 | +| test.c:639:7:639:8 | c2 | -2147483648 | +| test.c:639:13:639:14 | c3 | -2147483648 | +| test.c:639:19:639:19 | x | 0 | +| test.c:641:11:641:11 | x | 0 | +| test.c:641:15:641:15 | x | 0 | +| test.c:641:19:641:19 | x | 0 | +| test.c:641:23:641:23 | x | 0 | +| test.c:641:27:641:27 | x | 0 | +| test.c:641:31:641:31 | x | 0 | +| test.c:641:35:641:35 | x | 0 | +| test.c:641:39:641:39 | x | 0 | +| test.c:641:43:641:43 | x | 0 | +| test.c:641:47:641:47 | x | 0 | +| test.c:641:51:641:51 | x | 0 | +| test.c:641:55:641:55 | x | 0 | +| test.c:642:10:642:10 | y | -2147483648 | +| test.c:647:20:647:20 | x | 0 | +| test.c:647:30:647:30 | x | 0 | +| test.c:650:3:650:4 | y1 | 0 | +| test.c:650:11:650:11 | y | 0 | +| test.c:650:14:650:14 | y | 1 | +| test.c:651:3:651:4 | y2 | 0 | +| test.c:651:9:651:9 | y | 1 | +| test.c:651:14:651:14 | y | 2 | +| test.c:651:22:651:22 | y | 5 | +| test.c:652:10:652:11 | y1 | 1 | +| test.c:652:15:652:16 | y2 | 5 | +| test.c:660:3:660:3 | i | -2147483648 | +| test.c:661:7:661:7 | i | 10 | +| test.c:663:3:663:3 | i | -2147483648 | +| test.c:664:3:664:3 | i | 10 | +| test.c:665:7:665:7 | i | 20 | +| test.c:667:3:667:3 | i | -2147483648 | +| test.c:668:3:668:3 | i | 40 | +| test.c:669:7:669:7 | i | 30 | +| test.c:671:3:671:3 | i | -2147483648 | +| test.c:671:7:671:7 | j | -2147483648 | +| test.c:672:7:672:7 | i | 40 | +| test.c:674:3:674:3 | i | -2147483648 | +| test.c:674:8:674:8 | j | 40 | +| test.c:675:7:675:7 | i | 50 | +| test.c:677:3:677:3 | i | -2147483648 | +| test.c:677:13:677:13 | j | 50 | +| test.c:678:7:678:7 | i | 60 | +| test.c:685:12:685:12 | a | 0 | +| test.c:685:17:685:17 | a | 3 | +| test.c:685:33:685:33 | b | 0 | +| test.c:685:38:685:38 | b | 5 | +| test.c:686:13:686:13 | a | 3 | +| test.c:686:15:686:15 | b | 5 | +| test.c:687:5:687:9 | total | 0 | +| test.c:687:14:687:14 | r | 15 | +| test.c:689:12:689:12 | a | 0 | +| test.c:689:17:689:17 | a | 3 | +| test.c:689:33:689:33 | b | 0 | +| test.c:689:38:689:38 | b | 0 | +| test.c:690:13:690:13 | a | 3 | +| test.c:690:15:690:15 | b | 0 | +| test.c:691:5:691:9 | total | 0 | +| test.c:691:14:691:14 | r | 0 | +| test.c:693:12:693:12 | a | 0 | +| test.c:693:17:693:17 | a | 3 | +| test.c:693:34:693:34 | b | 0 | +| test.c:693:39:693:39 | b | 13 | +| test.c:694:13:694:13 | a | 3 | +| test.c:694:15:694:15 | b | 13 | +| test.c:695:5:695:9 | total | 0 | +| test.c:695:14:695:14 | r | 39 | +| test.c:698:10:698:14 | total | 0 | +| test.c:704:12:704:12 | b | 0 | +| test.c:704:17:704:17 | b | 5 | +| test.c:705:16:705:16 | b | 5 | +| test.c:706:5:706:9 | total | 0 | +| test.c:706:14:706:14 | r | 55 | +| test.c:708:12:708:12 | b | 0 | +| test.c:708:17:708:17 | b | 0 | +| test.c:709:16:709:16 | b | 0 | +| test.c:710:5:710:9 | total | 0 | +| test.c:710:14:710:14 | r | 0 | +| test.c:712:13:712:13 | b | 0 | +| test.c:712:18:712:18 | b | 13 | +| test.c:713:16:713:16 | b | 13 | +| test.c:714:5:714:9 | total | 0 | +| test.c:714:14:714:14 | r | 143 | +| test.c:717:10:717:14 | total | 0 | +| test.c:722:3:722:3 | x | 0 | +| test.c:722:7:722:7 | y | 0 | +| test.c:723:3:723:4 | xy | 0 | +| test.c:723:8:723:8 | x | 1000000003 | +| test.c:723:12:723:12 | y | 1000000003 | +| test.c:724:10:724:11 | xy | 1000000006000000000 | +| test.c:729:3:729:3 | x | 0 | +| test.c:730:3:730:3 | y | 0 | +| test.c:731:3:731:4 | xy | 0 | +| test.c:731:8:731:8 | x | 274177 | +| test.c:731:12:731:12 | y | 67280421310721 | +| test.c:732:10:732:11 | xy | 18446744073709551616 | +| test.c:736:7:736:8 | ui | 0 | +| test.c:737:43:737:44 | ui | 10 | +| test.c:737:48:737:49 | ui | 10 | +| test.c:738:12:738:17 | result | 100 | +| test.c:740:7:740:8 | ul | 0 | +| test.c:741:28:741:29 | ul | 10 | +| test.c:741:33:741:34 | ul | 10 | +| test.c:742:12:742:17 | result | 0 | +| test.c:748:7:748:8 | ui | 0 | +| test.c:748:19:748:20 | ui | 0 | +| test.c:749:5:749:6 | ui | 2 | +| test.c:749:11:749:12 | ui | 2 | +| test.c:750:12:750:13 | ui | 4 | +| test.c:754:3:754:9 | uiconst | 10 | +| test.c:757:3:757:9 | ulconst | 10 | +| test.c:758:10:758:16 | uiconst | 40 | +| test.c:758:20:758:26 | ulconst | 40 | +| test.c:762:7:762:7 | i | -2147483648 | +| test.c:762:18:762:18 | i | -1 | +| test.c:763:5:763:5 | i | -2147483648 | +| test.c:763:13:763:13 | i | -1 | +| test.c:764:9:764:9 | i | -5 | +| test.c:766:5:766:5 | i | -2147483648 | +| test.c:766:9:766:9 | i | -5 | +| test.c:767:9:767:9 | i | -30 | +| test.c:769:5:769:5 | i | -30 | +| test.c:770:9:770:9 | i | -210 | +| test.c:772:5:772:5 | i | -210 | +| test.c:773:9:773:9 | i | -1155 | +| test.c:775:7:775:7 | i | -2147483648 | +| test.c:776:5:776:5 | i | -2147483648 | +| test.c:776:9:776:9 | i | -1 | +| test.c:777:9:777:9 | i | 1 | +| test.c:779:3:779:3 | i | -2147483648 | +| test.c:779:7:779:7 | i | -2147483648 | +| test.c:780:10:780:10 | i | -2147483648 | +| test.c:783:3:783:3 | i | -2147483648 | +| test.c:783:10:783:11 | sc | 1 | +| test.c:785:7:785:7 | i | -128 | +| test.c:792:7:792:7 | n | 0 | +| test.c:794:7:794:7 | n | 0 | +| test.c:795:9:795:9 | n | 1 | +| test.c:798:7:798:7 | n | 0 | +| test.c:799:9:799:9 | n | 1 | +| test.c:801:9:801:9 | n | 0 | +| test.c:804:8:804:8 | n | 0 | +| test.c:805:9:805:9 | n | 0 | +| test.c:807:9:807:9 | n | 1 | +| test.c:810:10:810:10 | n | 0 | +| test.c:811:5:811:5 | n | 1 | +| test.c:814:7:814:7 | n | 0 | +| test.c:818:7:818:7 | n | -32768 | +| test.c:821:7:821:7 | n | 0 | +| test.c:822:9:822:9 | n | 0 | +| test.c:824:9:824:9 | n | 1 | +| test.c:827:7:827:7 | n | 0 | +| test.c:828:9:828:9 | n | 1 | +| test.c:830:9:830:9 | n | 0 | +| test.c:833:10:833:10 | n | 0 | +| test.c:834:5:834:5 | n | 1 | +| test.c:837:7:837:7 | n | 0 | +| test.c:841:7:841:7 | n | -32768 | +| test.c:842:9:842:9 | n | -32768 | +| test.c:843:11:843:11 | n | 0 | +| test.c:847:7:847:7 | n | -32768 | +| test.c:848:13:848:13 | n | 5 | +| test.c:851:9:851:9 | n | 6 | +| test.c:854:7:854:7 | n | -32768 | +| test.c:854:22:854:22 | n | -32767 | +| test.c:855:9:855:9 | n | -32766 | +| test.c:858:7:858:7 | n | -32768 | +| test.c:859:5:859:5 | n | 0 | +| test.c:859:10:859:10 | n | 1 | +| test.c:859:14:859:14 | n | 0 | +| test.c:860:6:860:6 | n | 0 | +| test.c:860:10:860:10 | n | 0 | +| test.c:860:14:860:14 | n | 1 | +| test.c:871:7:871:8 | ss | -32768 | +| test.c:872:9:872:10 | ss | 0 | +| test.c:875:7:875:8 | ss | -32768 | +| test.c:876:9:876:10 | ss | -32768 | +| test.c:879:14:879:15 | us | 0 | +| test.c:880:9:880:10 | us | 0 | +| test.c:883:14:883:15 | us | 0 | +| test.c:884:9:884:10 | us | 0 | +| test.c:887:7:887:8 | ss | -32768 | +| test.c:888:9:888:10 | ss | -32768 | +| test.c:891:7:891:8 | ss | -32768 | +| test.c:892:9:892:10 | ss | -1 | +| test.c:898:8:898:8 | s | -2147483648 | +| test.c:898:15:898:15 | s | 0 | +| test.c:898:23:898:23 | s | 0 | +| test.c:899:18:899:18 | s | 0 | +| test.c:899:22:899:22 | s | 0 | +| test.c:900:9:900:14 | result | 0 | +| test.c:906:7:906:7 | i | 0 | +| test.c:907:9:907:9 | i | -2147483648 | +| test.c:911:7:911:7 | u | 0 | +| test.c:912:9:912:9 | u | 0 | +| test.c:917:12:917:12 | s | -2147483648 | +| test.c:918:7:918:8 | s2 | -4 | +| test.c:923:7:923:7 | x | -2147483648 | +| test.c:924:9:924:9 | y | -2147483648 | +| test.c:928:7:928:7 | y | -2147483648 | +| test.c:937:7:937:7 | x | -2147483648 | +| test.c:942:7:942:7 | x | -2147483648 | +| test.c:949:8:949:8 | x | 2147483647 | +| test.c:949:12:949:12 | y | 256 | +| test.c:950:9:950:9 | x | 2147483647 | +| test.c:951:9:951:9 | y | 256 | | test.cpp:10:7:10:7 | b | -2147483648 | | test.cpp:11:5:11:5 | x | -2147483648 | | test.cpp:13:10:13:10 | x | -2147483648 | diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected new file mode 100644 index 000000000000..0d30eb30f75b --- /dev/null +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected @@ -0,0 +1,4628 @@ +testFailures +estimateNrOfBounds +| inline_assembly.c:9:20:9:20 | 0 | 1.0 | +| inline_assembly.c:9:20:9:20 | (unsigned int)... | 1.0 | +| inline_assembly.c:10:3:10:3 | y | 1.0 | +| inline_assembly.c:10:3:10:7 | ... = ... | 1.0 | +| inline_assembly.c:10:7:10:7 | 1 | 1.0 | +| inline_assembly.c:10:7:10:7 | (unsigned int)... | 1.0 | +| inline_assembly.c:12:3:12:8 | call to printf | 1.0 | +| inline_assembly.c:12:29:12:29 | x | 1.0 | +| inline_assembly.c:12:32:12:32 | y | 1.0 | +| inline_assembly.c:16:25:16:25 | x | 1.0 | +| inline_assembly.c:16:35:16:35 | y | 1.0 | +| inline_assembly.c:21:3:21:8 | call to printf | 1.0 | +| inline_assembly.c:21:29:21:29 | x | 1.0 | +| inline_assembly.c:21:32:21:32 | y | 1.0 | +| inline_assembly.c:23:10:23:10 | 0 | 1.0 | +| minmax.c:16:9:16:10 | 1 | 1.0 | +| minmax.c:16:16:16:17 | 2 | 1.0 | +| minmax.c:16:23:16:24 | 3 | 1.0 | +| minmax.c:18:2:18:7 | call to printf | 1.0 | +| minmax.c:18:37:18:37 | x | 1.0 | +| minmax.c:18:40:18:40 | y | 1.0 | +| minmax.c:18:43:18:43 | z | 1.0 | +| minmax.c:20:2:20:2 | z | 1.0 | +| minmax.c:20:2:24:3 | ... = ... | 2.0 | +| minmax.c:20:6:24:3 | (statement expression) | 2.0 | +| minmax.c:21:10:21:11 | 0 | 1.0 | +| minmax.c:22:7:22:14 | ... != ... | 1.0 | +| minmax.c:22:8:22:8 | x | 1.0 | +| minmax.c:22:14:22:14 | y | 1.0 | +| minmax.c:22:18:22:18 | t | 1.0 | +| minmax.c:22:18:22:22 | ... = ... | 1.0 | +| minmax.c:22:22:22:22 | x | 1.0 | +| minmax.c:23:3:23:3 | t | 2.0 | +| minmax.c:26:2:26:7 | call to printf | 1.0 | +| minmax.c:26:37:26:37 | x | 1.0 | +| minmax.c:26:40:26:40 | y | 1.0 | +| minmax.c:26:43:26:43 | z | 2.0 | +| test.c:6:14:6:15 | 0 | 1.0 | +| test.c:8:5:8:9 | count | 1.0 | +| test.c:8:5:8:19 | ... = ... | 13.0 | +| test.c:8:13:8:17 | count | 13.0 | +| test.c:8:13:8:19 | ... + ... | 13.0 | +| test.c:8:19:8:19 | 1 | 1.0 | +| test.c:10:10:10:14 | count | 13.0 | +| test.c:14:14:14:15 | 0 | 1.0 | +| test.c:16:5:16:9 | count | 1.0 | +| test.c:16:5:16:26 | ... = ... | 13.0 | +| test.c:16:13:16:21 | (...) | 13.0 | +| test.c:16:13:16:26 | ... % ... | 13.0 | +| test.c:16:14:16:18 | count | 13.0 | +| test.c:16:14:16:20 | ... + ... | 13.0 | +| test.c:16:20:16:20 | 1 | 1.0 | +| test.c:16:25:16:26 | 10 | 1.0 | +| test.c:18:10:18:14 | count | 13.0 | +| test.c:22:14:22:15 | 0 | 1.0 | +| test.c:24:5:24:9 | count | 13.0 | +| test.c:24:5:24:11 | ... ++ | 13.0 | +| test.c:25:5:25:9 | count | 1.0 | +| test.c:25:5:25:22 | ... = ... | 13.0 | +| test.c:25:13:25:17 | count | 13.0 | +| test.c:25:13:25:22 | ... % ... | 13.0 | +| test.c:25:21:25:22 | 10 | 1.0 | +| test.c:27:10:27:14 | count | 13.0 | +| test.c:31:10:31:11 | 0 | 1.0 | +| test.c:32:14:32:15 | 0 | 1.0 | +| test.c:33:8:33:8 | i | 1.0 | +| test.c:33:8:33:12 | ... = ... | 1.0 | +| test.c:33:12:33:12 | 0 | 1.0 | +| test.c:33:15:33:15 | i | 13.0 | +| test.c:33:15:33:19 | ... < ... | 1.0 | +| test.c:33:19:33:19 | 2 | 1.0 | +| test.c:33:22:33:22 | i | 1.0 | +| test.c:33:22:33:28 | ... = ... | 13.0 | +| test.c:33:26:33:26 | i | 13.0 | +| test.c:33:26:33:28 | ... + ... | 13.0 | +| test.c:33:28:33:28 | 1 | 1.0 | +| test.c:34:5:34:9 | total | 13.0 | +| test.c:34:5:34:14 | ... += ... | 13.0 | +| test.c:34:14:34:14 | i | 13.0 | +| test.c:36:10:36:14 | total | 13.0 | +| test.c:36:10:36:18 | ... + ... | 13.0 | +| test.c:36:18:36:18 | i | 13.0 | +| test.c:40:10:40:11 | 0 | 1.0 | +| test.c:41:14:41:15 | 0 | 1.0 | +| test.c:42:8:42:8 | i | 1.0 | +| test.c:42:8:42:12 | ... = ... | 1.0 | +| test.c:42:12:42:12 | 0 | 1.0 | +| test.c:42:15:42:15 | i | 13.0 | +| test.c:42:15:42:19 | ... < ... | 1.0 | +| test.c:42:19:42:19 | 2 | 1.0 | +| test.c:42:22:42:22 | i | 13.0 | +| test.c:42:22:42:24 | ... ++ | 13.0 | +| test.c:43:5:43:9 | total | 13.0 | +| test.c:43:5:43:14 | ... += ... | 13.0 | +| test.c:43:14:43:14 | i | 13.0 | +| test.c:45:10:45:14 | total | 13.0 | +| test.c:45:10:45:18 | ... + ... | 13.0 | +| test.c:45:18:45:18 | i | 13.0 | +| test.c:49:10:49:11 | 0 | 1.0 | +| test.c:50:14:50:15 | 0 | 1.0 | +| test.c:51:8:51:8 | i | 1.0 | +| test.c:51:8:51:12 | ... = ... | 1.0 | +| test.c:51:12:51:12 | 0 | 1.0 | +| test.c:51:15:51:15 | i | 13.0 | +| test.c:51:15:51:17 | ... + ... | 13.0 | +| test.c:51:15:51:21 | ... < ... | 1.0 | +| test.c:51:17:51:17 | 2 | 1.0 | +| test.c:51:21:51:21 | 4 | 1.0 | +| test.c:51:24:51:24 | i | 1.0 | +| test.c:51:24:51:30 | ... = ... | 13.0 | +| test.c:51:28:51:28 | i | 13.0 | +| test.c:51:28:51:30 | ... + ... | 13.0 | +| test.c:51:30:51:30 | 1 | 1.0 | +| test.c:52:5:52:9 | total | 13.0 | +| test.c:52:5:52:14 | ... += ... | 13.0 | +| test.c:52:14:52:14 | i | 13.0 | +| test.c:54:10:54:14 | total | 13.0 | +| test.c:54:10:54:18 | ... + ... | 13.0 | +| test.c:54:18:54:18 | i | 13.0 | +| test.c:58:7:58:7 | i | 1.0 | +| test.c:58:7:58:11 | ... < ... | 1.0 | +| test.c:58:11:58:11 | 4 | 1.0 | +| test.c:59:9:59:9 | i | 1.0 | +| test.c:59:9:59:13 | ... < ... | 1.0 | +| test.c:59:13:59:13 | 5 | 1.0 | +| test.c:60:14:60:14 | i | 1.0 | +| test.c:63:10:63:10 | 1 | 1.0 | +| test.c:67:7:67:11 | - ... | 1.0 | +| test.c:67:7:67:15 | ... < ... | 1.0 | +| test.c:67:7:67:25 | ... && ... | 1.0 | +| test.c:67:8:67:11 | 1000 | 1.0 | +| test.c:67:15:67:15 | y | 1.0 | +| test.c:67:20:67:20 | y | 1.0 | +| test.c:67:20:67:25 | ... < ... | 1.0 | +| test.c:67:24:67:25 | 10 | 1.0 | +| test.c:68:9:68:9 | x | 1.0 | +| test.c:68:9:68:15 | ... < ... | 1.0 | +| test.c:68:13:68:13 | y | 1.0 | +| test.c:68:13:68:15 | ... - ... | 1.0 | +| test.c:68:15:68:15 | 2 | 1.0 | +| test.c:69:14:69:14 | x | 1.0 | +| test.c:72:10:72:10 | y | 1.0 | +| test.c:76:7:76:7 | y | 1.0 | +| test.c:76:7:76:12 | ... == ... | 1.0 | +| test.c:76:12:76:12 | 0 | 1.0 | +| test.c:77:9:77:9 | x | 1.0 | +| test.c:77:9:77:13 | ... < ... | 1.0 | +| test.c:77:13:77:13 | 4 | 1.0 | +| test.c:78:14:78:14 | 0 | 1.0 | +| test.c:81:9:81:9 | x | 1.0 | +| test.c:81:9:81:13 | ... < ... | 1.0 | +| test.c:81:13:81:13 | 4 | 1.0 | +| test.c:82:14:82:14 | 1 | 1.0 | +| test.c:85:10:85:10 | x | 1.0 | +| test.c:89:7:89:7 | y | 1.0 | +| test.c:89:7:89:11 | ... > ... | 1.0 | +| test.c:89:11:89:11 | 7 | 1.0 | +| test.c:90:9:90:9 | x | 1.0 | +| test.c:90:9:90:13 | ... < ... | 1.0 | +| test.c:90:13:90:13 | y | 1.0 | +| test.c:91:14:91:14 | 0 | 1.0 | +| test.c:93:12:93:12 | x | 1.0 | +| test.c:95:10:95:10 | 1 | 1.0 | +| test.c:100:3:100:3 | c | 1.0 | +| test.c:100:3:100:8 | ... = ... | 1.0 | +| test.c:100:7:100:8 | * ... | 1.0 | +| test.c:101:7:101:7 | (int)... | 1.0 | +| test.c:101:7:101:7 | c | 1.0 | +| test.c:101:7:101:15 | ... != ... | 1.0 | +| test.c:101:12:101:15 | 0 | 1.0 | +| test.c:102:5:102:8 | * ... | 1.0 | +| test.c:102:5:102:15 | ... = ... | 1.0 | +| test.c:102:12:102:15 | 0 | 1.0 | +| test.c:102:12:102:15 | (char)... | 1.0 | +| test.c:104:7:104:7 | (int)... | 2.0 | +| test.c:104:7:104:7 | c | 2.0 | +| test.c:104:7:104:14 | ... == ... | 1.0 | +| test.c:104:12:104:14 | 58 | 1.0 | +| test.c:105:5:105:5 | c | 1.0 | +| test.c:105:5:105:10 | ... = ... | 1.0 | +| test.c:105:9:105:10 | * ... | 1.0 | +| test.c:106:9:106:9 | (int)... | 1.0 | +| test.c:106:9:106:9 | c | 1.0 | +| test.c:106:9:106:17 | ... != ... | 1.0 | +| test.c:106:14:106:17 | 0 | 1.0 | +| test.c:107:7:107:10 | * ... | 1.0 | +| test.c:107:7:107:17 | ... = ... | 1.0 | +| test.c:107:14:107:17 | 0 | 1.0 | +| test.c:107:14:107:17 | (char)... | 1.0 | +| test.c:109:9:109:9 | (int)... | 2.0 | +| test.c:109:9:109:9 | c | 2.0 | +| test.c:109:9:109:16 | ... != ... | 1.0 | +| test.c:109:14:109:16 | 44 | 1.0 | +| test.c:110:14:110:14 | 1 | 1.0 | +| test.c:112:10:112:10 | 0 | 1.0 | +| test.c:118:24:118:24 | 0 | 1.0 | +| test.c:118:24:118:24 | (size_type)... | 1.0 | +| test.c:119:10:119:10 | n | 1.0 | +| test.c:119:10:119:12 | ... ++ | 1.0 | +| test.c:123:22:123:22 | 0 | 1.0 | +| test.c:123:22:123:22 | (size_type)... | 1.0 | +| test.c:124:11:124:15 | Start | 13.0 | +| test.c:124:11:124:36 | ... <= ... | 1.0 | +| test.c:124:20:124:32 | call to test12_helper | 1.0 | +| test.c:124:20:124:36 | ... - ... | 1.0 | +| test.c:124:36:124:36 | 1 | 1.0 | +| test.c:124:36:124:36 | (unsigned long long)... | 1.0 | +| test.c:126:31:126:43 | call to test12_helper | 1.0 | +| test.c:127:6:127:10 | Start | 13.0 | +| test.c:127:6:127:24 | ... += ... | 13.0 | +| test.c:127:15:127:20 | Length | 1.0 | +| test.c:127:15:127:24 | ... + ... | 1.0 | +| test.c:127:24:127:24 | 1 | 1.0 | +| test.c:127:24:127:24 | (unsigned long long)... | 1.0 | +| test.c:130:11:130:11 | 1 | 1.0 | +| test.c:135:22:135:22 | (unsigned char)... | 1.0 | +| test.c:135:22:135:22 | c | 1.0 | +| test.c:136:20:136:20 | 0 | 1.0 | +| test.c:136:20:136:20 | (unsigned int)... | 1.0 | +| test.c:137:20:137:20 | x | 1.0 | +| test.c:137:20:137:22 | ... - ... | 1.0 | +| test.c:137:22:137:22 | 1 | 1.0 | +| test.c:137:22:137:22 | (unsigned int)... | 1.0 | +| test.c:138:11:138:11 | i | 1.0 | +| test.c:138:11:138:13 | ... + ... | 1.0 | +| test.c:138:13:138:13 | 1 | 1.0 | +| test.c:139:10:139:41 | (double)... | 1.0 | +| test.c:139:10:139:41 | (int)... | 1.0 | +| test.c:139:18:139:41 | (...) | 1.0 | +| test.c:139:19:139:19 | (int)... | 1.0 | +| test.c:139:19:139:19 | c | 1.0 | +| test.c:139:19:139:23 | ... + ... | 1.0 | +| test.c:139:19:139:28 | (unsigned int)... | 1.0 | +| test.c:139:19:139:28 | ... + ... | 1.0 | +| test.c:139:19:139:32 | ... + ... | 1.0 | +| test.c:139:19:139:36 | ... + ... | 1.0 | +| test.c:139:19:139:40 | ... + ... | 1.0 | +| test.c:139:23:139:23 | i | 1.0 | +| test.c:139:27:139:28 | (int)... | 1.0 | +| test.c:139:27:139:28 | uc | 1.0 | +| test.c:139:32:139:32 | x | 1.0 | +| test.c:139:36:139:36 | y | 1.0 | +| test.c:139:40:139:40 | (unsigned int)... | 1.0 | +| test.c:139:40:139:40 | z | 1.0 | +| test.c:144:12:144:23 | (int)... | 1.0 | +| test.c:144:17:144:23 | (char)... | 1.0 | +| test.c:144:23:144:23 | x | 1.0 | +| test.c:145:12:145:32 | (int)... | 1.0 | +| test.c:145:17:145:32 | (unsigned char)... | 1.0 | +| test.c:145:32:145:32 | x | 1.0 | +| test.c:146:12:146:33 | (int)... | 1.0 | +| test.c:146:17:146:33 | (unsigned short)... | 1.0 | +| test.c:146:33:146:33 | x | 1.0 | +| test.c:147:12:147:31 | (int)... | 1.0 | +| test.c:147:17:147:31 | (unsigned int)... | 1.0 | +| test.c:147:31:147:31 | x | 1.0 | +| test.c:148:13:148:13 | (char)... | 1.0 | +| test.c:148:13:148:13 | x | 1.0 | +| test.c:149:23:149:23 | (unsigned short)... | 1.0 | +| test.c:149:23:149:23 | x | 1.0 | +| test.c:150:10:150:11 | x0 | 1.0 | +| test.c:150:10:150:16 | ... + ... | 1.0 | +| test.c:150:10:150:21 | ... + ... | 1.0 | +| test.c:150:10:150:26 | ... + ... | 1.0 | +| test.c:150:10:150:31 | ... + ... | 1.0 | +| test.c:150:10:150:36 | ... + ... | 1.0 | +| test.c:150:15:150:16 | x1 | 1.0 | +| test.c:150:20:150:21 | x2 | 1.0 | +| test.c:150:25:150:26 | x3 | 1.0 | +| test.c:150:30:150:31 | (int)... | 1.0 | +| test.c:150:30:150:31 | c0 | 1.0 | +| test.c:150:35:150:36 | (int)... | 1.0 | +| test.c:150:35:150:36 | s0 | 1.0 | +| test.c:154:10:154:31 | (...) | 1.0 | +| test.c:154:10:154:40 | ... ? ... : ... | 1.0 | +| test.c:154:11:154:11 | x | 1.0 | +| test.c:154:11:154:15 | ... > ... | 1.0 | +| test.c:154:11:154:30 | ... && ... | 1.0 | +| test.c:154:15:154:15 | 0 | 1.0 | +| test.c:154:15:154:15 | (long long)... | 1.0 | +| test.c:154:20:154:20 | x | 1.0 | +| test.c:154:20:154:30 | ... == ... | 1.0 | +| test.c:154:25:154:30 | (int)... | 1.0 | +| test.c:154:25:154:30 | (long long)... | 1.0 | +| test.c:154:30:154:30 | x | 1.0 | +| test.c:154:35:154:35 | x | 1.0 | +| test.c:154:39:154:40 | (long long)... | 1.0 | +| test.c:154:39:154:40 | - ... | 1.0 | +| test.c:154:40:154:40 | 1 | 1.0 | +| test.c:159:14:159:15 | 0 | 1.0 | +| test.c:161:7:161:7 | 3 | 1.0 | +| test.c:161:7:161:12 | ... <= ... | 1.0 | +| test.c:161:7:161:23 | ... && ... | 1.0 | +| test.c:161:12:161:12 | a | 1.0 | +| test.c:161:17:161:17 | a | 1.0 | +| test.c:161:17:161:23 | ... <= ... | 1.0 | +| test.c:161:22:161:23 | 11 | 1.0 | +| test.c:162:13:162:14 | + ... | 1.0 | +| test.c:162:14:162:14 | a | 1.0 | +| test.c:163:13:163:14 | - ... | 1.0 | +| test.c:163:14:163:14 | a | 1.0 | +| test.c:164:5:164:9 | total | 1.0 | +| test.c:164:5:164:16 | ... += ... | 1.0 | +| test.c:164:14:164:14 | b | 1.0 | +| test.c:164:14:164:16 | ... + ... | 1.0 | +| test.c:164:16:164:16 | c | 1.0 | +| test.c:166:7:166:7 | 0 | 1.0 | +| test.c:166:7:166:12 | ... <= ... | 1.0 | +| test.c:166:7:166:23 | ... && ... | 1.0 | +| test.c:166:12:166:12 | a | 2.0 | +| test.c:166:17:166:17 | a | 2.0 | +| test.c:166:17:166:23 | ... <= ... | 1.0 | +| test.c:166:22:166:23 | 11 | 1.0 | +| test.c:167:13:167:14 | + ... | 2.0 | +| test.c:167:14:167:14 | a | 2.0 | +| test.c:168:13:168:14 | - ... | 2.0 | +| test.c:168:14:168:14 | a | 2.0 | +| test.c:169:5:169:9 | total | 2.0 | +| test.c:169:5:169:16 | ... += ... | 8.0 | +| test.c:169:14:169:14 | b | 2.0 | +| test.c:169:14:169:16 | ... + ... | 4.0 | +| test.c:169:16:169:16 | c | 2.0 | +| test.c:171:7:171:8 | - ... | 1.0 | +| test.c:171:7:171:13 | ... <= ... | 1.0 | +| test.c:171:7:171:24 | ... && ... | 1.0 | +| test.c:171:8:171:8 | 7 | 1.0 | +| test.c:171:13:171:13 | a | 3.0 | +| test.c:171:18:171:18 | a | 3.0 | +| test.c:171:18:171:24 | ... <= ... | 1.0 | +| test.c:171:23:171:24 | 11 | 1.0 | +| test.c:172:13:172:14 | + ... | 3.0 | +| test.c:172:14:172:14 | a | 3.0 | +| test.c:173:13:173:14 | - ... | 3.0 | +| test.c:173:14:173:14 | a | 3.0 | +| test.c:174:5:174:9 | total | 10.0 | +| test.c:174:5:174:16 | ... += ... | 90.0 | +| test.c:174:14:174:14 | b | 3.0 | +| test.c:174:14:174:16 | ... + ... | 9.0 | +| test.c:174:16:174:16 | c | 3.0 | +| test.c:176:7:176:8 | - ... | 1.0 | +| test.c:176:7:176:13 | ... <= ... | 1.0 | +| test.c:176:7:176:23 | ... && ... | 1.0 | +| test.c:176:8:176:8 | 7 | 1.0 | +| test.c:176:13:176:13 | a | 4.0 | +| test.c:176:18:176:18 | a | 4.0 | +| test.c:176:18:176:23 | ... <= ... | 1.0 | +| test.c:176:23:176:23 | 1 | 1.0 | +| test.c:177:13:177:14 | + ... | 4.0 | +| test.c:177:14:177:14 | a | 4.0 | +| test.c:178:13:178:14 | - ... | 4.0 | +| test.c:178:14:178:14 | a | 4.0 | +| test.c:179:5:179:9 | total | 100.0 | +| test.c:179:5:179:16 | ... += ... | 1600.0 | +| test.c:179:14:179:14 | b | 4.0 | +| test.c:179:14:179:16 | ... + ... | 16.0 | +| test.c:179:16:179:16 | c | 4.0 | +| test.c:181:7:181:8 | - ... | 1.0 | +| test.c:181:7:181:13 | ... <= ... | 1.0 | +| test.c:181:7:181:23 | ... && ... | 1.0 | +| test.c:181:8:181:8 | 7 | 1.0 | +| test.c:181:13:181:13 | a | 5.0 | +| test.c:181:18:181:18 | a | 5.0 | +| test.c:181:18:181:23 | ... <= ... | 1.0 | +| test.c:181:23:181:23 | 0 | 1.0 | +| test.c:182:13:182:14 | + ... | 5.0 | +| test.c:182:14:182:14 | a | 5.0 | +| test.c:183:13:183:14 | - ... | 5.0 | +| test.c:183:14:183:14 | a | 5.0 | +| test.c:184:5:184:9 | total | 1700.0 | +| test.c:184:5:184:16 | ... += ... | 42500.0 | +| test.c:184:14:184:14 | b | 5.0 | +| test.c:184:14:184:16 | ... + ... | 25.0 | +| test.c:184:16:184:16 | c | 5.0 | +| test.c:186:7:186:8 | - ... | 1.0 | +| test.c:186:7:186:13 | ... <= ... | 1.0 | +| test.c:186:7:186:24 | ... && ... | 1.0 | +| test.c:186:8:186:8 | 7 | 1.0 | +| test.c:186:13:186:13 | a | 6.0 | +| test.c:186:18:186:18 | a | 6.0 | +| test.c:186:18:186:24 | ... <= ... | 1.0 | +| test.c:186:23:186:24 | - ... | 1.0 | +| test.c:186:24:186:24 | 2 | 1.0 | +| test.c:187:13:187:14 | + ... | 6.0 | +| test.c:187:14:187:14 | a | 6.0 | +| test.c:188:13:188:14 | - ... | 6.0 | +| test.c:188:14:188:14 | a | 6.0 | +| test.c:189:5:189:9 | total | 44200.0 | +| test.c:189:5:189:16 | ... += ... | 1591200.0 | +| test.c:189:14:189:14 | b | 6.0 | +| test.c:189:14:189:16 | ... + ... | 36.0 | +| test.c:189:16:189:16 | c | 6.0 | +| test.c:192:10:192:14 | total | 1635400.0 | +| test.c:198:14:198:15 | 0 | 1.0 | +| test.c:200:7:200:7 | 3 | 1.0 | +| test.c:200:7:200:12 | ... <= ... | 1.0 | +| test.c:200:7:200:23 | ... && ... | 1.0 | +| test.c:200:7:200:33 | ... && ... | 1.0 | +| test.c:200:7:200:44 | ... && ... | 1.0 | +| test.c:200:12:200:12 | a | 1.0 | +| test.c:200:17:200:17 | a | 1.0 | +| test.c:200:17:200:23 | ... <= ... | 1.0 | +| test.c:200:22:200:23 | 11 | 1.0 | +| test.c:200:28:200:28 | 5 | 1.0 | +| test.c:200:28:200:33 | ... <= ... | 1.0 | +| test.c:200:33:200:33 | b | 1.0 | +| test.c:200:38:200:38 | b | 1.0 | +| test.c:200:38:200:44 | ... <= ... | 1.0 | +| test.c:200:43:200:44 | 23 | 1.0 | +| test.c:201:13:201:13 | a | 1.0 | +| test.c:201:13:201:15 | ... * ... | 1.0 | +| test.c:201:15:201:15 | b | 1.0 | +| test.c:202:5:202:9 | total | 1.0 | +| test.c:202:5:202:14 | ... += ... | 1.0 | +| test.c:202:14:202:14 | r | 1.0 | +| test.c:204:7:204:7 | 3 | 1.0 | +| test.c:204:7:204:12 | ... <= ... | 1.0 | +| test.c:204:7:204:23 | ... && ... | 1.0 | +| test.c:204:7:204:33 | ... && ... | 1.0 | +| test.c:204:7:204:44 | ... && ... | 1.0 | +| test.c:204:12:204:12 | a | 2.0 | +| test.c:204:17:204:17 | a | 2.0 | +| test.c:204:17:204:23 | ... <= ... | 1.0 | +| test.c:204:22:204:23 | 11 | 1.0 | +| test.c:204:28:204:28 | 0 | 1.0 | +| test.c:204:28:204:33 | ... <= ... | 1.0 | +| test.c:204:33:204:33 | b | 3.0 | +| test.c:204:38:204:38 | b | 3.0 | +| test.c:204:38:204:44 | ... <= ... | 1.0 | +| test.c:204:43:204:44 | 23 | 1.0 | +| test.c:205:13:205:13 | a | 2.0 | +| test.c:205:13:205:15 | ... * ... | 1.0 | +| test.c:205:15:205:15 | b | 3.0 | +| test.c:206:5:206:9 | total | 2.0 | +| test.c:206:5:206:14 | ... += ... | 2.0 | +| test.c:206:14:206:14 | r | 1.0 | +| test.c:208:7:208:7 | 3 | 1.0 | +| test.c:208:7:208:12 | ... <= ... | 1.0 | +| test.c:208:7:208:23 | ... && ... | 1.0 | +| test.c:208:7:208:35 | ... && ... | 1.0 | +| test.c:208:7:208:46 | ... && ... | 1.0 | +| test.c:208:12:208:12 | a | 3.0 | +| test.c:208:17:208:17 | a | 3.0 | +| test.c:208:17:208:23 | ... <= ... | 1.0 | +| test.c:208:22:208:23 | 11 | 1.0 | +| test.c:208:28:208:30 | - ... | 1.0 | +| test.c:208:28:208:35 | ... <= ... | 1.0 | +| test.c:208:29:208:30 | 13 | 1.0 | +| test.c:208:35:208:35 | b | 7.0 | +| test.c:208:40:208:40 | b | 7.0 | +| test.c:208:40:208:46 | ... <= ... | 1.0 | +| test.c:208:45:208:46 | 23 | 1.0 | +| test.c:209:13:209:13 | a | 3.0 | +| test.c:209:13:209:15 | ... * ... | 1.0 | +| test.c:209:15:209:15 | b | 7.0 | +| test.c:210:5:210:9 | total | 4.0 | +| test.c:210:5:210:14 | ... += ... | 4.0 | +| test.c:210:14:210:14 | r | 1.0 | +| test.c:212:7:212:7 | 3 | 1.0 | +| test.c:212:7:212:12 | ... <= ... | 1.0 | +| test.c:212:7:212:23 | ... && ... | 1.0 | +| test.c:212:7:212:35 | ... && ... | 1.0 | +| test.c:212:7:212:45 | ... && ... | 1.0 | +| test.c:212:12:212:12 | a | 4.0 | +| test.c:212:17:212:17 | a | 4.0 | +| test.c:212:17:212:23 | ... <= ... | 1.0 | +| test.c:212:22:212:23 | 11 | 1.0 | +| test.c:212:28:212:30 | - ... | 1.0 | +| test.c:212:28:212:35 | ... <= ... | 1.0 | +| test.c:212:29:212:30 | 13 | 1.0 | +| test.c:212:35:212:35 | b | 15.0 | +| test.c:212:40:212:40 | b | 15.0 | +| test.c:212:40:212:45 | ... <= ... | 1.0 | +| test.c:212:45:212:45 | 0 | 1.0 | +| test.c:213:13:213:13 | a | 4.0 | +| test.c:213:13:213:15 | ... * ... | 1.0 | +| test.c:213:15:213:15 | b | 15.0 | +| test.c:214:5:214:9 | total | 8.0 | +| test.c:214:5:214:14 | ... += ... | 8.0 | +| test.c:214:14:214:14 | r | 1.0 | +| test.c:216:7:216:7 | 3 | 1.0 | +| test.c:216:7:216:12 | ... <= ... | 1.0 | +| test.c:216:7:216:23 | ... && ... | 1.0 | +| test.c:216:7:216:35 | ... && ... | 1.0 | +| test.c:216:7:216:46 | ... && ... | 1.0 | +| test.c:216:12:216:12 | a | 5.0 | +| test.c:216:17:216:17 | a | 5.0 | +| test.c:216:17:216:23 | ... <= ... | 1.0 | +| test.c:216:22:216:23 | 11 | 1.0 | +| test.c:216:28:216:30 | - ... | 1.0 | +| test.c:216:28:216:35 | ... <= ... | 1.0 | +| test.c:216:29:216:30 | 13 | 1.0 | +| test.c:216:35:216:35 | b | 31.0 | +| test.c:216:40:216:40 | b | 31.0 | +| test.c:216:40:216:46 | ... <= ... | 1.0 | +| test.c:216:45:216:46 | - ... | 1.0 | +| test.c:216:46:216:46 | 7 | 1.0 | +| test.c:217:13:217:13 | a | 5.0 | +| test.c:217:13:217:15 | ... * ... | 1.0 | +| test.c:217:15:217:15 | b | 31.0 | +| test.c:218:5:218:9 | total | 16.0 | +| test.c:218:5:218:14 | ... += ... | 16.0 | +| test.c:218:14:218:14 | r | 1.0 | +| test.c:221:10:221:14 | total | 32.0 | +| test.c:226:14:226:15 | 0 | 1.0 | +| test.c:228:7:228:7 | 0 | 1.0 | +| test.c:228:7:228:12 | ... <= ... | 1.0 | +| test.c:228:7:228:23 | ... && ... | 1.0 | +| test.c:228:7:228:33 | ... && ... | 1.0 | +| test.c:228:7:228:44 | ... && ... | 1.0 | +| test.c:228:12:228:12 | a | 1.0 | +| test.c:228:17:228:17 | a | 1.0 | +| test.c:228:17:228:23 | ... <= ... | 1.0 | +| test.c:228:22:228:23 | 11 | 1.0 | +| test.c:228:28:228:28 | 5 | 1.0 | +| test.c:228:28:228:33 | ... <= ... | 1.0 | +| test.c:228:33:228:33 | b | 1.0 | +| test.c:228:38:228:38 | b | 1.0 | +| test.c:228:38:228:44 | ... <= ... | 1.0 | +| test.c:228:43:228:44 | 23 | 1.0 | +| test.c:229:13:229:13 | a | 1.0 | +| test.c:229:13:229:15 | ... * ... | 1.0 | +| test.c:229:15:229:15 | b | 1.0 | +| test.c:230:5:230:9 | total | 1.0 | +| test.c:230:5:230:14 | ... += ... | 1.0 | +| test.c:230:14:230:14 | r | 1.0 | +| test.c:232:7:232:7 | 0 | 1.0 | +| test.c:232:7:232:12 | ... <= ... | 1.0 | +| test.c:232:7:232:23 | ... && ... | 1.0 | +| test.c:232:7:232:33 | ... && ... | 1.0 | +| test.c:232:7:232:44 | ... && ... | 1.0 | +| test.c:232:12:232:12 | a | 2.0 | +| test.c:232:17:232:17 | a | 2.0 | +| test.c:232:17:232:23 | ... <= ... | 1.0 | +| test.c:232:22:232:23 | 11 | 1.0 | +| test.c:232:28:232:28 | 0 | 1.0 | +| test.c:232:28:232:33 | ... <= ... | 1.0 | +| test.c:232:33:232:33 | b | 3.0 | +| test.c:232:38:232:38 | b | 3.0 | +| test.c:232:38:232:44 | ... <= ... | 1.0 | +| test.c:232:43:232:44 | 23 | 1.0 | +| test.c:233:13:233:13 | a | 2.0 | +| test.c:233:13:233:15 | ... * ... | 1.0 | +| test.c:233:15:233:15 | b | 3.0 | +| test.c:234:5:234:9 | total | 2.0 | +| test.c:234:5:234:14 | ... += ... | 2.0 | +| test.c:234:14:234:14 | r | 1.0 | +| test.c:236:7:236:7 | 0 | 1.0 | +| test.c:236:7:236:12 | ... <= ... | 1.0 | +| test.c:236:7:236:23 | ... && ... | 1.0 | +| test.c:236:7:236:35 | ... && ... | 1.0 | +| test.c:236:7:236:46 | ... && ... | 1.0 | +| test.c:236:12:236:12 | a | 3.0 | +| test.c:236:17:236:17 | a | 3.0 | +| test.c:236:17:236:23 | ... <= ... | 1.0 | +| test.c:236:22:236:23 | 11 | 1.0 | +| test.c:236:28:236:30 | - ... | 1.0 | +| test.c:236:28:236:35 | ... <= ... | 1.0 | +| test.c:236:29:236:30 | 13 | 1.0 | +| test.c:236:35:236:35 | b | 7.0 | +| test.c:236:40:236:40 | b | 7.0 | +| test.c:236:40:236:46 | ... <= ... | 1.0 | +| test.c:236:45:236:46 | 23 | 1.0 | +| test.c:237:13:237:13 | a | 3.0 | +| test.c:237:13:237:15 | ... * ... | 1.0 | +| test.c:237:15:237:15 | b | 7.0 | +| test.c:238:5:238:9 | total | 4.0 | +| test.c:238:5:238:14 | ... += ... | 4.0 | +| test.c:238:14:238:14 | r | 1.0 | +| test.c:240:7:240:7 | 0 | 1.0 | +| test.c:240:7:240:12 | ... <= ... | 1.0 | +| test.c:240:7:240:23 | ... && ... | 1.0 | +| test.c:240:7:240:35 | ... && ... | 1.0 | +| test.c:240:7:240:45 | ... && ... | 1.0 | +| test.c:240:12:240:12 | a | 4.0 | +| test.c:240:17:240:17 | a | 4.0 | +| test.c:240:17:240:23 | ... <= ... | 1.0 | +| test.c:240:22:240:23 | 11 | 1.0 | +| test.c:240:28:240:30 | - ... | 1.0 | +| test.c:240:28:240:35 | ... <= ... | 1.0 | +| test.c:240:29:240:30 | 13 | 1.0 | +| test.c:240:35:240:35 | b | 15.0 | +| test.c:240:40:240:40 | b | 15.0 | +| test.c:240:40:240:45 | ... <= ... | 1.0 | +| test.c:240:45:240:45 | 0 | 1.0 | +| test.c:241:13:241:13 | a | 4.0 | +| test.c:241:13:241:15 | ... * ... | 1.0 | +| test.c:241:15:241:15 | b | 15.0 | +| test.c:242:5:242:9 | total | 8.0 | +| test.c:242:5:242:14 | ... += ... | 8.0 | +| test.c:242:14:242:14 | r | 1.0 | +| test.c:244:7:244:7 | 0 | 1.0 | +| test.c:244:7:244:12 | ... <= ... | 1.0 | +| test.c:244:7:244:23 | ... && ... | 1.0 | +| test.c:244:7:244:35 | ... && ... | 1.0 | +| test.c:244:7:244:46 | ... && ... | 1.0 | +| test.c:244:12:244:12 | a | 5.0 | +| test.c:244:17:244:17 | a | 5.0 | +| test.c:244:17:244:23 | ... <= ... | 1.0 | +| test.c:244:22:244:23 | 11 | 1.0 | +| test.c:244:28:244:30 | - ... | 1.0 | +| test.c:244:28:244:35 | ... <= ... | 1.0 | +| test.c:244:29:244:30 | 13 | 1.0 | +| test.c:244:35:244:35 | b | 31.0 | +| test.c:244:40:244:40 | b | 31.0 | +| test.c:244:40:244:46 | ... <= ... | 1.0 | +| test.c:244:45:244:46 | - ... | 1.0 | +| test.c:244:46:244:46 | 7 | 1.0 | +| test.c:245:13:245:13 | a | 5.0 | +| test.c:245:13:245:15 | ... * ... | 1.0 | +| test.c:245:15:245:15 | b | 31.0 | +| test.c:246:5:246:9 | total | 16.0 | +| test.c:246:5:246:14 | ... += ... | 16.0 | +| test.c:246:14:246:14 | r | 1.0 | +| test.c:249:10:249:14 | total | 32.0 | +| test.c:254:14:254:15 | 0 | 1.0 | +| test.c:256:7:256:9 | - ... | 1.0 | +| test.c:256:7:256:14 | ... <= ... | 1.0 | +| test.c:256:7:256:25 | ... && ... | 1.0 | +| test.c:256:7:256:35 | ... && ... | 1.0 | +| test.c:256:7:256:46 | ... && ... | 1.0 | +| test.c:256:8:256:9 | 17 | 1.0 | +| test.c:256:14:256:14 | a | 1.0 | +| test.c:256:19:256:19 | a | 1.0 | +| test.c:256:19:256:25 | ... <= ... | 1.0 | +| test.c:256:24:256:25 | 11 | 1.0 | +| test.c:256:30:256:30 | 5 | 1.0 | +| test.c:256:30:256:35 | ... <= ... | 1.0 | +| test.c:256:35:256:35 | b | 1.0 | +| test.c:256:40:256:40 | b | 1.0 | +| test.c:256:40:256:46 | ... <= ... | 1.0 | +| test.c:256:45:256:46 | 23 | 1.0 | +| test.c:257:13:257:13 | a | 1.0 | +| test.c:257:13:257:15 | ... * ... | 1.0 | +| test.c:257:15:257:15 | b | 1.0 | +| test.c:258:5:258:9 | total | 1.0 | +| test.c:258:5:258:14 | ... += ... | 1.0 | +| test.c:258:14:258:14 | r | 1.0 | +| test.c:260:7:260:9 | - ... | 1.0 | +| test.c:260:7:260:14 | ... <= ... | 1.0 | +| test.c:260:7:260:25 | ... && ... | 1.0 | +| test.c:260:7:260:35 | ... && ... | 1.0 | +| test.c:260:7:260:46 | ... && ... | 1.0 | +| test.c:260:8:260:9 | 17 | 1.0 | +| test.c:260:14:260:14 | a | 2.0 | +| test.c:260:19:260:19 | a | 2.0 | +| test.c:260:19:260:25 | ... <= ... | 1.0 | +| test.c:260:24:260:25 | 11 | 1.0 | +| test.c:260:30:260:30 | 0 | 1.0 | +| test.c:260:30:260:35 | ... <= ... | 1.0 | +| test.c:260:35:260:35 | b | 3.0 | +| test.c:260:40:260:40 | b | 3.0 | +| test.c:260:40:260:46 | ... <= ... | 1.0 | +| test.c:260:45:260:46 | 23 | 1.0 | +| test.c:261:13:261:13 | a | 2.0 | +| test.c:261:13:261:15 | ... * ... | 1.0 | +| test.c:261:15:261:15 | b | 3.0 | +| test.c:262:5:262:9 | total | 2.0 | +| test.c:262:5:262:14 | ... += ... | 2.0 | +| test.c:262:14:262:14 | r | 1.0 | +| test.c:264:7:264:9 | - ... | 1.0 | +| test.c:264:7:264:14 | ... <= ... | 1.0 | +| test.c:264:7:264:25 | ... && ... | 1.0 | +| test.c:264:7:264:37 | ... && ... | 1.0 | +| test.c:264:7:264:48 | ... && ... | 1.0 | +| test.c:264:8:264:9 | 17 | 1.0 | +| test.c:264:14:264:14 | a | 3.0 | +| test.c:264:19:264:19 | a | 3.0 | +| test.c:264:19:264:25 | ... <= ... | 1.0 | +| test.c:264:24:264:25 | 11 | 1.0 | +| test.c:264:30:264:32 | - ... | 1.0 | +| test.c:264:30:264:37 | ... <= ... | 1.0 | +| test.c:264:31:264:32 | 13 | 1.0 | +| test.c:264:37:264:37 | b | 7.0 | +| test.c:264:42:264:42 | b | 7.0 | +| test.c:264:42:264:48 | ... <= ... | 1.0 | +| test.c:264:47:264:48 | 23 | 1.0 | +| test.c:265:13:265:13 | a | 3.0 | +| test.c:265:13:265:15 | ... * ... | 1.0 | +| test.c:265:15:265:15 | b | 7.0 | +| test.c:266:5:266:9 | total | 4.0 | +| test.c:266:5:266:14 | ... += ... | 4.0 | +| test.c:266:14:266:14 | r | 1.0 | +| test.c:268:7:268:9 | - ... | 1.0 | +| test.c:268:7:268:14 | ... <= ... | 1.0 | +| test.c:268:7:268:25 | ... && ... | 1.0 | +| test.c:268:7:268:37 | ... && ... | 1.0 | +| test.c:268:7:268:47 | ... && ... | 1.0 | +| test.c:268:8:268:9 | 17 | 1.0 | +| test.c:268:14:268:14 | a | 4.0 | +| test.c:268:19:268:19 | a | 4.0 | +| test.c:268:19:268:25 | ... <= ... | 1.0 | +| test.c:268:24:268:25 | 11 | 1.0 | +| test.c:268:30:268:32 | - ... | 1.0 | +| test.c:268:30:268:37 | ... <= ... | 1.0 | +| test.c:268:31:268:32 | 13 | 1.0 | +| test.c:268:37:268:37 | b | 15.0 | +| test.c:268:42:268:42 | b | 15.0 | +| test.c:268:42:268:47 | ... <= ... | 1.0 | +| test.c:268:47:268:47 | 0 | 1.0 | +| test.c:269:13:269:13 | a | 4.0 | +| test.c:269:13:269:15 | ... * ... | 1.0 | +| test.c:269:15:269:15 | b | 15.0 | +| test.c:270:5:270:9 | total | 8.0 | +| test.c:270:5:270:14 | ... += ... | 8.0 | +| test.c:270:14:270:14 | r | 1.0 | +| test.c:272:7:272:9 | - ... | 1.0 | +| test.c:272:7:272:14 | ... <= ... | 1.0 | +| test.c:272:7:272:25 | ... && ... | 1.0 | +| test.c:272:7:272:37 | ... && ... | 1.0 | +| test.c:272:7:272:48 | ... && ... | 1.0 | +| test.c:272:8:272:9 | 17 | 1.0 | +| test.c:272:14:272:14 | a | 5.0 | +| test.c:272:19:272:19 | a | 5.0 | +| test.c:272:19:272:25 | ... <= ... | 1.0 | +| test.c:272:24:272:25 | 11 | 1.0 | +| test.c:272:30:272:32 | - ... | 1.0 | +| test.c:272:30:272:37 | ... <= ... | 1.0 | +| test.c:272:31:272:32 | 13 | 1.0 | +| test.c:272:37:272:37 | b | 31.0 | +| test.c:272:42:272:42 | b | 31.0 | +| test.c:272:42:272:48 | ... <= ... | 1.0 | +| test.c:272:47:272:48 | - ... | 1.0 | +| test.c:272:48:272:48 | 7 | 1.0 | +| test.c:273:13:273:13 | a | 5.0 | +| test.c:273:13:273:15 | ... * ... | 1.0 | +| test.c:273:15:273:15 | b | 31.0 | +| test.c:274:5:274:9 | total | 16.0 | +| test.c:274:5:274:14 | ... += ... | 16.0 | +| test.c:274:14:274:14 | r | 1.0 | +| test.c:277:10:277:14 | total | 32.0 | +| test.c:282:14:282:15 | 0 | 1.0 | +| test.c:284:7:284:9 | - ... | 1.0 | +| test.c:284:7:284:14 | ... <= ... | 1.0 | +| test.c:284:7:284:24 | ... && ... | 1.0 | +| test.c:284:7:284:34 | ... && ... | 1.0 | +| test.c:284:7:284:45 | ... && ... | 1.0 | +| test.c:284:8:284:9 | 17 | 1.0 | +| test.c:284:14:284:14 | a | 1.0 | +| test.c:284:19:284:19 | a | 1.0 | +| test.c:284:19:284:24 | ... <= ... | 1.0 | +| test.c:284:24:284:24 | 0 | 1.0 | +| test.c:284:29:284:29 | 5 | 1.0 | +| test.c:284:29:284:34 | ... <= ... | 1.0 | +| test.c:284:34:284:34 | b | 1.0 | +| test.c:284:39:284:39 | b | 1.0 | +| test.c:284:39:284:45 | ... <= ... | 1.0 | +| test.c:284:44:284:45 | 23 | 1.0 | +| test.c:285:13:285:13 | a | 1.0 | +| test.c:285:13:285:15 | ... * ... | 1.0 | +| test.c:285:15:285:15 | b | 1.0 | +| test.c:286:5:286:9 | total | 1.0 | +| test.c:286:5:286:14 | ... += ... | 1.0 | +| test.c:286:14:286:14 | r | 1.0 | +| test.c:288:7:288:9 | - ... | 1.0 | +| test.c:288:7:288:14 | ... <= ... | 1.0 | +| test.c:288:7:288:24 | ... && ... | 1.0 | +| test.c:288:7:288:34 | ... && ... | 1.0 | +| test.c:288:7:288:45 | ... && ... | 1.0 | +| test.c:288:8:288:9 | 17 | 1.0 | +| test.c:288:14:288:14 | a | 2.0 | +| test.c:288:19:288:19 | a | 2.0 | +| test.c:288:19:288:24 | ... <= ... | 1.0 | +| test.c:288:24:288:24 | 0 | 1.0 | +| test.c:288:29:288:29 | 0 | 1.0 | +| test.c:288:29:288:34 | ... <= ... | 1.0 | +| test.c:288:34:288:34 | b | 3.0 | +| test.c:288:39:288:39 | b | 3.0 | +| test.c:288:39:288:45 | ... <= ... | 1.0 | +| test.c:288:44:288:45 | 23 | 1.0 | +| test.c:289:13:289:13 | a | 2.0 | +| test.c:289:13:289:15 | ... * ... | 1.0 | +| test.c:289:15:289:15 | b | 3.0 | +| test.c:290:5:290:9 | total | 2.0 | +| test.c:290:5:290:14 | ... += ... | 2.0 | +| test.c:290:14:290:14 | r | 1.0 | +| test.c:292:7:292:9 | - ... | 1.0 | +| test.c:292:7:292:14 | ... <= ... | 1.0 | +| test.c:292:7:292:24 | ... && ... | 1.0 | +| test.c:292:7:292:36 | ... && ... | 1.0 | +| test.c:292:7:292:47 | ... && ... | 1.0 | +| test.c:292:8:292:9 | 17 | 1.0 | +| test.c:292:14:292:14 | a | 3.0 | +| test.c:292:19:292:19 | a | 3.0 | +| test.c:292:19:292:24 | ... <= ... | 1.0 | +| test.c:292:24:292:24 | 0 | 1.0 | +| test.c:292:29:292:31 | - ... | 1.0 | +| test.c:292:29:292:36 | ... <= ... | 1.0 | +| test.c:292:30:292:31 | 13 | 1.0 | +| test.c:292:36:292:36 | b | 7.0 | +| test.c:292:41:292:41 | b | 7.0 | +| test.c:292:41:292:47 | ... <= ... | 1.0 | +| test.c:292:46:292:47 | 23 | 1.0 | +| test.c:293:13:293:13 | a | 3.0 | +| test.c:293:13:293:15 | ... * ... | 1.0 | +| test.c:293:15:293:15 | b | 7.0 | +| test.c:294:5:294:9 | total | 4.0 | +| test.c:294:5:294:14 | ... += ... | 4.0 | +| test.c:294:14:294:14 | r | 1.0 | +| test.c:296:7:296:9 | - ... | 1.0 | +| test.c:296:7:296:14 | ... <= ... | 1.0 | +| test.c:296:7:296:24 | ... && ... | 1.0 | +| test.c:296:7:296:36 | ... && ... | 1.0 | +| test.c:296:7:296:46 | ... && ... | 1.0 | +| test.c:296:8:296:9 | 17 | 1.0 | +| test.c:296:14:296:14 | a | 4.0 | +| test.c:296:19:296:19 | a | 4.0 | +| test.c:296:19:296:24 | ... <= ... | 1.0 | +| test.c:296:24:296:24 | 0 | 1.0 | +| test.c:296:29:296:31 | - ... | 1.0 | +| test.c:296:29:296:36 | ... <= ... | 1.0 | +| test.c:296:30:296:31 | 13 | 1.0 | +| test.c:296:36:296:36 | b | 15.0 | +| test.c:296:41:296:41 | b | 15.0 | +| test.c:296:41:296:46 | ... <= ... | 1.0 | +| test.c:296:46:296:46 | 0 | 1.0 | +| test.c:297:13:297:13 | a | 4.0 | +| test.c:297:13:297:15 | ... * ... | 1.0 | +| test.c:297:15:297:15 | b | 15.0 | +| test.c:298:5:298:9 | total | 8.0 | +| test.c:298:5:298:14 | ... += ... | 8.0 | +| test.c:298:14:298:14 | r | 1.0 | +| test.c:300:7:300:9 | - ... | 1.0 | +| test.c:300:7:300:14 | ... <= ... | 1.0 | +| test.c:300:7:300:24 | ... && ... | 1.0 | +| test.c:300:7:300:36 | ... && ... | 1.0 | +| test.c:300:7:300:47 | ... && ... | 1.0 | +| test.c:300:8:300:9 | 17 | 1.0 | +| test.c:300:14:300:14 | a | 5.0 | +| test.c:300:19:300:19 | a | 5.0 | +| test.c:300:19:300:24 | ... <= ... | 1.0 | +| test.c:300:24:300:24 | 0 | 1.0 | +| test.c:300:29:300:31 | - ... | 1.0 | +| test.c:300:29:300:36 | ... <= ... | 1.0 | +| test.c:300:30:300:31 | 13 | 1.0 | +| test.c:300:36:300:36 | b | 31.0 | +| test.c:300:41:300:41 | b | 31.0 | +| test.c:300:41:300:47 | ... <= ... | 1.0 | +| test.c:300:46:300:47 | - ... | 1.0 | +| test.c:300:47:300:47 | 7 | 1.0 | +| test.c:301:13:301:13 | a | 5.0 | +| test.c:301:13:301:15 | ... * ... | 1.0 | +| test.c:301:15:301:15 | b | 31.0 | +| test.c:302:5:302:9 | total | 16.0 | +| test.c:302:5:302:14 | ... += ... | 16.0 | +| test.c:302:14:302:14 | r | 1.0 | +| test.c:305:10:305:14 | total | 32.0 | +| test.c:310:14:310:15 | 0 | 1.0 | +| test.c:312:7:312:9 | - ... | 1.0 | +| test.c:312:7:312:14 | ... <= ... | 1.0 | +| test.c:312:7:312:25 | ... && ... | 1.0 | +| test.c:312:7:312:35 | ... && ... | 1.0 | +| test.c:312:7:312:46 | ... && ... | 1.0 | +| test.c:312:8:312:9 | 17 | 1.0 | +| test.c:312:14:312:14 | a | 1.0 | +| test.c:312:19:312:19 | a | 1.0 | +| test.c:312:19:312:25 | ... <= ... | 1.0 | +| test.c:312:24:312:25 | - ... | 1.0 | +| test.c:312:25:312:25 | 2 | 1.0 | +| test.c:312:30:312:30 | 5 | 1.0 | +| test.c:312:30:312:35 | ... <= ... | 1.0 | +| test.c:312:35:312:35 | b | 1.0 | +| test.c:312:40:312:40 | b | 1.0 | +| test.c:312:40:312:46 | ... <= ... | 1.0 | +| test.c:312:45:312:46 | 23 | 1.0 | +| test.c:313:13:313:13 | a | 1.0 | +| test.c:313:13:313:15 | ... * ... | 1.0 | +| test.c:313:15:313:15 | b | 1.0 | +| test.c:314:5:314:9 | total | 1.0 | +| test.c:314:5:314:14 | ... += ... | 1.0 | +| test.c:314:14:314:14 | r | 1.0 | +| test.c:316:7:316:9 | - ... | 1.0 | +| test.c:316:7:316:14 | ... <= ... | 1.0 | +| test.c:316:7:316:25 | ... && ... | 1.0 | +| test.c:316:7:316:35 | ... && ... | 1.0 | +| test.c:316:7:316:46 | ... && ... | 1.0 | +| test.c:316:8:316:9 | 17 | 1.0 | +| test.c:316:14:316:14 | a | 2.0 | +| test.c:316:19:316:19 | a | 2.0 | +| test.c:316:19:316:25 | ... <= ... | 1.0 | +| test.c:316:24:316:25 | - ... | 1.0 | +| test.c:316:25:316:25 | 2 | 1.0 | +| test.c:316:30:316:30 | 0 | 1.0 | +| test.c:316:30:316:35 | ... <= ... | 1.0 | +| test.c:316:35:316:35 | b | 3.0 | +| test.c:316:40:316:40 | b | 3.0 | +| test.c:316:40:316:46 | ... <= ... | 1.0 | +| test.c:316:45:316:46 | 23 | 1.0 | +| test.c:317:13:317:13 | a | 2.0 | +| test.c:317:13:317:15 | ... * ... | 1.0 | +| test.c:317:15:317:15 | b | 3.0 | +| test.c:318:5:318:9 | total | 2.0 | +| test.c:318:5:318:14 | ... += ... | 2.0 | +| test.c:318:14:318:14 | r | 1.0 | +| test.c:320:7:320:9 | - ... | 1.0 | +| test.c:320:7:320:14 | ... <= ... | 1.0 | +| test.c:320:7:320:25 | ... && ... | 1.0 | +| test.c:320:7:320:37 | ... && ... | 1.0 | +| test.c:320:7:320:48 | ... && ... | 1.0 | +| test.c:320:8:320:9 | 17 | 1.0 | +| test.c:320:14:320:14 | a | 3.0 | +| test.c:320:19:320:19 | a | 3.0 | +| test.c:320:19:320:25 | ... <= ... | 1.0 | +| test.c:320:24:320:25 | - ... | 1.0 | +| test.c:320:25:320:25 | 2 | 1.0 | +| test.c:320:30:320:32 | - ... | 1.0 | +| test.c:320:30:320:37 | ... <= ... | 1.0 | +| test.c:320:31:320:32 | 13 | 1.0 | +| test.c:320:37:320:37 | b | 7.0 | +| test.c:320:42:320:42 | b | 7.0 | +| test.c:320:42:320:48 | ... <= ... | 1.0 | +| test.c:320:47:320:48 | 23 | 1.0 | +| test.c:321:13:321:13 | a | 3.0 | +| test.c:321:13:321:15 | ... * ... | 1.0 | +| test.c:321:15:321:15 | b | 7.0 | +| test.c:322:5:322:9 | total | 4.0 | +| test.c:322:5:322:14 | ... += ... | 4.0 | +| test.c:322:14:322:14 | r | 1.0 | +| test.c:324:7:324:9 | - ... | 1.0 | +| test.c:324:7:324:14 | ... <= ... | 1.0 | +| test.c:324:7:324:25 | ... && ... | 1.0 | +| test.c:324:7:324:37 | ... && ... | 1.0 | +| test.c:324:7:324:47 | ... && ... | 1.0 | +| test.c:324:8:324:9 | 17 | 1.0 | +| test.c:324:14:324:14 | a | 4.0 | +| test.c:324:19:324:19 | a | 4.0 | +| test.c:324:19:324:25 | ... <= ... | 1.0 | +| test.c:324:24:324:25 | - ... | 1.0 | +| test.c:324:25:324:25 | 2 | 1.0 | +| test.c:324:30:324:32 | - ... | 1.0 | +| test.c:324:30:324:37 | ... <= ... | 1.0 | +| test.c:324:31:324:32 | 13 | 1.0 | +| test.c:324:37:324:37 | b | 15.0 | +| test.c:324:42:324:42 | b | 15.0 | +| test.c:324:42:324:47 | ... <= ... | 1.0 | +| test.c:324:47:324:47 | 0 | 1.0 | +| test.c:325:13:325:13 | a | 4.0 | +| test.c:325:13:325:15 | ... * ... | 1.0 | +| test.c:325:15:325:15 | b | 15.0 | +| test.c:326:5:326:9 | total | 8.0 | +| test.c:326:5:326:14 | ... += ... | 8.0 | +| test.c:326:14:326:14 | r | 1.0 | +| test.c:328:7:328:9 | - ... | 1.0 | +| test.c:328:7:328:14 | ... <= ... | 1.0 | +| test.c:328:7:328:25 | ... && ... | 1.0 | +| test.c:328:7:328:37 | ... && ... | 1.0 | +| test.c:328:7:328:48 | ... && ... | 1.0 | +| test.c:328:8:328:9 | 17 | 1.0 | +| test.c:328:14:328:14 | a | 5.0 | +| test.c:328:19:328:19 | a | 5.0 | +| test.c:328:19:328:25 | ... <= ... | 1.0 | +| test.c:328:24:328:25 | - ... | 1.0 | +| test.c:328:25:328:25 | 2 | 1.0 | +| test.c:328:30:328:32 | - ... | 1.0 | +| test.c:328:30:328:37 | ... <= ... | 1.0 | +| test.c:328:31:328:32 | 13 | 1.0 | +| test.c:328:37:328:37 | b | 31.0 | +| test.c:328:42:328:42 | b | 31.0 | +| test.c:328:42:328:48 | ... <= ... | 1.0 | +| test.c:328:47:328:48 | - ... | 1.0 | +| test.c:328:48:328:48 | 7 | 1.0 | +| test.c:329:13:329:13 | a | 5.0 | +| test.c:329:13:329:15 | ... * ... | 1.0 | +| test.c:329:15:329:15 | b | 31.0 | +| test.c:330:5:330:9 | total | 16.0 | +| test.c:330:5:330:14 | ... += ... | 16.0 | +| test.c:330:14:330:14 | r | 1.0 | +| test.c:333:10:333:14 | total | 32.0 | +| test.c:337:13:337:14 | 0 | 1.0 | +| test.c:338:7:338:7 | x | 1.0 | +| test.c:338:7:338:11 | ... < ... | 1.0 | +| test.c:338:11:338:11 | 0 | 1.0 | +| test.c:339:12:339:13 | - ... | 1.0 | +| test.c:339:13:339:13 | 1 | 1.0 | +| test.c:342:10:342:10 | i | 13.0 | +| test.c:342:10:342:14 | ... < ... | 1.0 | +| test.c:342:14:342:14 | 3 | 1.0 | +| test.c:343:5:343:5 | i | 13.0 | +| test.c:343:5:343:7 | ... ++ | 13.0 | +| test.c:345:3:345:3 | d | 1.0 | +| test.c:345:3:345:7 | ... = ... | 13.0 | +| test.c:345:7:345:7 | i | 13.0 | +| test.c:346:7:346:7 | x | 1.0 | +| test.c:346:7:346:11 | ... < ... | 1.0 | +| test.c:346:11:346:11 | 0 | 1.0 | +| test.c:347:9:347:9 | d | 13.0 | +| test.c:347:9:347:14 | ... > ... | 1.0 | +| test.c:347:13:347:14 | - ... | 1.0 | +| test.c:347:14:347:14 | x | 1.0 | +| test.c:348:14:348:14 | 1 | 1.0 | +| test.c:351:10:351:10 | 0 | 1.0 | +| test.c:357:3:357:4 | y1 | 1.0 | +| test.c:357:3:357:23 | ... = ... | 1.0 | +| test.c:357:8:357:8 | x | 1.0 | +| test.c:357:8:357:14 | ... < ... | 1.0 | +| test.c:357:8:357:23 | ... ? ... : ... | 1.0 | +| test.c:357:12:357:14 | 100 | 1.0 | +| test.c:357:12:357:14 | (unsigned int)... | 1.0 | +| test.c:357:18:357:18 | x | 1.0 | +| test.c:357:22:357:23 | 10 | 1.0 | +| test.c:357:22:357:23 | (unsigned int)... | 1.0 | +| test.c:358:3:358:4 | y2 | 1.0 | +| test.c:358:3:358:24 | ... = ... | 2.0 | +| test.c:358:8:358:8 | x | 2.0 | +| test.c:358:8:358:15 | ... >= ... | 1.0 | +| test.c:358:8:358:24 | ... ? ... : ... | 2.0 | +| test.c:358:13:358:15 | 100 | 1.0 | +| test.c:358:13:358:15 | (unsigned int)... | 1.0 | +| test.c:358:19:358:20 | 10 | 1.0 | +| test.c:358:19:358:20 | (unsigned int)... | 1.0 | +| test.c:358:24:358:24 | x | 2.0 | +| test.c:359:3:359:4 | y3 | 1.0 | +| test.c:359:3:359:8 | ... = ... | 1.0 | +| test.c:359:8:359:8 | 0 | 1.0 | +| test.c:359:8:359:8 | (unsigned int)... | 1.0 | +| test.c:360:3:360:4 | y4 | 1.0 | +| test.c:360:3:360:8 | ... = ... | 1.0 | +| test.c:360:8:360:8 | 0 | 1.0 | +| test.c:360:8:360:8 | (unsigned int)... | 1.0 | +| test.c:361:3:361:4 | y5 | 1.0 | +| test.c:361:3:361:8 | ... = ... | 1.0 | +| test.c:361:8:361:8 | 0 | 1.0 | +| test.c:361:8:361:8 | (unsigned int)... | 1.0 | +| test.c:362:3:362:4 | y6 | 1.0 | +| test.c:362:3:362:8 | ... = ... | 1.0 | +| test.c:362:8:362:8 | 0 | 1.0 | +| test.c:362:8:362:8 | (unsigned int)... | 1.0 | +| test.c:363:3:363:4 | y7 | 1.0 | +| test.c:363:3:363:8 | ... = ... | 1.0 | +| test.c:363:8:363:8 | 0 | 1.0 | +| test.c:363:8:363:8 | (unsigned int)... | 1.0 | +| test.c:364:3:364:4 | y8 | 1.0 | +| test.c:364:3:364:8 | ... = ... | 1.0 | +| test.c:364:8:364:8 | 0 | 1.0 | +| test.c:364:8:364:8 | (unsigned int)... | 1.0 | +| test.c:365:7:365:7 | x | 4.0 | +| test.c:365:7:365:13 | ... < ... | 1.0 | +| test.c:365:11:365:13 | 300 | 1.0 | +| test.c:365:11:365:13 | (unsigned int)... | 1.0 | +| test.c:366:5:366:6 | y3 | 1.0 | +| test.c:366:5:366:15 | ... = ... | 4.0 | +| test.c:366:10:366:10 | x | 4.0 | +| test.c:366:10:366:15 | ... ? ... : ... | 4.0 | +| test.c:366:15:366:15 | 5 | 1.0 | +| test.c:366:15:366:15 | (unsigned int)... | 1.0 | +| test.c:367:5:367:6 | y4 | 1.0 | +| test.c:367:5:367:17 | ... = ... | 4.0 | +| test.c:367:10:367:10 | x | 4.0 | +| test.c:367:10:367:17 | ... ? ... : ... | 4.0 | +| test.c:367:15:367:17 | 500 | 1.0 | +| test.c:367:15:367:17 | (unsigned int)... | 1.0 | +| test.c:368:5:368:6 | y5 | 1.0 | +| test.c:368:5:368:21 | ... = ... | 4.0 | +| test.c:368:10:368:14 | (...) | 4.0 | +| test.c:368:10:368:21 | ... ? ... : ... | 4.0 | +| test.c:368:11:368:11 | x | 4.0 | +| test.c:368:11:368:13 | ... + ... | 4.0 | +| test.c:368:13:368:13 | 1 | 1.0 | +| test.c:368:13:368:13 | (unsigned int)... | 1.0 | +| test.c:368:19:368:21 | 500 | 1.0 | +| test.c:368:19:368:21 | (unsigned int)... | 1.0 | +| test.c:369:5:369:6 | y6 | 1.0 | +| test.c:369:5:369:36 | ... = ... | 4.0 | +| test.c:369:10:369:31 | (...) | 4.0 | +| test.c:369:10:369:36 | (unsigned int)... | 4.0 | +| test.c:369:10:369:36 | ... ? ... : ... | 4.0 | +| test.c:369:11:369:30 | (unsigned char)... | 4.0 | +| test.c:369:26:369:30 | (...) | 4.0 | +| test.c:369:27:369:27 | x | 4.0 | +| test.c:369:27:369:29 | ... + ... | 4.0 | +| test.c:369:29:369:29 | 1 | 1.0 | +| test.c:369:29:369:29 | (unsigned int)... | 1.0 | +| test.c:369:36:369:36 | 5 | 1.0 | +| test.c:370:5:370:6 | y7 | 1.0 | +| test.c:370:5:370:38 | ... = ... | 4.0 | +| test.c:370:10:370:31 | (...) | 4.0 | +| test.c:370:10:370:38 | (unsigned int)... | 4.0 | +| test.c:370:10:370:38 | ... ? ... : ... | 4.0 | +| test.c:370:11:370:30 | (unsigned char)... | 4.0 | +| test.c:370:26:370:30 | (...) | 4.0 | +| test.c:370:27:370:27 | x | 4.0 | +| test.c:370:27:370:29 | ... + ... | 4.0 | +| test.c:370:29:370:29 | 1 | 1.0 | +| test.c:370:29:370:29 | (unsigned int)... | 1.0 | +| test.c:370:36:370:38 | 500 | 1.0 | +| test.c:371:5:371:6 | y8 | 1.0 | +| test.c:371:5:371:39 | ... = ... | 4.0 | +| test.c:371:10:371:32 | (...) | 4.0 | +| test.c:371:10:371:39 | (unsigned int)... | 4.0 | +| test.c:371:10:371:39 | ... ? ... : ... | 4.0 | +| test.c:371:11:371:31 | (unsigned short)... | 4.0 | +| test.c:371:27:371:31 | (...) | 4.0 | +| test.c:371:28:371:28 | x | 4.0 | +| test.c:371:28:371:30 | ... + ... | 4.0 | +| test.c:371:30:371:30 | 1 | 1.0 | +| test.c:371:30:371:30 | (unsigned int)... | 1.0 | +| test.c:371:37:371:39 | 500 | 1.0 | +| test.c:373:10:373:11 | y1 | 1.0 | +| test.c:373:10:373:16 | ... + ... | 2.0 | +| test.c:373:10:373:21 | ... + ... | 10.0 | +| test.c:373:10:373:26 | ... + ... | 50.0 | +| test.c:373:10:373:31 | ... + ... | 250.0 | +| test.c:373:10:373:36 | ... + ... | 1250.0 | +| test.c:373:10:373:41 | ... + ... | 6250.0 | +| test.c:373:10:373:46 | ... + ... | 31250.0 | +| test.c:373:15:373:16 | y2 | 2.0 | +| test.c:373:20:373:21 | y3 | 5.0 | +| test.c:373:25:373:26 | y4 | 5.0 | +| test.c:373:30:373:31 | y5 | 5.0 | +| test.c:373:35:373:36 | y6 | 5.0 | +| test.c:373:40:373:41 | y7 | 5.0 | +| test.c:373:45:373:46 | y8 | 5.0 | +| test.c:379:3:379:4 | y1 | 1.0 | +| test.c:379:3:379:24 | ... = ... | 1.0 | +| test.c:379:8:379:8 | x | 1.0 | +| test.c:379:8:379:14 | ... > ... | 1.0 | +| test.c:379:8:379:24 | ... ? ... : ... | 1.0 | +| test.c:379:12:379:14 | 100 | 1.0 | +| test.c:379:12:379:14 | (unsigned int)... | 1.0 | +| test.c:379:18:379:18 | x | 1.0 | +| test.c:379:22:379:24 | 110 | 1.0 | +| test.c:379:22:379:24 | (unsigned int)... | 1.0 | +| test.c:380:3:380:4 | y2 | 1.0 | +| test.c:380:3:380:25 | ... = ... | 2.0 | +| test.c:380:8:380:8 | x | 2.0 | +| test.c:380:8:380:15 | ... <= ... | 1.0 | +| test.c:380:8:380:25 | ... ? ... : ... | 2.0 | +| test.c:380:13:380:15 | 100 | 1.0 | +| test.c:380:13:380:15 | (unsigned int)... | 1.0 | +| test.c:380:19:380:21 | 110 | 1.0 | +| test.c:380:19:380:21 | (unsigned int)... | 1.0 | +| test.c:380:25:380:25 | x | 2.0 | +| test.c:381:3:381:4 | y3 | 1.0 | +| test.c:381:3:381:11 | ... = ... | 1.0 | +| test.c:381:8:381:11 | 1000 | 1.0 | +| test.c:381:8:381:11 | (unsigned int)... | 1.0 | +| test.c:382:3:382:4 | y4 | 1.0 | +| test.c:382:3:382:11 | ... = ... | 1.0 | +| test.c:382:8:382:11 | 1000 | 1.0 | +| test.c:382:8:382:11 | (unsigned int)... | 1.0 | +| test.c:383:3:383:4 | y5 | 1.0 | +| test.c:383:3:383:11 | ... = ... | 1.0 | +| test.c:383:8:383:11 | 1000 | 1.0 | +| test.c:383:8:383:11 | (unsigned int)... | 1.0 | +| test.c:384:7:384:7 | x | 4.0 | +| test.c:384:7:384:14 | ... >= ... | 1.0 | +| test.c:384:12:384:14 | 300 | 1.0 | +| test.c:384:12:384:14 | (unsigned int)... | 1.0 | +| test.c:385:5:385:6 | y3 | 1.0 | +| test.c:385:5:385:21 | ... = ... | 4.0 | +| test.c:385:10:385:16 | (...) | 4.0 | +| test.c:385:10:385:21 | ... ? ... : ... | 4.0 | +| test.c:385:11:385:11 | x | 4.0 | +| test.c:385:11:385:15 | ... - ... | 4.0 | +| test.c:385:13:385:15 | 300 | 1.0 | +| test.c:385:13:385:15 | (unsigned int)... | 1.0 | +| test.c:385:21:385:21 | 5 | 1.0 | +| test.c:385:21:385:21 | (unsigned int)... | 1.0 | +| test.c:386:5:386:6 | y4 | 1.0 | +| test.c:386:5:386:21 | ... = ... | 4.0 | +| test.c:386:10:386:16 | (...) | 4.0 | +| test.c:386:10:386:21 | ... ? ... : ... | 4.0 | +| test.c:386:11:386:11 | x | 4.0 | +| test.c:386:11:386:15 | ... - ... | 4.0 | +| test.c:386:13:386:15 | 200 | 1.0 | +| test.c:386:13:386:15 | (unsigned int)... | 1.0 | +| test.c:386:21:386:21 | 5 | 1.0 | +| test.c:386:21:386:21 | (unsigned int)... | 1.0 | +| test.c:387:5:387:6 | y5 | 1.0 | +| test.c:387:5:387:38 | ... = ... | 4.0 | +| test.c:387:10:387:33 | (...) | 4.0 | +| test.c:387:10:387:38 | (unsigned int)... | 4.0 | +| test.c:387:10:387:38 | ... ? ... : ... | 4.0 | +| test.c:387:11:387:32 | (unsigned char)... | 4.0 | +| test.c:387:26:387:32 | (...) | 4.0 | +| test.c:387:27:387:27 | x | 4.0 | +| test.c:387:27:387:31 | ... - ... | 4.0 | +| test.c:387:29:387:31 | 200 | 1.0 | +| test.c:387:29:387:31 | (unsigned int)... | 1.0 | +| test.c:387:38:387:38 | 5 | 1.0 | +| test.c:389:10:389:11 | y1 | 1.0 | +| test.c:389:10:389:16 | ... + ... | 2.0 | +| test.c:389:10:389:21 | ... + ... | 10.0 | +| test.c:389:10:389:26 | ... + ... | 50.0 | +| test.c:389:10:389:31 | ... + ... | 250.0 | +| test.c:389:15:389:16 | y2 | 2.0 | +| test.c:389:20:389:21 | y3 | 5.0 | +| test.c:389:25:389:26 | y4 | 5.0 | +| test.c:389:30:389:31 | y5 | 5.0 | +| test.c:394:14:394:14 | m | 1.0 | +| test.c:394:14:394:108 | ... ? ... : ... | 1.0 | +| test.c:394:18:394:18 | n | 1.0 | +| test.c:394:18:394:95 | ... ? ... : ... | 1.0 | +| test.c:394:22:394:22 | o | 1.0 | +| test.c:394:22:394:82 | ... ? ... : ... | 1.0 | +| test.c:394:26:394:26 | p | 1.0 | +| test.c:394:26:394:69 | ... ? ... : ... | 1.0 | +| test.c:394:30:394:30 | q | 1.0 | +| test.c:394:30:394:56 | ... ? ... : ... | 1.0 | +| test.c:394:34:394:43 | 0.4743882700000000008 | 1.0 | +| test.c:394:47:394:56 | 0.1433388700000000071 | 1.0 | +| test.c:394:60:394:69 | 0.3527920299999999787 | 1.0 | +| test.c:394:73:394:82 | 0.3920645799999999959 | 1.0 | +| test.c:394:86:394:95 | 0.2154022499999999896 | 1.0 | +| test.c:394:99:394:108 | 0.4049680500000000238 | 1.0 | +| test.c:395:14:395:14 | m | 2.0 | +| test.c:395:14:395:108 | ... ? ... : ... | 1.0 | +| test.c:395:18:395:18 | n | 3.0 | +| test.c:395:18:395:95 | ... ? ... : ... | 1.0 | +| test.c:395:22:395:22 | o | 3.0 | +| test.c:395:22:395:82 | ... ? ... : ... | 1.0 | +| test.c:395:26:395:26 | p | 3.0 | +| test.c:395:26:395:69 | ... ? ... : ... | 1.0 | +| test.c:395:30:395:30 | q | 3.0 | +| test.c:395:30:395:56 | ... ? ... : ... | 1.0 | +| test.c:395:34:395:43 | 0.3418334800000000229 | 1.0 | +| test.c:395:47:395:56 | 0.3533464000000000049 | 1.0 | +| test.c:395:60:395:69 | 0.2224785300000000077 | 1.0 | +| test.c:395:73:395:82 | 0.326618929999999974 | 1.0 | +| test.c:395:86:395:95 | 0.5927046500000000551 | 1.0 | +| test.c:395:99:395:108 | 0.5297741000000000255 | 1.0 | +| test.c:396:14:396:14 | m | 4.0 | +| test.c:396:14:396:108 | ... ? ... : ... | 1.0 | +| test.c:396:18:396:18 | n | 9.0 | +| test.c:396:18:396:95 | ... ? ... : ... | 1.0 | +| test.c:396:22:396:22 | o | 9.0 | +| test.c:396:22:396:82 | ... ? ... : ... | 1.0 | +| test.c:396:26:396:26 | p | 9.0 | +| test.c:396:26:396:69 | ... ? ... : ... | 1.0 | +| test.c:396:30:396:30 | q | 9.0 | +| test.c:396:30:396:56 | ... ? ... : ... | 1.0 | +| test.c:396:34:396:43 | 0.774296030000000024 | 1.0 | +| test.c:396:47:396:56 | 0.3147808400000000062 | 1.0 | +| test.c:396:60:396:69 | 0.3123551399999999756 | 1.0 | +| test.c:396:73:396:82 | 0.05121255999999999725 | 1.0 | +| test.c:396:86:396:95 | 0.7931074500000000471 | 1.0 | +| test.c:396:99:396:108 | 0.6798145100000000385 | 1.0 | +| test.c:397:14:397:14 | m | 8.0 | +| test.c:397:14:397:108 | ... ? ... : ... | 1.0 | +| test.c:397:18:397:18 | n | 27.0 | +| test.c:397:18:397:95 | ... ? ... : ... | 1.0 | +| test.c:397:22:397:22 | o | 27.0 | +| test.c:397:22:397:82 | ... ? ... : ... | 1.0 | +| test.c:397:26:397:26 | p | 27.0 | +| test.c:397:26:397:69 | ... ? ... : ... | 1.0 | +| test.c:397:30:397:30 | q | 27.0 | +| test.c:397:30:397:56 | ... ? ... : ... | 1.0 | +| test.c:397:34:397:43 | 0.4472955599999999809 | 1.0 | +| test.c:397:47:397:56 | 0.8059920200000000312 | 1.0 | +| test.c:397:60:397:69 | 0.9899726199999999698 | 1.0 | +| test.c:397:73:397:82 | 0.5995273199999999747 | 1.0 | +| test.c:397:86:397:95 | 0.3697694799999999837 | 1.0 | +| test.c:397:99:397:108 | 0.8386683499999999514 | 1.0 | +| test.c:398:14:398:14 | m | 16.0 | +| test.c:398:14:398:108 | ... ? ... : ... | 1.0 | +| test.c:398:18:398:18 | n | 81.0 | +| test.c:398:18:398:95 | ... ? ... : ... | 1.0 | +| test.c:398:22:398:22 | o | 81.0 | +| test.c:398:22:398:82 | ... ? ... : ... | 1.0 | +| test.c:398:26:398:26 | p | 81.0 | +| test.c:398:26:398:69 | ... ? ... : ... | 1.0 | +| test.c:398:30:398:30 | q | 81.0 | +| test.c:398:30:398:56 | ... ? ... : ... | 1.0 | +| test.c:398:34:398:43 | 0.4931182800000000199 | 1.0 | +| test.c:398:47:398:56 | 0.9038991100000000056 | 1.0 | +| test.c:398:60:398:69 | 0.1059771199999999941 | 1.0 | +| test.c:398:73:398:82 | 0.2177842600000000073 | 1.0 | +| test.c:398:86:398:95 | 0.7248596600000000167 | 1.0 | +| test.c:398:99:398:108 | 0.6873487400000000136 | 1.0 | +| test.c:399:14:399:14 | m | 32.0 | +| test.c:399:14:399:108 | ... ? ... : ... | 1.0 | +| test.c:399:18:399:18 | n | 243.0 | +| test.c:399:18:399:95 | ... ? ... : ... | 1.0 | +| test.c:399:22:399:22 | o | 243.0 | +| test.c:399:22:399:82 | ... ? ... : ... | 1.0 | +| test.c:399:26:399:26 | p | 243.0 | +| test.c:399:26:399:69 | ... ? ... : ... | 1.0 | +| test.c:399:30:399:30 | q | 243.0 | +| test.c:399:30:399:56 | ... ? ... : ... | 1.0 | +| test.c:399:34:399:43 | 0.4745284799999999747 | 1.0 | +| test.c:399:47:399:56 | 0.107866500000000004 | 1.0 | +| test.c:399:60:399:69 | 0.1188457599999999947 | 1.0 | +| test.c:399:73:399:82 | 0.7616405200000000431 | 1.0 | +| test.c:399:86:399:95 | 0.3480889200000000239 | 1.0 | +| test.c:399:99:399:108 | 0.584408649999999974 | 1.0 | +| test.c:400:14:400:14 | m | 64.0 | +| test.c:400:14:400:108 | ... ? ... : ... | 1.0 | +| test.c:400:18:400:18 | n | 729.0 | +| test.c:400:18:400:95 | ... ? ... : ... | 1.0 | +| test.c:400:22:400:22 | o | 729.0 | +| test.c:400:22:400:82 | ... ? ... : ... | 1.0 | +| test.c:400:26:400:26 | p | 729.0 | +| test.c:400:26:400:69 | ... ? ... : ... | 1.0 | +| test.c:400:30:400:30 | q | 729.0 | +| test.c:400:30:400:56 | ... ? ... : ... | 1.0 | +| test.c:400:34:400:43 | 0.02524326 | 1.0 | +| test.c:400:47:400:56 | 0.8290504600000000446 | 1.0 | +| test.c:400:60:400:69 | 0.95823075000000002 | 1.0 | +| test.c:400:73:400:82 | 0.1251655799999999985 | 1.0 | +| test.c:400:86:400:95 | 0.8523517900000000536 | 1.0 | +| test.c:400:99:400:108 | 0.3623238400000000081 | 1.0 | +| test.c:401:14:401:14 | m | 128.0 | +| test.c:401:14:401:108 | ... ? ... : ... | 1.0 | +| test.c:401:18:401:18 | n | 2187.0 | +| test.c:401:18:401:95 | ... ? ... : ... | 1.0 | +| test.c:401:22:401:22 | o | 2187.0 | +| test.c:401:22:401:82 | ... ? ... : ... | 1.0 | +| test.c:401:26:401:26 | p | 2187.0 | +| test.c:401:26:401:69 | ... ? ... : ... | 1.0 | +| test.c:401:30:401:30 | q | 2187.0 | +| test.c:401:30:401:56 | ... ? ... : ... | 1.0 | +| test.c:401:34:401:43 | 0.3870862600000000153 | 1.0 | +| test.c:401:47:401:56 | 0.3287604399999999871 | 1.0 | +| test.c:401:60:401:69 | 0.1496348500000000137 | 1.0 | +| test.c:401:73:401:82 | 0.4504110800000000192 | 1.0 | +| test.c:401:86:401:95 | 0.4864090899999999884 | 1.0 | +| test.c:401:99:401:108 | 0.8433127200000000157 | 1.0 | +| test.c:402:14:402:14 | m | 256.0 | +| test.c:402:14:402:108 | ... ? ... : ... | 1.0 | +| test.c:402:18:402:18 | n | 6561.0 | +| test.c:402:18:402:95 | ... ? ... : ... | 1.0 | +| test.c:402:22:402:22 | o | 6561.0 | +| test.c:402:22:402:82 | ... ? ... : ... | 1.0 | +| test.c:402:26:402:26 | p | 6561.0 | +| test.c:402:26:402:69 | ... ? ... : ... | 1.0 | +| test.c:402:30:402:30 | q | 6561.0 | +| test.c:402:30:402:56 | ... ? ... : ... | 1.0 | +| test.c:402:34:402:43 | 0.1575506299999999971 | 1.0 | +| test.c:402:47:402:56 | 0.7708683299999999905 | 1.0 | +| test.c:402:60:402:69 | 0.2642848099999999811 | 1.0 | +| test.c:402:73:402:82 | 0.1480050800000000111 | 1.0 | +| test.c:402:86:402:95 | 0.374281430000000026 | 1.0 | +| test.c:402:99:402:108 | 0.05328182000000000057 | 1.0 | +| test.c:403:14:403:14 | m | 512.0 | +| test.c:403:14:403:108 | ... ? ... : ... | 1.0 | +| test.c:403:18:403:18 | n | 19683.0 | +| test.c:403:18:403:95 | ... ? ... : ... | 1.0 | +| test.c:403:22:403:22 | o | 19683.0 | +| test.c:403:22:403:82 | ... ? ... : ... | 1.0 | +| test.c:403:26:403:26 | p | 19683.0 | +| test.c:403:26:403:69 | ... ? ... : ... | 1.0 | +| test.c:403:30:403:30 | q | 19683.0 | +| test.c:403:30:403:56 | ... ? ... : ... | 1.0 | +| test.c:403:34:403:43 | 0.4173653600000000186 | 1.0 | +| test.c:403:47:403:56 | 0.7682662799999999681 | 1.0 | +| test.c:403:60:403:69 | 0.2764323799999999776 | 1.0 | +| test.c:403:73:403:82 | 0.5567927400000000082 | 1.0 | +| test.c:403:86:403:95 | 0.3946885700000000163 | 1.0 | +| test.c:403:99:403:108 | 0.6907214400000000198 | 1.0 | +| test.c:404:14:404:14 | m | 1024.0 | +| test.c:404:14:404:108 | ... ? ... : ... | 1.0 | +| test.c:404:18:404:18 | n | 59049.0 | +| test.c:404:18:404:95 | ... ? ... : ... | 1.0 | +| test.c:404:22:404:22 | o | 59049.0 | +| test.c:404:22:404:82 | ... ? ... : ... | 1.0 | +| test.c:404:26:404:26 | p | 59049.0 | +| test.c:404:26:404:69 | ... ? ... : ... | 1.0 | +| test.c:404:30:404:30 | q | 59049.0 | +| test.c:404:30:404:56 | ... ? ... : ... | 1.0 | +| test.c:404:34:404:43 | 0.8895534499999999678 | 1.0 | +| test.c:404:47:404:56 | 0.2990482400000000207 | 1.0 | +| test.c:404:60:404:69 | 0.7624258299999999711 | 1.0 | +| test.c:404:73:404:82 | 0.2051910999999999874 | 1.0 | +| test.c:404:86:404:95 | 0.8874555899999999609 | 1.0 | +| test.c:404:99:404:108 | 0.8137279800000000174 | 1.0 | +| test.c:405:14:405:14 | m | 2048.0 | +| test.c:405:14:405:108 | ... ? ... : ... | 1.0 | +| test.c:405:18:405:18 | n | 177147.0 | +| test.c:405:18:405:95 | ... ? ... : ... | 1.0 | +| test.c:405:22:405:22 | o | 177147.0 | +| test.c:405:22:405:82 | ... ? ... : ... | 1.0 | +| test.c:405:26:405:26 | p | 177147.0 | +| test.c:405:26:405:69 | ... ? ... : ... | 1.0 | +| test.c:405:30:405:30 | q | 177147.0 | +| test.c:405:30:405:56 | ... ? ... : ... | 1.0 | +| test.c:405:34:405:43 | 0.4218627600000000033 | 1.0 | +| test.c:405:47:405:56 | 0.5384335799999999672 | 1.0 | +| test.c:405:60:405:69 | 0.4499667900000000054 | 1.0 | +| test.c:405:73:405:82 | 0.1320411400000000013 | 1.0 | +| test.c:405:86:405:95 | 0.5203124099999999475 | 1.0 | +| test.c:405:99:405:108 | 0.4276264699999999808 | 1.0 | +| test.c:411:19:411:19 | a | 1.0 | +| test.c:411:19:411:23 | ... + ... | 1.0 | +| test.c:411:19:411:27 | ... + ... | 1.0 | +| test.c:411:19:411:31 | ... + ... | 1.0 | +| test.c:411:19:411:35 | ... + ... | 1.0 | +| test.c:411:19:411:39 | ... + ... | 1.0 | +| test.c:411:19:411:43 | ... + ... | 1.0 | +| test.c:411:19:411:47 | ... + ... | 1.0 | +| test.c:411:19:411:51 | ... + ... | 1.0 | +| test.c:411:19:411:55 | ... + ... | 1.0 | +| test.c:411:19:411:59 | ... + ... | 1.0 | +| test.c:411:19:411:63 | ... + ... | 1.0 | +| test.c:411:23:411:23 | b | 1.0 | +| test.c:411:27:411:27 | c | 1.0 | +| test.c:411:31:411:31 | d | 1.0 | +| test.c:411:35:411:35 | e | 1.0 | +| test.c:411:39:411:39 | f | 1.0 | +| test.c:411:43:411:43 | g | 1.0 | +| test.c:411:47:411:47 | h | 1.0 | +| test.c:411:51:411:51 | i | 1.0 | +| test.c:411:55:411:55 | j | 1.0 | +| test.c:411:59:411:59 | k | 1.0 | +| test.c:411:63:411:63 | l | 1.0 | +| test.c:413:10:413:15 | output | 1.0 | +| test.c:420:7:420:9 | rhs | 1.0 | +| test.c:420:7:420:14 | ... < ... | 1.0 | +| test.c:420:13:420:14 | 12 | 1.0 | +| test.c:420:13:420:14 | (unsigned int)... | 1.0 | +| test.c:420:19:420:21 | rhs | 1.0 | +| test.c:420:19:420:26 | ... << ... | 1.0 | +| test.c:420:26:420:26 | 1 | 1.0 | +| test.c:421:7:421:9 | rhs | 2.0 | +| test.c:421:7:421:14 | ... < ... | 1.0 | +| test.c:421:13:421:14 | 13 | 1.0 | +| test.c:421:13:421:14 | (unsigned int)... | 1.0 | +| test.c:421:19:421:21 | rhs | 2.0 | +| test.c:421:19:421:26 | ... << ... | 1.0 | +| test.c:421:26:421:26 | 1 | 1.0 | +| test.c:422:7:422:9 | rhs | 3.0 | +| test.c:422:7:422:14 | ... < ... | 1.0 | +| test.c:422:13:422:14 | 14 | 1.0 | +| test.c:422:13:422:14 | (unsigned int)... | 1.0 | +| test.c:422:19:422:21 | rhs | 3.0 | +| test.c:422:19:422:26 | ... << ... | 1.0 | +| test.c:422:26:422:26 | 1 | 1.0 | +| test.c:423:7:423:9 | rhs | 4.0 | +| test.c:423:7:423:14 | ... < ... | 1.0 | +| test.c:423:13:423:14 | 15 | 1.0 | +| test.c:423:13:423:14 | (unsigned int)... | 1.0 | +| test.c:423:19:423:21 | rhs | 4.0 | +| test.c:423:19:423:26 | ... << ... | 1.0 | +| test.c:423:26:423:26 | 1 | 1.0 | +| test.c:424:7:424:9 | rhs | 5.0 | +| test.c:424:7:424:14 | ... < ... | 1.0 | +| test.c:424:13:424:14 | 16 | 1.0 | +| test.c:424:13:424:14 | (unsigned int)... | 1.0 | +| test.c:424:19:424:21 | rhs | 5.0 | +| test.c:424:19:424:26 | ... << ... | 1.0 | +| test.c:424:26:424:26 | 1 | 1.0 | +| test.c:425:10:425:12 | (int)... | 6.0 | +| test.c:425:10:425:12 | rhs | 6.0 | +| test.c:429:7:429:7 | a | 1.0 | +| test.c:429:7:429:13 | ... == ... | 1.0 | +| test.c:429:12:429:13 | 17 | 1.0 | +| test.c:430:9:430:9 | b | 1.0 | +| test.c:430:9:430:15 | ... == ... | 1.0 | +| test.c:430:14:430:15 | 23 | 1.0 | +| test.c:431:7:431:7 | a | 1.0 | +| test.c:431:7:431:12 | ... += ... | 1.0 | +| test.c:431:12:431:12 | b | 1.0 | +| test.c:433:9:433:9 | a | 2.0 | +| test.c:433:9:433:15 | ... == ... | 1.0 | +| test.c:433:14:433:15 | 18 | 1.0 | +| test.c:434:7:434:7 | b | 1.0 | +| test.c:434:7:434:12 | ... = ... | 1.0 | +| test.c:434:11:434:12 | 10 | 1.0 | +| test.c:439:11:439:11 | a | 4.0 | +| test.c:439:11:439:15 | ... + ... | 16.0 | +| test.c:439:15:439:15 | b | 4.0 | +| test.c:440:10:440:10 | a | 4.0 | +| test.c:440:10:440:14 | ... + ... | 16.0 | +| test.c:440:14:440:14 | b | 4.0 | +| test.c:447:4:449:50 | (...) | 1.0 | +| test.c:447:4:532:26 | ... > ... | 1.0 | +| test.c:447:4:621:27 | ... ? ... : ... | 1.297918419127476E201 | +| test.c:447:5:447:6 | 14 | 1.0 | +| test.c:447:5:447:6 | (unsigned int)... | 1.0 | +| test.c:447:5:447:11 | ... * ... | 1.0 | +| test.c:447:5:447:55 | ... > ... | 1.0 | +| test.c:447:5:449:49 | ... ? ... : ... | 1.0 | +| test.c:447:10:447:11 | ip | 1.0 | +| test.c:447:15:447:26 | (...) | 1.0 | +| test.c:447:15:447:31 | ... * ... | 1.0 | +| test.c:447:15:447:55 | ... + ... | 1.0 | +| test.c:447:16:447:16 | 2 | 1.0 | +| test.c:447:16:447:16 | (unsigned int)... | 1.0 | +| test.c:447:16:447:21 | ... * ... | 1.0 | +| test.c:447:16:447:25 | ... + ... | 1.0 | +| test.c:447:20:447:21 | ip | 1.0 | +| test.c:447:25:447:25 | 1 | 1.0 | +| test.c:447:25:447:25 | (unsigned int)... | 1.0 | +| test.c:447:30:447:31 | 17 | 1.0 | +| test.c:447:30:447:31 | (unsigned int)... | 1.0 | +| test.c:447:35:447:50 | (...) | 1.0 | +| test.c:447:35:447:55 | ... * ... | 1.0 | +| test.c:447:36:447:36 | 2 | 1.0 | +| test.c:447:36:447:36 | (unsigned int)... | 1.0 | +| test.c:447:36:447:41 | ... * ... | 1.0 | +| test.c:447:36:447:45 | ... + ... | 1.0 | +| test.c:447:36:447:49 | ... + ... | 1.0 | +| test.c:447:40:447:41 | ip | 1.0 | +| test.c:447:45:447:45 | 1 | 1.0 | +| test.c:447:45:447:45 | (unsigned int)... | 1.0 | +| test.c:447:49:447:49 | 1 | 1.0 | +| test.c:447:49:447:49 | (unsigned int)... | 1.0 | +| test.c:447:54:447:55 | 17 | 1.0 | +| test.c:447:54:447:55 | (unsigned int)... | 1.0 | +| test.c:448:9:448:10 | 14 | 1.0 | +| test.c:448:9:448:10 | (unsigned int)... | 1.0 | +| test.c:448:9:448:15 | ... * ... | 1.0 | +| test.c:448:14:448:15 | ip | 1.0 | +| test.c:449:9:449:20 | (...) | 1.0 | +| test.c:449:9:449:25 | ... * ... | 1.0 | +| test.c:449:9:449:49 | ... + ... | 1.0 | +| test.c:449:10:449:10 | 2 | 1.0 | +| test.c:449:10:449:10 | (unsigned int)... | 1.0 | +| test.c:449:10:449:15 | ... * ... | 1.0 | +| test.c:449:10:449:19 | ... + ... | 1.0 | +| test.c:449:14:449:15 | ip | 1.0 | +| test.c:449:19:449:19 | 1 | 1.0 | +| test.c:449:19:449:19 | (unsigned int)... | 1.0 | +| test.c:449:24:449:25 | 14 | 1.0 | +| test.c:449:24:449:25 | (unsigned int)... | 1.0 | +| test.c:449:29:449:44 | (...) | 1.0 | +| test.c:449:29:449:49 | ... * ... | 1.0 | +| test.c:449:30:449:30 | 2 | 1.0 | +| test.c:449:30:449:30 | (unsigned int)... | 1.0 | +| test.c:449:30:449:35 | ... * ... | 1.0 | +| test.c:449:30:449:39 | ... + ... | 1.0 | +| test.c:449:30:449:43 | ... + ... | 1.0 | +| test.c:449:34:449:35 | ip | 1.0 | +| test.c:449:39:449:39 | 1 | 1.0 | +| test.c:449:39:449:39 | (unsigned int)... | 1.0 | +| test.c:449:43:449:43 | 1 | 1.0 | +| test.c:449:43:449:43 | (unsigned int)... | 1.0 | +| test.c:449:48:449:49 | 17 | 1.0 | +| test.c:449:48:449:49 | (unsigned int)... | 1.0 | +| test.c:450:5:532:26 | (...) | 9.29462083211502E84 | +| test.c:450:6:450:6 | 2 | 1.0 | +| test.c:450:6:450:6 | (unsigned int)... | 1.0 | +| test.c:450:6:450:23 | ... * ... | 2.0 | +| test.c:450:6:469:42 | ... + ... | 4.524508125E10 | +| test.c:450:6:489:24 | ... > ... | 1.0 | +| test.c:450:6:532:25 | ... ? ... : ... | 9.29462083211502E84 | +| test.c:450:10:450:23 | (...) | 2.0 | +| test.c:450:11:450:12 | ip | 2.0 | +| test.c:450:11:450:17 | ... * ... | 2.0 | +| test.c:450:11:450:22 | ... + ... | 2.0 | +| test.c:450:16:450:17 | 14 | 1.0 | +| test.c:450:16:450:17 | (unsigned int)... | 1.0 | +| test.c:450:21:450:22 | 32 | 1.0 | +| test.c:450:21:450:22 | (unsigned int)... | 1.0 | +| test.c:451:7:469:42 | (...) | 2.2622540625E10 | +| test.c:451:8:451:8 | 4 | 1.0 | +| test.c:451:8:451:8 | (unsigned int)... | 1.0 | +| test.c:451:8:451:25 | ... * ... | 2.0 | +| test.c:451:8:452:26 | ... + ... | 4.0 | +| test.c:451:8:453:26 | ... + ... | 8.0 | +| test.c:451:8:458:22 | ... + ... | 1000.0 | +| test.c:451:8:459:37 | ... > ... | 1.0 | +| test.c:451:8:469:41 | ... ? ... : ... | 2.2622540625E10 | +| test.c:451:12:451:25 | (...) | 2.0 | +| test.c:451:13:451:14 | ip | 2.0 | +| test.c:451:13:451:19 | ... * ... | 2.0 | +| test.c:451:13:451:24 | ... + ... | 2.0 | +| test.c:451:18:451:19 | 14 | 1.0 | +| test.c:451:18:451:19 | (unsigned int)... | 1.0 | +| test.c:451:23:451:24 | 32 | 1.0 | +| test.c:451:23:451:24 | (unsigned int)... | 1.0 | +| test.c:452:9:452:26 | (...) | 2.0 | +| test.c:452:10:452:10 | 2 | 1.0 | +| test.c:452:10:452:10 | (unsigned int)... | 1.0 | +| test.c:452:10:452:15 | ... * ... | 2.0 | +| test.c:452:10:452:20 | ... * ... | 2.0 | +| test.c:452:10:452:25 | ... + ... | 2.0 | +| test.c:452:14:452:15 | ip | 2.0 | +| test.c:452:19:452:20 | 14 | 1.0 | +| test.c:452:19:452:20 | (unsigned int)... | 1.0 | +| test.c:452:24:452:25 | 32 | 1.0 | +| test.c:452:24:452:25 | (unsigned int)... | 1.0 | +| test.c:453:9:453:9 | 2 | 1.0 | +| test.c:453:9:453:9 | (unsigned int)... | 1.0 | +| test.c:453:9:453:26 | ... * ... | 2.0 | +| test.c:453:13:453:26 | (...) | 2.0 | +| test.c:453:14:453:15 | ip | 2.0 | +| test.c:453:14:453:20 | ... * ... | 2.0 | +| test.c:453:14:453:25 | ... + ... | 2.0 | +| test.c:453:19:453:20 | 14 | 1.0 | +| test.c:453:19:453:20 | (unsigned int)... | 1.0 | +| test.c:453:24:453:25 | 64 | 1.0 | +| test.c:453:24:453:25 | (unsigned int)... | 1.0 | +| test.c:454:9:458:22 | (...) | 125.0 | +| test.c:454:10:454:21 | (...) | 2.0 | +| test.c:454:10:454:26 | ... * ... | 2.0 | +| test.c:454:10:454:80 | ... > ... | 1.0 | +| test.c:454:10:458:21 | ... ? ... : ... | 125.0 | +| test.c:454:11:454:11 | 2 | 1.0 | +| test.c:454:11:454:11 | (unsigned int)... | 1.0 | +| test.c:454:11:454:16 | ... * ... | 2.0 | +| test.c:454:11:454:20 | ... + ... | 2.0 | +| test.c:454:15:454:16 | ip | 2.0 | +| test.c:454:20:454:20 | 1 | 1.0 | +| test.c:454:20:454:20 | (unsigned int)... | 1.0 | +| test.c:454:25:454:26 | 14 | 1.0 | +| test.c:454:25:454:26 | (unsigned int)... | 1.0 | +| test.c:454:30:454:80 | (...) | 4.0 | +| test.c:454:31:454:32 | 17 | 1.0 | +| test.c:454:31:454:32 | (unsigned int)... | 1.0 | +| test.c:454:31:454:43 | ... * ... | 2.0 | +| test.c:454:31:454:53 | ... > ... | 1.0 | +| test.c:454:31:454:79 | ... ? ... : ... | 4.0 | +| test.c:454:36:454:43 | (...) | 2.0 | +| test.c:454:37:454:37 | 2 | 1.0 | +| test.c:454:37:454:37 | (unsigned int)... | 1.0 | +| test.c:454:37:454:42 | ... * ... | 2.0 | +| test.c:454:41:454:42 | ip | 2.0 | +| test.c:454:47:454:48 | 17 | 1.0 | +| test.c:454:47:454:48 | (unsigned int)... | 1.0 | +| test.c:454:47:454:53 | ... * ... | 2.0 | +| test.c:454:52:454:53 | ip | 2.0 | +| test.c:454:57:454:58 | 17 | 1.0 | +| test.c:454:57:454:58 | (unsigned int)... | 1.0 | +| test.c:454:57:454:69 | ... * ... | 2.0 | +| test.c:454:62:454:69 | (...) | 2.0 | +| test.c:454:63:454:63 | 2 | 1.0 | +| test.c:454:63:454:63 | (unsigned int)... | 1.0 | +| test.c:454:63:454:68 | ... * ... | 2.0 | +| test.c:454:67:454:68 | ip | 2.0 | +| test.c:454:73:454:74 | 17 | 1.0 | +| test.c:454:73:454:74 | (unsigned int)... | 1.0 | +| test.c:454:73:454:79 | ... * ... | 2.0 | +| test.c:454:78:454:79 | ip | 2.0 | +| test.c:455:13:455:24 | (...) | 5.0 | +| test.c:455:13:455:29 | ... * ... | 5.0 | +| test.c:455:14:455:14 | 2 | 1.0 | +| test.c:455:14:455:14 | (unsigned int)... | 1.0 | +| test.c:455:14:455:19 | ... * ... | 5.0 | +| test.c:455:14:455:23 | ... + ... | 5.0 | +| test.c:455:18:455:19 | ip | 5.0 | +| test.c:455:23:455:23 | 1 | 1.0 | +| test.c:455:23:455:23 | (unsigned int)... | 1.0 | +| test.c:455:28:455:29 | 14 | 1.0 | +| test.c:455:28:455:29 | (unsigned int)... | 1.0 | +| test.c:456:13:456:14 | 14 | 1.0 | +| test.c:456:13:456:14 | (unsigned int)... | 1.0 | +| test.c:456:13:456:25 | ... * ... | 5.0 | +| test.c:456:13:456:35 | ... > ... | 1.0 | +| test.c:456:13:458:21 | ... ? ... : ... | 25.0 | +| test.c:456:18:456:25 | (...) | 5.0 | +| test.c:456:19:456:19 | 2 | 1.0 | +| test.c:456:19:456:19 | (unsigned int)... | 1.0 | +| test.c:456:19:456:24 | ... * ... | 5.0 | +| test.c:456:23:456:24 | ip | 5.0 | +| test.c:456:29:456:30 | 17 | 1.0 | +| test.c:456:29:456:30 | (unsigned int)... | 1.0 | +| test.c:456:29:456:35 | ... * ... | 5.0 | +| test.c:456:34:456:35 | ip | 5.0 | +| test.c:457:15:457:16 | 14 | 1.0 | +| test.c:457:15:457:16 | (unsigned int)... | 1.0 | +| test.c:457:15:457:27 | ... * ... | 5.0 | +| test.c:457:20:457:27 | (...) | 5.0 | +| test.c:457:21:457:21 | 2 | 1.0 | +| test.c:457:21:457:21 | (unsigned int)... | 1.0 | +| test.c:457:21:457:26 | ... * ... | 5.0 | +| test.c:457:25:457:26 | ip | 5.0 | +| test.c:458:15:458:16 | 14 | 1.0 | +| test.c:458:15:458:16 | (unsigned int)... | 1.0 | +| test.c:458:15:458:21 | ... * ... | 5.0 | +| test.c:458:20:458:21 | ip | 5.0 | +| test.c:459:7:459:7 | 2 | 1.0 | +| test.c:459:7:459:7 | (unsigned int)... | 1.0 | +| test.c:459:7:459:12 | ... * ... | 15.0 | +| test.c:459:7:459:17 | ... * ... | 15.0 | +| test.c:459:7:459:37 | ... + ... | 225.0 | +| test.c:459:11:459:12 | ip | 15.0 | +| test.c:459:16:459:17 | 14 | 1.0 | +| test.c:459:16:459:17 | (unsigned int)... | 1.0 | +| test.c:459:21:459:32 | (...) | 15.0 | +| test.c:459:21:459:37 | ... * ... | 15.0 | +| test.c:459:22:459:22 | 2 | 1.0 | +| test.c:459:22:459:22 | (unsigned int)... | 1.0 | +| test.c:459:22:459:27 | ... * ... | 15.0 | +| test.c:459:22:459:31 | ... + ... | 15.0 | +| test.c:459:26:459:27 | ip | 15.0 | +| test.c:459:31:459:31 | 1 | 1.0 | +| test.c:459:31:459:31 | (unsigned int)... | 1.0 | +| test.c:459:36:459:37 | 17 | 1.0 | +| test.c:459:36:459:37 | (unsigned int)... | 1.0 | +| test.c:460:11:460:11 | 4 | 1.0 | +| test.c:460:11:460:11 | (unsigned int)... | 1.0 | +| test.c:460:11:460:28 | ... * ... | 15.0 | +| test.c:460:11:461:28 | ... + ... | 225.0 | +| test.c:460:11:462:28 | ... + ... | 3375.0 | +| test.c:460:11:468:24 | ... + ... | 1.00544625E8 | +| test.c:460:15:460:28 | (...) | 15.0 | +| test.c:460:16:460:17 | ip | 15.0 | +| test.c:460:16:460:22 | ... * ... | 15.0 | +| test.c:460:16:460:27 | ... + ... | 15.0 | +| test.c:460:21:460:22 | 14 | 1.0 | +| test.c:460:21:460:22 | (unsigned int)... | 1.0 | +| test.c:460:26:460:27 | 32 | 1.0 | +| test.c:460:26:460:27 | (unsigned int)... | 1.0 | +| test.c:461:11:461:28 | (...) | 15.0 | +| test.c:461:12:461:12 | 2 | 1.0 | +| test.c:461:12:461:12 | (unsigned int)... | 1.0 | +| test.c:461:12:461:17 | ... * ... | 15.0 | +| test.c:461:12:461:22 | ... * ... | 15.0 | +| test.c:461:12:461:27 | ... + ... | 15.0 | +| test.c:461:16:461:17 | ip | 15.0 | +| test.c:461:21:461:22 | 14 | 1.0 | +| test.c:461:21:461:22 | (unsigned int)... | 1.0 | +| test.c:461:26:461:27 | 32 | 1.0 | +| test.c:461:26:461:27 | (unsigned int)... | 1.0 | +| test.c:462:11:462:11 | 2 | 1.0 | +| test.c:462:11:462:11 | (unsigned int)... | 1.0 | +| test.c:462:11:462:28 | ... * ... | 15.0 | +| test.c:462:15:462:28 | (...) | 15.0 | +| test.c:462:16:462:17 | ip | 15.0 | +| test.c:462:16:462:22 | ... * ... | 15.0 | +| test.c:462:16:462:27 | ... + ... | 15.0 | +| test.c:462:21:462:22 | 14 | 1.0 | +| test.c:462:21:462:22 | (unsigned int)... | 1.0 | +| test.c:462:26:462:27 | 64 | 1.0 | +| test.c:462:26:462:27 | (unsigned int)... | 1.0 | +| test.c:463:11:468:24 | (...) | 29791.0 | +| test.c:463:12:463:23 | (...) | 15.0 | +| test.c:463:12:463:28 | ... * ... | 15.0 | +| test.c:463:12:464:61 | ... > ... | 1.0 | +| test.c:463:12:468:23 | ... ? ... : ... | 29791.0 | +| test.c:463:13:463:13 | 2 | 1.0 | +| test.c:463:13:463:13 | (unsigned int)... | 1.0 | +| test.c:463:13:463:18 | ... * ... | 15.0 | +| test.c:463:13:463:22 | ... + ... | 15.0 | +| test.c:463:17:463:18 | ip | 15.0 | +| test.c:463:22:463:22 | 1 | 1.0 | +| test.c:463:22:463:22 | (unsigned int)... | 1.0 | +| test.c:463:27:463:28 | 14 | 1.0 | +| test.c:463:27:463:28 | (unsigned int)... | 1.0 | +| test.c:464:11:464:61 | (...) | 225.0 | +| test.c:464:12:464:13 | 14 | 1.0 | +| test.c:464:12:464:13 | (unsigned int)... | 1.0 | +| test.c:464:12:464:24 | ... * ... | 15.0 | +| test.c:464:12:464:34 | ... > ... | 1.0 | +| test.c:464:12:464:60 | ... ? ... : ... | 225.0 | +| test.c:464:17:464:24 | (...) | 15.0 | +| test.c:464:18:464:18 | 2 | 1.0 | +| test.c:464:18:464:18 | (unsigned int)... | 1.0 | +| test.c:464:18:464:23 | ... * ... | 15.0 | +| test.c:464:22:464:23 | ip | 15.0 | +| test.c:464:28:464:29 | 17 | 1.0 | +| test.c:464:28:464:29 | (unsigned int)... | 1.0 | +| test.c:464:28:464:34 | ... * ... | 15.0 | +| test.c:464:33:464:34 | ip | 15.0 | +| test.c:464:38:464:39 | 17 | 1.0 | +| test.c:464:38:464:39 | (unsigned int)... | 1.0 | +| test.c:464:38:464:50 | ... * ... | 15.0 | +| test.c:464:43:464:50 | (...) | 15.0 | +| test.c:464:44:464:44 | 2 | 1.0 | +| test.c:464:44:464:44 | (unsigned int)... | 1.0 | +| test.c:464:44:464:49 | ... * ... | 15.0 | +| test.c:464:48:464:49 | ip | 15.0 | +| test.c:464:54:464:55 | 17 | 1.0 | +| test.c:464:54:464:55 | (unsigned int)... | 1.0 | +| test.c:464:54:464:60 | ... * ... | 15.0 | +| test.c:464:59:464:60 | ip | 15.0 | +| test.c:465:15:465:26 | (...) | 31.0 | +| test.c:465:15:465:31 | ... * ... | 31.0 | +| test.c:465:16:465:16 | 2 | 1.0 | +| test.c:465:16:465:16 | (unsigned int)... | 1.0 | +| test.c:465:16:465:21 | ... * ... | 31.0 | +| test.c:465:16:465:25 | ... + ... | 31.0 | +| test.c:465:20:465:21 | ip | 31.0 | +| test.c:465:25:465:25 | 1 | 1.0 | +| test.c:465:25:465:25 | (unsigned int)... | 1.0 | +| test.c:465:30:465:31 | 14 | 1.0 | +| test.c:465:30:465:31 | (unsigned int)... | 1.0 | +| test.c:466:15:466:16 | 14 | 1.0 | +| test.c:466:15:466:16 | (unsigned int)... | 1.0 | +| test.c:466:15:466:27 | ... * ... | 31.0 | +| test.c:466:15:466:37 | ... > ... | 1.0 | +| test.c:466:15:468:23 | ... ? ... : ... | 961.0 | +| test.c:466:20:466:27 | (...) | 31.0 | +| test.c:466:21:466:21 | 2 | 1.0 | +| test.c:466:21:466:21 | (unsigned int)... | 1.0 | +| test.c:466:21:466:26 | ... * ... | 31.0 | +| test.c:466:25:466:26 | ip | 31.0 | +| test.c:466:31:466:32 | 17 | 1.0 | +| test.c:466:31:466:32 | (unsigned int)... | 1.0 | +| test.c:466:31:466:37 | ... * ... | 31.0 | +| test.c:466:36:466:37 | ip | 31.0 | +| test.c:467:17:467:18 | 14 | 1.0 | +| test.c:467:17:467:18 | (unsigned int)... | 1.0 | +| test.c:467:17:467:29 | ... * ... | 31.0 | +| test.c:467:22:467:29 | (...) | 31.0 | +| test.c:467:23:467:23 | 2 | 1.0 | +| test.c:467:23:467:23 | (unsigned int)... | 1.0 | +| test.c:467:23:467:28 | ... * ... | 31.0 | +| test.c:467:27:467:28 | ip | 31.0 | +| test.c:468:17:468:18 | 14 | 1.0 | +| test.c:468:17:468:18 | (unsigned int)... | 1.0 | +| test.c:468:17:468:23 | ... * ... | 31.0 | +| test.c:468:22:468:23 | ip | 31.0 | +| test.c:469:11:469:11 | 2 | 1.0 | +| test.c:469:11:469:11 | (unsigned int)... | 1.0 | +| test.c:469:11:469:16 | ... * ... | 15.0 | +| test.c:469:11:469:21 | ... * ... | 15.0 | +| test.c:469:11:469:41 | ... + ... | 225.0 | +| test.c:469:15:469:16 | ip | 15.0 | +| test.c:469:20:469:21 | 14 | 1.0 | +| test.c:469:20:469:21 | (unsigned int)... | 1.0 | +| test.c:469:25:469:36 | (...) | 15.0 | +| test.c:469:25:469:41 | ... * ... | 15.0 | +| test.c:469:26:469:26 | 2 | 1.0 | +| test.c:469:26:469:26 | (unsigned int)... | 1.0 | +| test.c:469:26:469:31 | ... * ... | 15.0 | +| test.c:469:26:469:35 | ... + ... | 15.0 | +| test.c:469:30:469:31 | ip | 15.0 | +| test.c:469:35:469:35 | 1 | 1.0 | +| test.c:469:35:469:35 | (unsigned int)... | 1.0 | +| test.c:469:40:469:41 | 17 | 1.0 | +| test.c:469:40:469:41 | (unsigned int)... | 1.0 | +| test.c:470:5:489:24 | (...) | 6.6142118960740864E25 | +| test.c:470:6:470:6 | 4 | 1.0 | +| test.c:470:6:470:6 | (unsigned int)... | 1.0 | +| test.c:470:6:470:23 | ... * ... | 108.0 | +| test.c:470:6:471:24 | ... + ... | 11664.0 | +| test.c:470:6:472:24 | ... + ... | 1259712.0 | +| test.c:470:6:477:20 | ... + ... | 1.2872131505856E13 | +| test.c:470:6:478:55 | ... > ... | 1.0 | +| test.c:470:6:489:23 | ... ? ... : ... | 6.6142118960740864E25 | +| test.c:470:10:470:23 | (...) | 108.0 | +| test.c:470:11:470:12 | ip | 108.0 | +| test.c:470:11:470:17 | ... * ... | 108.0 | +| test.c:470:11:470:22 | ... + ... | 108.0 | +| test.c:470:16:470:17 | 14 | 1.0 | +| test.c:470:16:470:17 | (unsigned int)... | 1.0 | +| test.c:470:21:470:22 | 32 | 1.0 | +| test.c:470:21:470:22 | (unsigned int)... | 1.0 | +| test.c:471:7:471:24 | (...) | 108.0 | +| test.c:471:8:471:8 | 2 | 1.0 | +| test.c:471:8:471:8 | (unsigned int)... | 1.0 | +| test.c:471:8:471:13 | ... * ... | 108.0 | +| test.c:471:8:471:18 | ... * ... | 108.0 | +| test.c:471:8:471:23 | ... + ... | 108.0 | +| test.c:471:12:471:13 | ip | 108.0 | +| test.c:471:17:471:18 | 14 | 1.0 | +| test.c:471:17:471:18 | (unsigned int)... | 1.0 | +| test.c:471:22:471:23 | 32 | 1.0 | +| test.c:471:22:471:23 | (unsigned int)... | 1.0 | +| test.c:472:7:472:7 | 2 | 1.0 | +| test.c:472:7:472:7 | (unsigned int)... | 1.0 | +| test.c:472:7:472:24 | ... * ... | 108.0 | +| test.c:472:11:472:24 | (...) | 108.0 | +| test.c:472:12:472:13 | ip | 108.0 | +| test.c:472:12:472:18 | ... * ... | 108.0 | +| test.c:472:12:472:23 | ... + ... | 108.0 | +| test.c:472:17:472:18 | 14 | 1.0 | +| test.c:472:17:472:18 | (unsigned int)... | 1.0 | +| test.c:472:22:472:23 | 64 | 1.0 | +| test.c:472:22:472:23 | (unsigned int)... | 1.0 | +| test.c:473:7:477:20 | (...) | 1.0218313E7 | +| test.c:473:8:473:19 | (...) | 108.0 | +| test.c:473:8:473:24 | ... * ... | 108.0 | +| test.c:473:8:473:78 | ... > ... | 1.0 | +| test.c:473:8:477:19 | ... ? ... : ... | 1.0218313E7 | +| test.c:473:9:473:9 | 2 | 1.0 | +| test.c:473:9:473:9 | (unsigned int)... | 1.0 | +| test.c:473:9:473:14 | ... * ... | 108.0 | +| test.c:473:9:473:18 | ... + ... | 108.0 | +| test.c:473:13:473:14 | ip | 108.0 | +| test.c:473:18:473:18 | 1 | 1.0 | +| test.c:473:18:473:18 | (unsigned int)... | 1.0 | +| test.c:473:23:473:24 | 14 | 1.0 | +| test.c:473:23:473:24 | (unsigned int)... | 1.0 | +| test.c:473:28:473:78 | (...) | 11664.0 | +| test.c:473:29:473:30 | 17 | 1.0 | +| test.c:473:29:473:30 | (unsigned int)... | 1.0 | +| test.c:473:29:473:41 | ... * ... | 108.0 | +| test.c:473:29:473:51 | ... > ... | 1.0 | +| test.c:473:29:473:77 | ... ? ... : ... | 11664.0 | +| test.c:473:34:473:41 | (...) | 108.0 | +| test.c:473:35:473:35 | 2 | 1.0 | +| test.c:473:35:473:35 | (unsigned int)... | 1.0 | +| test.c:473:35:473:40 | ... * ... | 108.0 | +| test.c:473:39:473:40 | ip | 108.0 | +| test.c:473:45:473:46 | 17 | 1.0 | +| test.c:473:45:473:46 | (unsigned int)... | 1.0 | +| test.c:473:45:473:51 | ... * ... | 108.0 | +| test.c:473:50:473:51 | ip | 108.0 | +| test.c:473:55:473:56 | 17 | 1.0 | +| test.c:473:55:473:56 | (unsigned int)... | 1.0 | +| test.c:473:55:473:67 | ... * ... | 108.0 | +| test.c:473:60:473:67 | (...) | 108.0 | +| test.c:473:61:473:61 | 2 | 1.0 | +| test.c:473:61:473:61 | (unsigned int)... | 1.0 | +| test.c:473:61:473:66 | ... * ... | 108.0 | +| test.c:473:65:473:66 | ip | 108.0 | +| test.c:473:71:473:72 | 17 | 1.0 | +| test.c:473:71:473:72 | (unsigned int)... | 1.0 | +| test.c:473:71:473:77 | ... * ... | 108.0 | +| test.c:473:76:473:77 | ip | 108.0 | +| test.c:474:11:474:22 | (...) | 217.0 | +| test.c:474:11:474:27 | ... * ... | 217.0 | +| test.c:474:12:474:12 | 2 | 1.0 | +| test.c:474:12:474:12 | (unsigned int)... | 1.0 | +| test.c:474:12:474:17 | ... * ... | 217.0 | +| test.c:474:12:474:21 | ... + ... | 217.0 | +| test.c:474:16:474:17 | ip | 217.0 | +| test.c:474:21:474:21 | 1 | 1.0 | +| test.c:474:21:474:21 | (unsigned int)... | 1.0 | +| test.c:474:26:474:27 | 14 | 1.0 | +| test.c:474:26:474:27 | (unsigned int)... | 1.0 | +| test.c:475:11:475:12 | 14 | 1.0 | +| test.c:475:11:475:12 | (unsigned int)... | 1.0 | +| test.c:475:11:475:23 | ... * ... | 217.0 | +| test.c:475:11:475:33 | ... > ... | 1.0 | +| test.c:475:11:477:19 | ... ? ... : ... | 47089.0 | +| test.c:475:16:475:23 | (...) | 217.0 | +| test.c:475:17:475:17 | 2 | 1.0 | +| test.c:475:17:475:17 | (unsigned int)... | 1.0 | +| test.c:475:17:475:22 | ... * ... | 217.0 | +| test.c:475:21:475:22 | ip | 217.0 | +| test.c:475:27:475:28 | 17 | 1.0 | +| test.c:475:27:475:28 | (unsigned int)... | 1.0 | +| test.c:475:27:475:33 | ... * ... | 217.0 | +| test.c:475:32:475:33 | ip | 217.0 | +| test.c:476:13:476:14 | 14 | 1.0 | +| test.c:476:13:476:14 | (unsigned int)... | 1.0 | +| test.c:476:13:476:25 | ... * ... | 217.0 | +| test.c:476:18:476:25 | (...) | 217.0 | +| test.c:476:19:476:19 | 2 | 1.0 | +| test.c:476:19:476:19 | (unsigned int)... | 1.0 | +| test.c:476:19:476:24 | ... * ... | 217.0 | +| test.c:476:23:476:24 | ip | 217.0 | +| test.c:477:13:477:14 | 14 | 1.0 | +| test.c:477:13:477:14 | (unsigned int)... | 1.0 | +| test.c:477:13:477:19 | ... * ... | 217.0 | +| test.c:477:18:477:19 | ip | 217.0 | +| test.c:478:5:478:55 | (...) | 423801.0 | +| test.c:478:6:478:7 | 14 | 1.0 | +| test.c:478:6:478:7 | (unsigned int)... | 1.0 | +| test.c:478:6:478:12 | ... * ... | 651.0 | +| test.c:478:6:478:28 | ... > ... | 1.0 | +| test.c:478:6:478:54 | ... ? ... : ... | 423801.0 | +| test.c:478:11:478:12 | ip | 651.0 | +| test.c:478:16:478:23 | (...) | 651.0 | +| test.c:478:16:478:28 | ... * ... | 651.0 | +| test.c:478:17:478:18 | ip | 651.0 | +| test.c:478:17:478:22 | ... + ... | 651.0 | +| test.c:478:22:478:22 | 1 | 1.0 | +| test.c:478:22:478:22 | (unsigned int)... | 1.0 | +| test.c:478:27:478:28 | 17 | 1.0 | +| test.c:478:27:478:28 | (unsigned int)... | 1.0 | +| test.c:478:32:478:33 | 17 | 1.0 | +| test.c:478:32:478:33 | (unsigned int)... | 1.0 | +| test.c:478:32:478:38 | ... * ... | 651.0 | +| test.c:478:37:478:38 | ip | 651.0 | +| test.c:478:42:478:49 | (...) | 651.0 | +| test.c:478:42:478:54 | ... * ... | 651.0 | +| test.c:478:43:478:44 | ip | 651.0 | +| test.c:478:43:478:48 | ... + ... | 651.0 | +| test.c:478:48:478:48 | 1 | 1.0 | +| test.c:478:48:478:48 | (unsigned int)... | 1.0 | +| test.c:478:53:478:54 | 17 | 1.0 | +| test.c:478:53:478:54 | (unsigned int)... | 1.0 | +| test.c:479:9:479:9 | 4 | 1.0 | +| test.c:479:9:479:9 | (unsigned int)... | 1.0 | +| test.c:479:9:479:26 | ... * ... | 1302.0 | +| test.c:479:9:480:26 | ... + ... | 1695204.0 | +| test.c:479:9:481:26 | ... + ... | 2.207155608E9 | +| test.c:479:9:486:22 | ... + ... | 3.9017203216097214E19 | +| test.c:479:13:479:26 | (...) | 1302.0 | +| test.c:479:14:479:15 | ip | 1302.0 | +| test.c:479:14:479:20 | ... * ... | 1302.0 | +| test.c:479:14:479:25 | ... + ... | 1302.0 | +| test.c:479:19:479:20 | 14 | 1.0 | +| test.c:479:19:479:20 | (unsigned int)... | 1.0 | +| test.c:479:24:479:25 | 32 | 1.0 | +| test.c:479:24:479:25 | (unsigned int)... | 1.0 | +| test.c:480:9:480:26 | (...) | 1302.0 | +| test.c:480:10:480:10 | 2 | 1.0 | +| test.c:480:10:480:10 | (unsigned int)... | 1.0 | +| test.c:480:10:480:15 | ... * ... | 1302.0 | +| test.c:480:10:480:20 | ... * ... | 1302.0 | +| test.c:480:10:480:25 | ... + ... | 1302.0 | +| test.c:480:14:480:15 | ip | 1302.0 | +| test.c:480:19:480:20 | 14 | 1.0 | +| test.c:480:19:480:20 | (unsigned int)... | 1.0 | +| test.c:480:24:480:25 | 32 | 1.0 | +| test.c:480:24:480:25 | (unsigned int)... | 1.0 | +| test.c:481:9:481:9 | 2 | 1.0 | +| test.c:481:9:481:9 | (unsigned int)... | 1.0 | +| test.c:481:9:481:26 | ... * ... | 1302.0 | +| test.c:481:13:481:26 | (...) | 1302.0 | +| test.c:481:14:481:15 | ip | 1302.0 | +| test.c:481:14:481:20 | ... * ... | 1302.0 | +| test.c:481:14:481:25 | ... + ... | 1302.0 | +| test.c:481:19:481:20 | 14 | 1.0 | +| test.c:481:19:481:20 | (unsigned int)... | 1.0 | +| test.c:481:24:481:25 | 64 | 1.0 | +| test.c:481:24:481:25 | (unsigned int)... | 1.0 | +| test.c:482:9:486:22 | (...) | 1.7677595125E10 | +| test.c:482:10:482:21 | (...) | 1302.0 | +| test.c:482:10:482:26 | ... * ... | 1302.0 | +| test.c:482:10:482:80 | ... > ... | 1.0 | +| test.c:482:10:486:21 | ... ? ... : ... | 1.7677595125E10 | +| test.c:482:11:482:11 | 2 | 1.0 | +| test.c:482:11:482:11 | (unsigned int)... | 1.0 | +| test.c:482:11:482:16 | ... * ... | 1302.0 | +| test.c:482:11:482:20 | ... + ... | 1302.0 | +| test.c:482:15:482:16 | ip | 1302.0 | +| test.c:482:20:482:20 | 1 | 1.0 | +| test.c:482:20:482:20 | (unsigned int)... | 1.0 | +| test.c:482:25:482:26 | 14 | 1.0 | +| test.c:482:25:482:26 | (unsigned int)... | 1.0 | +| test.c:482:30:482:80 | (...) | 1695204.0 | +| test.c:482:31:482:32 | 17 | 1.0 | +| test.c:482:31:482:32 | (unsigned int)... | 1.0 | +| test.c:482:31:482:43 | ... * ... | 1302.0 | +| test.c:482:31:482:53 | ... > ... | 1.0 | +| test.c:482:31:482:79 | ... ? ... : ... | 1695204.0 | +| test.c:482:36:482:43 | (...) | 1302.0 | +| test.c:482:37:482:37 | 2 | 1.0 | +| test.c:482:37:482:37 | (unsigned int)... | 1.0 | +| test.c:482:37:482:42 | ... * ... | 1302.0 | +| test.c:482:41:482:42 | ip | 1302.0 | +| test.c:482:47:482:48 | 17 | 1.0 | +| test.c:482:47:482:48 | (unsigned int)... | 1.0 | +| test.c:482:47:482:53 | ... * ... | 1302.0 | +| test.c:482:52:482:53 | ip | 1302.0 | +| test.c:482:57:482:58 | 17 | 1.0 | +| test.c:482:57:482:58 | (unsigned int)... | 1.0 | +| test.c:482:57:482:69 | ... * ... | 1302.0 | +| test.c:482:62:482:69 | (...) | 1302.0 | +| test.c:482:63:482:63 | 2 | 1.0 | +| test.c:482:63:482:63 | (unsigned int)... | 1.0 | +| test.c:482:63:482:68 | ... * ... | 1302.0 | +| test.c:482:67:482:68 | ip | 1302.0 | +| test.c:482:73:482:74 | 17 | 1.0 | +| test.c:482:73:482:74 | (unsigned int)... | 1.0 | +| test.c:482:73:482:79 | ... * ... | 1302.0 | +| test.c:482:78:482:79 | ip | 1302.0 | +| test.c:483:13:483:24 | (...) | 2605.0 | +| test.c:483:13:483:29 | ... * ... | 2605.0 | +| test.c:483:14:483:14 | 2 | 1.0 | +| test.c:483:14:483:14 | (unsigned int)... | 1.0 | +| test.c:483:14:483:19 | ... * ... | 2605.0 | +| test.c:483:14:483:23 | ... + ... | 2605.0 | +| test.c:483:18:483:19 | ip | 2605.0 | +| test.c:483:23:483:23 | 1 | 1.0 | +| test.c:483:23:483:23 | (unsigned int)... | 1.0 | +| test.c:483:28:483:29 | 14 | 1.0 | +| test.c:483:28:483:29 | (unsigned int)... | 1.0 | +| test.c:484:13:484:14 | 14 | 1.0 | +| test.c:484:13:484:14 | (unsigned int)... | 1.0 | +| test.c:484:13:484:25 | ... * ... | 2605.0 | +| test.c:484:13:484:35 | ... > ... | 1.0 | +| test.c:484:13:486:21 | ... ? ... : ... | 6786025.0 | +| test.c:484:18:484:25 | (...) | 2605.0 | +| test.c:484:19:484:19 | 2 | 1.0 | +| test.c:484:19:484:19 | (unsigned int)... | 1.0 | +| test.c:484:19:484:24 | ... * ... | 2605.0 | +| test.c:484:23:484:24 | ip | 2605.0 | +| test.c:484:29:484:30 | 17 | 1.0 | +| test.c:484:29:484:30 | (unsigned int)... | 1.0 | +| test.c:484:29:484:35 | ... * ... | 2605.0 | +| test.c:484:34:484:35 | ip | 2605.0 | +| test.c:485:15:485:16 | 14 | 1.0 | +| test.c:485:15:485:16 | (unsigned int)... | 1.0 | +| test.c:485:15:485:27 | ... * ... | 2605.0 | +| test.c:485:20:485:27 | (...) | 2605.0 | +| test.c:485:21:485:21 | 2 | 1.0 | +| test.c:485:21:485:21 | (unsigned int)... | 1.0 | +| test.c:485:21:485:26 | ... * ... | 2605.0 | +| test.c:485:25:485:26 | ip | 2605.0 | +| test.c:486:15:486:16 | 14 | 1.0 | +| test.c:486:15:486:16 | (unsigned int)... | 1.0 | +| test.c:486:15:486:21 | ... * ... | 2605.0 | +| test.c:486:20:486:21 | ip | 2605.0 | +| test.c:487:9:487:10 | 14 | 1.0 | +| test.c:487:9:487:10 | (unsigned int)... | 1.0 | +| test.c:487:9:487:15 | ... * ... | 1302.0 | +| test.c:487:9:487:31 | ... > ... | 1.0 | +| test.c:487:9:489:23 | ... ? ... : ... | 1695204.0 | +| test.c:487:14:487:15 | ip | 1302.0 | +| test.c:487:19:487:26 | (...) | 1302.0 | +| test.c:487:19:487:31 | ... * ... | 1302.0 | +| test.c:487:20:487:21 | ip | 1302.0 | +| test.c:487:20:487:25 | ... + ... | 1302.0 | +| test.c:487:25:487:25 | 1 | 1.0 | +| test.c:487:25:487:25 | (unsigned int)... | 1.0 | +| test.c:487:30:487:31 | 17 | 1.0 | +| test.c:487:30:487:31 | (unsigned int)... | 1.0 | +| test.c:488:11:488:12 | 14 | 1.0 | +| test.c:488:11:488:12 | (unsigned int)... | 1.0 | +| test.c:488:11:488:17 | ... * ... | 1302.0 | +| test.c:488:16:488:17 | ip | 1302.0 | +| test.c:489:11:489:18 | (...) | 1302.0 | +| test.c:489:11:489:23 | ... * ... | 1302.0 | +| test.c:489:12:489:13 | ip | 1302.0 | +| test.c:489:12:489:17 | ... + ... | 1302.0 | +| test.c:489:17:489:17 | 1 | 1.0 | +| test.c:489:17:489:17 | (unsigned int)... | 1.0 | +| test.c:489:22:489:23 | 14 | 1.0 | +| test.c:489:22:489:23 | (unsigned int)... | 1.0 | +| test.c:490:9:490:9 | 2 | 1.0 | +| test.c:490:9:490:9 | (unsigned int)... | 1.0 | +| test.c:490:9:490:26 | ... * ... | 10419.0 | +| test.c:490:9:510:44 | ... + ... | 1.9449636104972528E43 | +| test.c:490:13:490:26 | (...) | 10419.0 | +| test.c:490:14:490:15 | ip | 10419.0 | +| test.c:490:14:490:20 | ... * ... | 10419.0 | +| test.c:490:14:490:25 | ... + ... | 10419.0 | +| test.c:490:19:490:20 | 14 | 1.0 | +| test.c:490:19:490:20 | (unsigned int)... | 1.0 | +| test.c:490:24:490:25 | 32 | 1.0 | +| test.c:490:24:490:25 | (unsigned int)... | 1.0 | +| test.c:491:9:510:44 | (...) | 1.8667469147684545E39 | +| test.c:491:10:491:10 | 4 | 1.0 | +| test.c:491:10:491:10 | (unsigned int)... | 1.0 | +| test.c:491:10:491:27 | ... * ... | 10419.0 | +| test.c:491:10:492:28 | ... + ... | 1.08555561E8 | +| test.c:491:10:493:28 | ... + ... | 1.131040390059E12 | +| test.c:491:10:499:24 | ... + ... | 1.0235492350954187E25 | +| test.c:491:10:500:39 | ... > ... | 1.0 | +| test.c:491:10:510:43 | ... ? ... : ... | 1.8667469147684545E39 | +| test.c:491:14:491:27 | (...) | 10419.0 | +| test.c:491:15:491:16 | ip | 10419.0 | +| test.c:491:15:491:21 | ... * ... | 10419.0 | +| test.c:491:15:491:26 | ... + ... | 10419.0 | +| test.c:491:20:491:21 | 14 | 1.0 | +| test.c:491:20:491:21 | (unsigned int)... | 1.0 | +| test.c:491:25:491:26 | 32 | 1.0 | +| test.c:491:25:491:26 | (unsigned int)... | 1.0 | +| test.c:492:11:492:28 | (...) | 10419.0 | +| test.c:492:12:492:12 | 2 | 1.0 | +| test.c:492:12:492:12 | (unsigned int)... | 1.0 | +| test.c:492:12:492:17 | ... * ... | 10419.0 | +| test.c:492:12:492:22 | ... * ... | 10419.0 | +| test.c:492:12:492:27 | ... + ... | 10419.0 | +| test.c:492:16:492:17 | ip | 10419.0 | +| test.c:492:21:492:22 | 14 | 1.0 | +| test.c:492:21:492:22 | (unsigned int)... | 1.0 | +| test.c:492:26:492:27 | 32 | 1.0 | +| test.c:492:26:492:27 | (unsigned int)... | 1.0 | +| test.c:493:11:493:11 | 2 | 1.0 | +| test.c:493:11:493:11 | (unsigned int)... | 1.0 | +| test.c:493:11:493:28 | ... * ... | 10419.0 | +| test.c:493:15:493:28 | (...) | 10419.0 | +| test.c:493:16:493:17 | ip | 10419.0 | +| test.c:493:16:493:22 | ... * ... | 10419.0 | +| test.c:493:16:493:27 | ... + ... | 10419.0 | +| test.c:493:21:493:22 | 14 | 1.0 | +| test.c:493:21:493:22 | (unsigned int)... | 1.0 | +| test.c:493:26:493:27 | 64 | 1.0 | +| test.c:493:26:493:27 | (unsigned int)... | 1.0 | +| test.c:494:11:499:24 | (...) | 9.049625849719E12 | +| test.c:494:12:494:23 | (...) | 10419.0 | +| test.c:494:12:494:28 | ... * ... | 10419.0 | +| test.c:494:12:495:61 | ... > ... | 1.0 | +| test.c:494:12:499:23 | ... ? ... : ... | 9.049625849719E12 | +| test.c:494:13:494:13 | 2 | 1.0 | +| test.c:494:13:494:13 | (unsigned int)... | 1.0 | +| test.c:494:13:494:18 | ... * ... | 10419.0 | +| test.c:494:13:494:22 | ... + ... | 10419.0 | +| test.c:494:17:494:18 | ip | 10419.0 | +| test.c:494:22:494:22 | 1 | 1.0 | +| test.c:494:22:494:22 | (unsigned int)... | 1.0 | +| test.c:494:27:494:28 | 14 | 1.0 | +| test.c:494:27:494:28 | (unsigned int)... | 1.0 | +| test.c:495:11:495:61 | (...) | 1.08555561E8 | +| test.c:495:12:495:13 | 14 | 1.0 | +| test.c:495:12:495:13 | (unsigned int)... | 1.0 | +| test.c:495:12:495:24 | ... * ... | 10419.0 | +| test.c:495:12:495:34 | ... > ... | 1.0 | +| test.c:495:12:495:60 | ... ? ... : ... | 1.08555561E8 | +| test.c:495:17:495:24 | (...) | 10419.0 | +| test.c:495:18:495:18 | 2 | 1.0 | +| test.c:495:18:495:18 | (unsigned int)... | 1.0 | +| test.c:495:18:495:23 | ... * ... | 10419.0 | +| test.c:495:22:495:23 | ip | 10419.0 | +| test.c:495:28:495:29 | 17 | 1.0 | +| test.c:495:28:495:29 | (unsigned int)... | 1.0 | +| test.c:495:28:495:34 | ... * ... | 10419.0 | +| test.c:495:33:495:34 | ip | 10419.0 | +| test.c:495:38:495:39 | 17 | 1.0 | +| test.c:495:38:495:39 | (unsigned int)... | 1.0 | +| test.c:495:38:495:50 | ... * ... | 10419.0 | +| test.c:495:43:495:50 | (...) | 10419.0 | +| test.c:495:44:495:44 | 2 | 1.0 | +| test.c:495:44:495:44 | (unsigned int)... | 1.0 | +| test.c:495:44:495:49 | ... * ... | 10419.0 | +| test.c:495:48:495:49 | ip | 10419.0 | +| test.c:495:54:495:55 | 17 | 1.0 | +| test.c:495:54:495:55 | (unsigned int)... | 1.0 | +| test.c:495:54:495:60 | ... * ... | 10419.0 | +| test.c:495:59:495:60 | ip | 10419.0 | +| test.c:496:15:496:26 | (...) | 20839.0 | +| test.c:496:15:496:31 | ... * ... | 20839.0 | +| test.c:496:16:496:16 | 2 | 1.0 | +| test.c:496:16:496:16 | (unsigned int)... | 1.0 | +| test.c:496:16:496:21 | ... * ... | 20839.0 | +| test.c:496:16:496:25 | ... + ... | 20839.0 | +| test.c:496:20:496:21 | ip | 20839.0 | +| test.c:496:25:496:25 | 1 | 1.0 | +| test.c:496:25:496:25 | (unsigned int)... | 1.0 | +| test.c:496:30:496:31 | 14 | 1.0 | +| test.c:496:30:496:31 | (unsigned int)... | 1.0 | +| test.c:497:15:497:16 | 14 | 1.0 | +| test.c:497:15:497:16 | (unsigned int)... | 1.0 | +| test.c:497:15:497:27 | ... * ... | 20839.0 | +| test.c:497:15:497:37 | ... > ... | 1.0 | +| test.c:497:15:499:23 | ... ? ... : ... | 4.34263921E8 | +| test.c:497:20:497:27 | (...) | 20839.0 | +| test.c:497:21:497:21 | 2 | 1.0 | +| test.c:497:21:497:21 | (unsigned int)... | 1.0 | +| test.c:497:21:497:26 | ... * ... | 20839.0 | +| test.c:497:25:497:26 | ip | 20839.0 | +| test.c:497:31:497:32 | 17 | 1.0 | +| test.c:497:31:497:32 | (unsigned int)... | 1.0 | +| test.c:497:31:497:37 | ... * ... | 20839.0 | +| test.c:497:36:497:37 | ip | 20839.0 | +| test.c:498:17:498:18 | 14 | 1.0 | +| test.c:498:17:498:18 | (unsigned int)... | 1.0 | +| test.c:498:17:498:29 | ... * ... | 20839.0 | +| test.c:498:22:498:29 | (...) | 20839.0 | +| test.c:498:23:498:23 | 2 | 1.0 | +| test.c:498:23:498:23 | (unsigned int)... | 1.0 | +| test.c:498:23:498:28 | ... * ... | 20839.0 | +| test.c:498:27:498:28 | ip | 20839.0 | +| test.c:499:17:499:18 | 14 | 1.0 | +| test.c:499:17:499:18 | (unsigned int)... | 1.0 | +| test.c:499:17:499:23 | ... * ... | 20839.0 | +| test.c:499:22:499:23 | ip | 20839.0 | +| test.c:500:9:500:9 | 2 | 1.0 | +| test.c:500:9:500:9 | (unsigned int)... | 1.0 | +| test.c:500:9:500:14 | ... * ... | 62517.0 | +| test.c:500:9:500:19 | ... * ... | 62517.0 | +| test.c:500:9:500:39 | ... + ... | 3.908375289E9 | +| test.c:500:13:500:14 | ip | 62517.0 | +| test.c:500:18:500:19 | 14 | 1.0 | +| test.c:500:18:500:19 | (unsigned int)... | 1.0 | +| test.c:500:23:500:34 | (...) | 62517.0 | +| test.c:500:23:500:39 | ... * ... | 62517.0 | +| test.c:500:24:500:24 | 2 | 1.0 | +| test.c:500:24:500:24 | (unsigned int)... | 1.0 | +| test.c:500:24:500:29 | ... * ... | 62517.0 | +| test.c:500:24:500:33 | ... + ... | 62517.0 | +| test.c:500:28:500:29 | ip | 62517.0 | +| test.c:500:33:500:33 | 1 | 1.0 | +| test.c:500:33:500:33 | (unsigned int)... | 1.0 | +| test.c:500:38:500:39 | 17 | 1.0 | +| test.c:500:38:500:39 | (unsigned int)... | 1.0 | +| test.c:501:13:501:13 | 4 | 1.0 | +| test.c:501:13:501:13 | (unsigned int)... | 1.0 | +| test.c:501:13:501:30 | ... * ... | 62517.0 | +| test.c:501:13:502:30 | ... + ... | 3.908375289E9 | +| test.c:501:13:503:30 | ... + ... | 2.44339897942413E14 | +| test.c:501:13:509:26 | ... + ... | 4.7762734556795386E29 | +| test.c:501:17:501:30 | (...) | 62517.0 | +| test.c:501:18:501:19 | ip | 62517.0 | +| test.c:501:18:501:24 | ... * ... | 62517.0 | +| test.c:501:18:501:29 | ... + ... | 62517.0 | +| test.c:501:23:501:24 | 14 | 1.0 | +| test.c:501:23:501:24 | (unsigned int)... | 1.0 | +| test.c:501:28:501:29 | 32 | 1.0 | +| test.c:501:28:501:29 | (unsigned int)... | 1.0 | +| test.c:502:13:502:30 | (...) | 62517.0 | +| test.c:502:14:502:14 | 2 | 1.0 | +| test.c:502:14:502:14 | (unsigned int)... | 1.0 | +| test.c:502:14:502:19 | ... * ... | 62517.0 | +| test.c:502:14:502:24 | ... * ... | 62517.0 | +| test.c:502:14:502:29 | ... + ... | 62517.0 | +| test.c:502:18:502:19 | ip | 62517.0 | +| test.c:502:23:502:24 | 14 | 1.0 | +| test.c:502:23:502:24 | (unsigned int)... | 1.0 | +| test.c:502:28:502:29 | 32 | 1.0 | +| test.c:502:28:502:29 | (unsigned int)... | 1.0 | +| test.c:503:13:503:13 | 2 | 1.0 | +| test.c:503:13:503:13 | (unsigned int)... | 1.0 | +| test.c:503:13:503:30 | ... * ... | 62517.0 | +| test.c:503:17:503:30 | (...) | 62517.0 | +| test.c:503:18:503:19 | ip | 62517.0 | +| test.c:503:18:503:24 | ... * ... | 62517.0 | +| test.c:503:18:503:29 | ... + ... | 62517.0 | +| test.c:503:23:503:24 | 14 | 1.0 | +| test.c:503:23:503:24 | (unsigned int)... | 1.0 | +| test.c:503:28:503:29 | 64 | 1.0 | +| test.c:503:28:503:29 | (unsigned int)... | 1.0 | +| test.c:504:13:509:26 | (...) | 1.954766084417875E15 | +| test.c:504:14:504:25 | (...) | 62517.0 | +| test.c:504:14:504:30 | ... * ... | 62517.0 | +| test.c:504:14:505:63 | ... > ... | 1.0 | +| test.c:504:14:509:25 | ... ? ... : ... | 1.954766084417875E15 | +| test.c:504:15:504:15 | 2 | 1.0 | +| test.c:504:15:504:15 | (unsigned int)... | 1.0 | +| test.c:504:15:504:20 | ... * ... | 62517.0 | +| test.c:504:15:504:24 | ... + ... | 62517.0 | +| test.c:504:19:504:20 | ip | 62517.0 | +| test.c:504:24:504:24 | 1 | 1.0 | +| test.c:504:24:504:24 | (unsigned int)... | 1.0 | +| test.c:504:29:504:30 | 14 | 1.0 | +| test.c:504:29:504:30 | (unsigned int)... | 1.0 | +| test.c:505:13:505:63 | (...) | 3.908375289E9 | +| test.c:505:14:505:15 | 14 | 1.0 | +| test.c:505:14:505:15 | (unsigned int)... | 1.0 | +| test.c:505:14:505:26 | ... * ... | 62517.0 | +| test.c:505:14:505:36 | ... > ... | 1.0 | +| test.c:505:14:505:62 | ... ? ... : ... | 3.908375289E9 | +| test.c:505:19:505:26 | (...) | 62517.0 | +| test.c:505:20:505:20 | 2 | 1.0 | +| test.c:505:20:505:20 | (unsigned int)... | 1.0 | +| test.c:505:20:505:25 | ... * ... | 62517.0 | +| test.c:505:24:505:25 | ip | 62517.0 | +| test.c:505:30:505:31 | 17 | 1.0 | +| test.c:505:30:505:31 | (unsigned int)... | 1.0 | +| test.c:505:30:505:36 | ... * ... | 62517.0 | +| test.c:505:35:505:36 | ip | 62517.0 | +| test.c:505:40:505:41 | 17 | 1.0 | +| test.c:505:40:505:41 | (unsigned int)... | 1.0 | +| test.c:505:40:505:52 | ... * ... | 62517.0 | +| test.c:505:45:505:52 | (...) | 62517.0 | +| test.c:505:46:505:46 | 2 | 1.0 | +| test.c:505:46:505:46 | (unsigned int)... | 1.0 | +| test.c:505:46:505:51 | ... * ... | 62517.0 | +| test.c:505:50:505:51 | ip | 62517.0 | +| test.c:505:56:505:57 | 17 | 1.0 | +| test.c:505:56:505:57 | (unsigned int)... | 1.0 | +| test.c:505:56:505:62 | ... * ... | 62517.0 | +| test.c:505:61:505:62 | ip | 62517.0 | +| test.c:506:17:506:28 | (...) | 125035.0 | +| test.c:506:17:506:33 | ... * ... | 125035.0 | +| test.c:506:18:506:18 | 2 | 1.0 | +| test.c:506:18:506:18 | (unsigned int)... | 1.0 | +| test.c:506:18:506:23 | ... * ... | 125035.0 | +| test.c:506:18:506:27 | ... + ... | 125035.0 | +| test.c:506:22:506:23 | ip | 125035.0 | +| test.c:506:27:506:27 | 1 | 1.0 | +| test.c:506:27:506:27 | (unsigned int)... | 1.0 | +| test.c:506:32:506:33 | 14 | 1.0 | +| test.c:506:32:506:33 | (unsigned int)... | 1.0 | +| test.c:507:17:507:18 | 14 | 1.0 | +| test.c:507:17:507:18 | (unsigned int)... | 1.0 | +| test.c:507:17:507:29 | ... * ... | 125035.0 | +| test.c:507:17:507:39 | ... > ... | 1.0 | +| test.c:507:17:509:25 | ... ? ... : ... | 1.5633751225E10 | +| test.c:507:22:507:29 | (...) | 125035.0 | +| test.c:507:23:507:23 | 2 | 1.0 | +| test.c:507:23:507:23 | (unsigned int)... | 1.0 | +| test.c:507:23:507:28 | ... * ... | 125035.0 | +| test.c:507:27:507:28 | ip | 125035.0 | +| test.c:507:33:507:34 | 17 | 1.0 | +| test.c:507:33:507:34 | (unsigned int)... | 1.0 | +| test.c:507:33:507:39 | ... * ... | 125035.0 | +| test.c:507:38:507:39 | ip | 125035.0 | +| test.c:508:19:508:20 | 14 | 1.0 | +| test.c:508:19:508:20 | (unsigned int)... | 1.0 | +| test.c:508:19:508:31 | ... * ... | 125035.0 | +| test.c:508:24:508:31 | (...) | 125035.0 | +| test.c:508:25:508:25 | 2 | 1.0 | +| test.c:508:25:508:25 | (unsigned int)... | 1.0 | +| test.c:508:25:508:30 | ... * ... | 125035.0 | +| test.c:508:29:508:30 | ip | 125035.0 | +| test.c:509:19:509:20 | 14 | 1.0 | +| test.c:509:19:509:20 | (unsigned int)... | 1.0 | +| test.c:509:19:509:25 | ... * ... | 125035.0 | +| test.c:509:24:509:25 | ip | 125035.0 | +| test.c:510:13:510:13 | 2 | 1.0 | +| test.c:510:13:510:13 | (unsigned int)... | 1.0 | +| test.c:510:13:510:18 | ... * ... | 62517.0 | +| test.c:510:13:510:23 | ... * ... | 62517.0 | +| test.c:510:13:510:43 | ... + ... | 3.908375289E9 | +| test.c:510:17:510:18 | ip | 62517.0 | +| test.c:510:22:510:23 | 14 | 1.0 | +| test.c:510:22:510:23 | (unsigned int)... | 1.0 | +| test.c:510:27:510:38 | (...) | 62517.0 | +| test.c:510:27:510:43 | ... * ... | 62517.0 | +| test.c:510:28:510:28 | 2 | 1.0 | +| test.c:510:28:510:28 | (unsigned int)... | 1.0 | +| test.c:510:28:510:33 | ... * ... | 62517.0 | +| test.c:510:28:510:37 | ... + ... | 62517.0 | +| test.c:510:32:510:33 | ip | 62517.0 | +| test.c:510:37:510:37 | 1 | 1.0 | +| test.c:510:37:510:37 | (unsigned int)... | 1.0 | +| test.c:510:42:510:43 | 17 | 1.0 | +| test.c:510:42:510:43 | (unsigned int)... | 1.0 | +| test.c:511:9:511:9 | 4 | 1.0 | +| test.c:511:9:511:9 | (unsigned int)... | 1.0 | +| test.c:511:9:511:26 | ... * ... | 10419.0 | +| test.c:511:9:512:30 | ... + ... | 1.08555561E8 | +| test.c:511:9:513:30 | ... + ... | 1.131040390059E12 | +| test.c:511:9:519:26 | ... + ... | 1.0235492350954187E25 | +| test.c:511:9:520:61 | ... > ... | 1.0 | +| test.c:511:9:532:25 | ... ? ... : ... | 4.778814771623795E41 | +| test.c:511:13:511:26 | (...) | 10419.0 | +| test.c:511:14:511:15 | ip | 10419.0 | +| test.c:511:14:511:20 | ... * ... | 10419.0 | +| test.c:511:14:511:25 | ... + ... | 10419.0 | +| test.c:511:19:511:20 | 14 | 1.0 | +| test.c:511:19:511:20 | (unsigned int)... | 1.0 | +| test.c:511:24:511:25 | 32 | 1.0 | +| test.c:511:24:511:25 | (unsigned int)... | 1.0 | +| test.c:512:13:512:30 | (...) | 10419.0 | +| test.c:512:14:512:14 | 2 | 1.0 | +| test.c:512:14:512:14 | (unsigned int)... | 1.0 | +| test.c:512:14:512:19 | ... * ... | 10419.0 | +| test.c:512:14:512:24 | ... * ... | 10419.0 | +| test.c:512:14:512:29 | ... + ... | 10419.0 | +| test.c:512:18:512:19 | ip | 10419.0 | +| test.c:512:23:512:24 | 14 | 1.0 | +| test.c:512:23:512:24 | (unsigned int)... | 1.0 | +| test.c:512:28:512:29 | 32 | 1.0 | +| test.c:512:28:512:29 | (unsigned int)... | 1.0 | +| test.c:513:13:513:13 | 2 | 1.0 | +| test.c:513:13:513:13 | (unsigned int)... | 1.0 | +| test.c:513:13:513:30 | ... * ... | 10419.0 | +| test.c:513:17:513:30 | (...) | 10419.0 | +| test.c:513:18:513:19 | ip | 10419.0 | +| test.c:513:18:513:24 | ... * ... | 10419.0 | +| test.c:513:18:513:29 | ... + ... | 10419.0 | +| test.c:513:23:513:24 | 14 | 1.0 | +| test.c:513:23:513:24 | (unsigned int)... | 1.0 | +| test.c:513:28:513:29 | 64 | 1.0 | +| test.c:513:28:513:29 | (unsigned int)... | 1.0 | +| test.c:514:13:519:26 | (...) | 9.049625849719E12 | +| test.c:514:14:514:25 | (...) | 10419.0 | +| test.c:514:14:514:30 | ... * ... | 10419.0 | +| test.c:514:14:515:63 | ... > ... | 1.0 | +| test.c:514:14:519:25 | ... ? ... : ... | 9.049625849719E12 | +| test.c:514:15:514:15 | 2 | 1.0 | +| test.c:514:15:514:15 | (unsigned int)... | 1.0 | +| test.c:514:15:514:20 | ... * ... | 10419.0 | +| test.c:514:15:514:24 | ... + ... | 10419.0 | +| test.c:514:19:514:20 | ip | 10419.0 | +| test.c:514:24:514:24 | 1 | 1.0 | +| test.c:514:24:514:24 | (unsigned int)... | 1.0 | +| test.c:514:29:514:30 | 14 | 1.0 | +| test.c:514:29:514:30 | (unsigned int)... | 1.0 | +| test.c:515:13:515:63 | (...) | 1.08555561E8 | +| test.c:515:14:515:15 | 14 | 1.0 | +| test.c:515:14:515:15 | (unsigned int)... | 1.0 | +| test.c:515:14:515:26 | ... * ... | 10419.0 | +| test.c:515:14:515:36 | ... > ... | 1.0 | +| test.c:515:14:515:62 | ... ? ... : ... | 1.08555561E8 | +| test.c:515:19:515:26 | (...) | 10419.0 | +| test.c:515:20:515:20 | 2 | 1.0 | +| test.c:515:20:515:20 | (unsigned int)... | 1.0 | +| test.c:515:20:515:25 | ... * ... | 10419.0 | +| test.c:515:24:515:25 | ip | 10419.0 | +| test.c:515:30:515:31 | 17 | 1.0 | +| test.c:515:30:515:31 | (unsigned int)... | 1.0 | +| test.c:515:30:515:36 | ... * ... | 10419.0 | +| test.c:515:35:515:36 | ip | 10419.0 | +| test.c:515:40:515:41 | 17 | 1.0 | +| test.c:515:40:515:41 | (unsigned int)... | 1.0 | +| test.c:515:40:515:52 | ... * ... | 10419.0 | +| test.c:515:45:515:52 | (...) | 10419.0 | +| test.c:515:46:515:46 | 2 | 1.0 | +| test.c:515:46:515:46 | (unsigned int)... | 1.0 | +| test.c:515:46:515:51 | ... * ... | 10419.0 | +| test.c:515:50:515:51 | ip | 10419.0 | +| test.c:515:56:515:57 | 17 | 1.0 | +| test.c:515:56:515:57 | (unsigned int)... | 1.0 | +| test.c:515:56:515:62 | ... * ... | 10419.0 | +| test.c:515:61:515:62 | ip | 10419.0 | +| test.c:516:17:516:28 | (...) | 20839.0 | +| test.c:516:17:516:33 | ... * ... | 20839.0 | +| test.c:516:18:516:18 | 2 | 1.0 | +| test.c:516:18:516:18 | (unsigned int)... | 1.0 | +| test.c:516:18:516:23 | ... * ... | 20839.0 | +| test.c:516:18:516:27 | ... + ... | 20839.0 | +| test.c:516:22:516:23 | ip | 20839.0 | +| test.c:516:27:516:27 | 1 | 1.0 | +| test.c:516:27:516:27 | (unsigned int)... | 1.0 | +| test.c:516:32:516:33 | 14 | 1.0 | +| test.c:516:32:516:33 | (unsigned int)... | 1.0 | +| test.c:517:17:517:18 | 14 | 1.0 | +| test.c:517:17:517:18 | (unsigned int)... | 1.0 | +| test.c:517:17:517:29 | ... * ... | 20839.0 | +| test.c:517:17:517:39 | ... > ... | 1.0 | +| test.c:517:17:519:25 | ... ? ... : ... | 4.34263921E8 | +| test.c:517:22:517:29 | (...) | 20839.0 | +| test.c:517:23:517:23 | 2 | 1.0 | +| test.c:517:23:517:23 | (unsigned int)... | 1.0 | +| test.c:517:23:517:28 | ... * ... | 20839.0 | +| test.c:517:27:517:28 | ip | 20839.0 | +| test.c:517:33:517:34 | 17 | 1.0 | +| test.c:517:33:517:34 | (unsigned int)... | 1.0 | +| test.c:517:33:517:39 | ... * ... | 20839.0 | +| test.c:517:38:517:39 | ip | 20839.0 | +| test.c:518:19:518:20 | 14 | 1.0 | +| test.c:518:19:518:20 | (unsigned int)... | 1.0 | +| test.c:518:19:518:31 | ... * ... | 20839.0 | +| test.c:518:24:518:31 | (...) | 20839.0 | +| test.c:518:25:518:25 | 2 | 1.0 | +| test.c:518:25:518:25 | (unsigned int)... | 1.0 | +| test.c:518:25:518:30 | ... * ... | 20839.0 | +| test.c:518:29:518:30 | ip | 20839.0 | +| test.c:519:19:519:20 | 14 | 1.0 | +| test.c:519:19:519:20 | (unsigned int)... | 1.0 | +| test.c:519:19:519:25 | ... * ... | 20839.0 | +| test.c:519:24:519:25 | ip | 20839.0 | +| test.c:520:11:520:61 | (...) | 3.908375289E9 | +| test.c:520:12:520:13 | 14 | 1.0 | +| test.c:520:12:520:13 | (unsigned int)... | 1.0 | +| test.c:520:12:520:18 | ... * ... | 62517.0 | +| test.c:520:12:520:34 | ... > ... | 1.0 | +| test.c:520:12:520:60 | ... ? ... : ... | 3.908375289E9 | +| test.c:520:17:520:18 | ip | 62517.0 | +| test.c:520:22:520:29 | (...) | 62517.0 | +| test.c:520:22:520:34 | ... * ... | 62517.0 | +| test.c:520:23:520:24 | ip | 62517.0 | +| test.c:520:23:520:28 | ... + ... | 62517.0 | +| test.c:520:28:520:28 | 1 | 1.0 | +| test.c:520:28:520:28 | (unsigned int)... | 1.0 | +| test.c:520:33:520:34 | 17 | 1.0 | +| test.c:520:33:520:34 | (unsigned int)... | 1.0 | +| test.c:520:38:520:39 | 17 | 1.0 | +| test.c:520:38:520:39 | (unsigned int)... | 1.0 | +| test.c:520:38:520:44 | ... * ... | 62517.0 | +| test.c:520:43:520:44 | ip | 62517.0 | +| test.c:520:48:520:55 | (...) | 62517.0 | +| test.c:520:48:520:60 | ... * ... | 62517.0 | +| test.c:520:49:520:50 | ip | 62517.0 | +| test.c:520:49:520:54 | ... + ... | 62517.0 | +| test.c:520:54:520:54 | 1 | 1.0 | +| test.c:520:54:520:54 | (unsigned int)... | 1.0 | +| test.c:520:59:520:60 | 17 | 1.0 | +| test.c:520:59:520:60 | (unsigned int)... | 1.0 | +| test.c:521:11:521:11 | 4 | 1.0 | +| test.c:521:11:521:11 | (unsigned int)... | 1.0 | +| test.c:521:11:521:28 | ... * ... | 125034.0 | +| test.c:521:11:522:28 | ... + ... | 1.5633501156E10 | +| test.c:521:11:523:28 | ... + ... | 1.954719183539304E15 | +| test.c:521:11:529:24 | ... + ... | 3.056778340269433E31 | +| test.c:521:15:521:28 | (...) | 125034.0 | +| test.c:521:16:521:17 | ip | 125034.0 | +| test.c:521:16:521:22 | ... * ... | 125034.0 | +| test.c:521:16:521:27 | ... + ... | 125034.0 | +| test.c:521:21:521:22 | 14 | 1.0 | +| test.c:521:21:521:22 | (unsigned int)... | 1.0 | +| test.c:521:26:521:27 | 32 | 1.0 | +| test.c:521:26:521:27 | (unsigned int)... | 1.0 | +| test.c:522:11:522:28 | (...) | 125034.0 | +| test.c:522:12:522:12 | 2 | 1.0 | +| test.c:522:12:522:12 | (unsigned int)... | 1.0 | +| test.c:522:12:522:17 | ... * ... | 125034.0 | +| test.c:522:12:522:22 | ... * ... | 125034.0 | +| test.c:522:12:522:27 | ... + ... | 125034.0 | +| test.c:522:16:522:17 | ip | 125034.0 | +| test.c:522:21:522:22 | 14 | 1.0 | +| test.c:522:21:522:22 | (unsigned int)... | 1.0 | +| test.c:522:26:522:27 | 32 | 1.0 | +| test.c:522:26:522:27 | (unsigned int)... | 1.0 | +| test.c:523:11:523:11 | 2 | 1.0 | +| test.c:523:11:523:11 | (unsigned int)... | 1.0 | +| test.c:523:11:523:28 | ... * ... | 125034.0 | +| test.c:523:15:523:28 | (...) | 125034.0 | +| test.c:523:16:523:17 | ip | 125034.0 | +| test.c:523:16:523:22 | ... * ... | 125034.0 | +| test.c:523:16:523:27 | ... + ... | 125034.0 | +| test.c:523:21:523:22 | 14 | 1.0 | +| test.c:523:21:523:22 | (unsigned int)... | 1.0 | +| test.c:523:26:523:27 | 64 | 1.0 | +| test.c:523:26:523:27 | (unsigned int)... | 1.0 | +| test.c:524:11:529:24 | (...) | 1.5637941071078508E16 | +| test.c:524:12:524:23 | (...) | 125034.0 | +| test.c:524:12:524:28 | ... * ... | 125034.0 | +| test.c:524:12:525:61 | ... > ... | 1.0 | +| test.c:524:12:529:23 | ... ? ... : ... | 1.5637941071078508E16 | +| test.c:524:13:524:13 | 2 | 1.0 | +| test.c:524:13:524:13 | (unsigned int)... | 1.0 | +| test.c:524:13:524:18 | ... * ... | 125034.0 | +| test.c:524:13:524:22 | ... + ... | 125034.0 | +| test.c:524:17:524:18 | ip | 125034.0 | +| test.c:524:22:524:22 | 1 | 1.0 | +| test.c:524:22:524:22 | (unsigned int)... | 1.0 | +| test.c:524:27:524:28 | 14 | 1.0 | +| test.c:524:27:524:28 | (unsigned int)... | 1.0 | +| test.c:525:11:525:61 | (...) | 1.5633501156E10 | +| test.c:525:12:525:13 | 14 | 1.0 | +| test.c:525:12:525:13 | (unsigned int)... | 1.0 | +| test.c:525:12:525:24 | ... * ... | 125034.0 | +| test.c:525:12:525:34 | ... > ... | 1.0 | +| test.c:525:12:525:60 | ... ? ... : ... | 1.5633501156E10 | +| test.c:525:17:525:24 | (...) | 125034.0 | +| test.c:525:18:525:18 | 2 | 1.0 | +| test.c:525:18:525:18 | (unsigned int)... | 1.0 | +| test.c:525:18:525:23 | ... * ... | 125034.0 | +| test.c:525:22:525:23 | ip | 125034.0 | +| test.c:525:28:525:29 | 17 | 1.0 | +| test.c:525:28:525:29 | (unsigned int)... | 1.0 | +| test.c:525:28:525:34 | ... * ... | 125034.0 | +| test.c:525:33:525:34 | ip | 125034.0 | +| test.c:525:38:525:39 | 17 | 1.0 | +| test.c:525:38:525:39 | (unsigned int)... | 1.0 | +| test.c:525:38:525:50 | ... * ... | 125034.0 | +| test.c:525:43:525:50 | (...) | 125034.0 | +| test.c:525:44:525:44 | 2 | 1.0 | +| test.c:525:44:525:44 | (unsigned int)... | 1.0 | +| test.c:525:44:525:49 | ... * ... | 125034.0 | +| test.c:525:48:525:49 | ip | 125034.0 | +| test.c:525:54:525:55 | 17 | 1.0 | +| test.c:525:54:525:55 | (unsigned int)... | 1.0 | +| test.c:525:54:525:60 | ... * ... | 125034.0 | +| test.c:525:59:525:60 | ip | 125034.0 | +| test.c:526:15:526:26 | (...) | 250069.0 | +| test.c:526:15:526:31 | ... * ... | 250069.0 | +| test.c:526:16:526:16 | 2 | 1.0 | +| test.c:526:16:526:16 | (unsigned int)... | 1.0 | +| test.c:526:16:526:21 | ... * ... | 250069.0 | +| test.c:526:16:526:25 | ... + ... | 250069.0 | +| test.c:526:20:526:21 | ip | 250069.0 | +| test.c:526:25:526:25 | 1 | 1.0 | +| test.c:526:25:526:25 | (unsigned int)... | 1.0 | +| test.c:526:30:526:31 | 14 | 1.0 | +| test.c:526:30:526:31 | (unsigned int)... | 1.0 | +| test.c:527:15:527:16 | 14 | 1.0 | +| test.c:527:15:527:16 | (unsigned int)... | 1.0 | +| test.c:527:15:527:27 | ... * ... | 250069.0 | +| test.c:527:15:527:37 | ... > ... | 1.0 | +| test.c:527:15:529:23 | ... ? ... : ... | 6.2534504761E10 | +| test.c:527:20:527:27 | (...) | 250069.0 | +| test.c:527:21:527:21 | 2 | 1.0 | +| test.c:527:21:527:21 | (unsigned int)... | 1.0 | +| test.c:527:21:527:26 | ... * ... | 250069.0 | +| test.c:527:25:527:26 | ip | 250069.0 | +| test.c:527:31:527:32 | 17 | 1.0 | +| test.c:527:31:527:32 | (unsigned int)... | 1.0 | +| test.c:527:31:527:37 | ... * ... | 250069.0 | +| test.c:527:36:527:37 | ip | 250069.0 | +| test.c:528:17:528:18 | 14 | 1.0 | +| test.c:528:17:528:18 | (unsigned int)... | 1.0 | +| test.c:528:17:528:29 | ... * ... | 250069.0 | +| test.c:528:22:528:29 | (...) | 250069.0 | +| test.c:528:23:528:23 | 2 | 1.0 | +| test.c:528:23:528:23 | (unsigned int)... | 1.0 | +| test.c:528:23:528:28 | ... * ... | 250069.0 | +| test.c:528:27:528:28 | ip | 250069.0 | +| test.c:529:17:529:18 | 14 | 1.0 | +| test.c:529:17:529:18 | (unsigned int)... | 1.0 | +| test.c:529:17:529:23 | ... * ... | 250069.0 | +| test.c:529:22:529:23 | ip | 250069.0 | +| test.c:530:11:530:12 | 14 | 1.0 | +| test.c:530:11:530:12 | (unsigned int)... | 1.0 | +| test.c:530:11:530:17 | ... * ... | 125034.0 | +| test.c:530:11:530:33 | ... > ... | 1.0 | +| test.c:530:11:532:25 | ... ? ... : ... | 1.5633501156E10 | +| test.c:530:16:530:17 | ip | 125034.0 | +| test.c:530:21:530:28 | (...) | 125034.0 | +| test.c:530:21:530:33 | ... * ... | 125034.0 | +| test.c:530:22:530:23 | ip | 125034.0 | +| test.c:530:22:530:27 | ... + ... | 125034.0 | +| test.c:530:27:530:27 | 1 | 1.0 | +| test.c:530:27:530:27 | (unsigned int)... | 1.0 | +| test.c:530:32:530:33 | 17 | 1.0 | +| test.c:530:32:530:33 | (unsigned int)... | 1.0 | +| test.c:531:13:531:14 | 14 | 1.0 | +| test.c:531:13:531:14 | (unsigned int)... | 1.0 | +| test.c:531:13:531:19 | ... * ... | 125034.0 | +| test.c:531:18:531:19 | ip | 125034.0 | +| test.c:532:13:532:20 | (...) | 125034.0 | +| test.c:532:13:532:25 | ... * ... | 125034.0 | +| test.c:532:14:532:15 | ip | 125034.0 | +| test.c:532:14:532:19 | ... + ... | 125034.0 | +| test.c:532:19:532:19 | 1 | 1.0 | +| test.c:532:19:532:19 | (unsigned int)... | 1.0 | +| test.c:532:24:532:25 | 14 | 1.0 | +| test.c:532:24:532:25 | (unsigned int)... | 1.0 | +| test.c:533:9:533:10 | 14 | 1.0 | +| test.c:533:9:533:10 | (unsigned int)... | 1.0 | +| test.c:533:9:533:15 | ... * ... | 1437897.0 | +| test.c:533:9:533:59 | ... > ... | 1.0 | +| test.c:533:9:535:51 | ... ? ... : ... | 2.9729207539701335E18 | +| test.c:533:14:533:15 | ip | 1437897.0 | +| test.c:533:19:533:30 | (...) | 1437897.0 | +| test.c:533:19:533:35 | ... * ... | 1437897.0 | +| test.c:533:19:533:59 | ... + ... | 2.067547782609E12 | +| test.c:533:20:533:20 | 2 | 1.0 | +| test.c:533:20:533:20 | (unsigned int)... | 1.0 | +| test.c:533:20:533:25 | ... * ... | 1437897.0 | +| test.c:533:20:533:29 | ... + ... | 1437897.0 | +| test.c:533:24:533:25 | ip | 1437897.0 | +| test.c:533:29:533:29 | 1 | 1.0 | +| test.c:533:29:533:29 | (unsigned int)... | 1.0 | +| test.c:533:34:533:35 | 17 | 1.0 | +| test.c:533:34:533:35 | (unsigned int)... | 1.0 | +| test.c:533:39:533:54 | (...) | 1437897.0 | +| test.c:533:39:533:59 | ... * ... | 1437897.0 | +| test.c:533:40:533:40 | 2 | 1.0 | +| test.c:533:40:533:40 | (unsigned int)... | 1.0 | +| test.c:533:40:533:45 | ... * ... | 1437897.0 | +| test.c:533:40:533:49 | ... + ... | 1437897.0 | +| test.c:533:40:533:53 | ... + ... | 1437897.0 | +| test.c:533:44:533:45 | ip | 1437897.0 | +| test.c:533:49:533:49 | 1 | 1.0 | +| test.c:533:49:533:49 | (unsigned int)... | 1.0 | +| test.c:533:53:533:53 | 1 | 1.0 | +| test.c:533:53:533:53 | (unsigned int)... | 1.0 | +| test.c:533:58:533:59 | 17 | 1.0 | +| test.c:533:58:533:59 | (unsigned int)... | 1.0 | +| test.c:534:11:534:12 | 14 | 1.0 | +| test.c:534:11:534:12 | (unsigned int)... | 1.0 | +| test.c:534:11:534:17 | ... * ... | 1437897.0 | +| test.c:534:16:534:17 | ip | 1437897.0 | +| test.c:535:11:535:22 | (...) | 1437897.0 | +| test.c:535:11:535:27 | ... * ... | 1437897.0 | +| test.c:535:11:535:51 | ... + ... | 2.067547782609E12 | +| test.c:535:12:535:12 | 2 | 1.0 | +| test.c:535:12:535:12 | (unsigned int)... | 1.0 | +| test.c:535:12:535:17 | ... * ... | 1437897.0 | +| test.c:535:12:535:21 | ... + ... | 1437897.0 | +| test.c:535:16:535:17 | ip | 1437897.0 | +| test.c:535:21:535:21 | 1 | 1.0 | +| test.c:535:21:535:21 | (unsigned int)... | 1.0 | +| test.c:535:26:535:27 | 14 | 1.0 | +| test.c:535:26:535:27 | (unsigned int)... | 1.0 | +| test.c:535:31:535:46 | (...) | 1437897.0 | +| test.c:535:31:535:51 | ... * ... | 1437897.0 | +| test.c:535:32:535:32 | 2 | 1.0 | +| test.c:535:32:535:32 | (unsigned int)... | 1.0 | +| test.c:535:32:535:37 | ... * ... | 1437897.0 | +| test.c:535:32:535:41 | ... + ... | 1437897.0 | +| test.c:535:32:535:45 | ... + ... | 1437897.0 | +| test.c:535:36:535:37 | ip | 1437897.0 | +| test.c:535:41:535:41 | 1 | 1.0 | +| test.c:535:41:535:41 | (unsigned int)... | 1.0 | +| test.c:535:45:535:45 | 1 | 1.0 | +| test.c:535:45:535:45 | (unsigned int)... | 1.0 | +| test.c:535:50:535:51 | 17 | 1.0 | +| test.c:535:50:535:51 | (unsigned int)... | 1.0 | +| test.c:536:9:536:9 | 2 | 1.0 | +| test.c:536:9:536:9 | (unsigned int)... | 1.0 | +| test.c:536:9:536:26 | ... * ... | 1437897.0 | +| test.c:536:9:556:48 | ... + ... | 3.5306223994138077E62 | +| test.c:536:9:578:30 | ... > ... | 1.0 | +| test.c:536:9:621:27 | ... ? ... : ... | 4.3658022750663434E182 | +| test.c:536:13:536:26 | (...) | 1437897.0 | +| test.c:536:14:536:15 | ip | 1437897.0 | +| test.c:536:14:536:20 | ... * ... | 1437897.0 | +| test.c:536:14:536:25 | ... + ... | 1437897.0 | +| test.c:536:19:536:20 | 14 | 1.0 | +| test.c:536:19:536:20 | (unsigned int)... | 1.0 | +| test.c:536:24:536:25 | 32 | 1.0 | +| test.c:536:24:536:25 | (unsigned int)... | 1.0 | +| test.c:537:13:556:48 | (...) | 2.4554070280512497E56 | +| test.c:537:14:537:14 | 4 | 1.0 | +| test.c:537:14:537:14 | (unsigned int)... | 1.0 | +| test.c:537:14:537:31 | ... * ... | 1437897.0 | +| test.c:537:14:538:32 | ... + ... | 2.067547782609E12 | +| test.c:537:14:539:32 | ... + ... | 2.9729207539701335E18 | +| test.c:537:14:545:28 | ... + ... | 7.070613623498497E37 | +| test.c:537:14:546:43 | ... > ... | 1.0 | +| test.c:537:14:556:47 | ... ? ... : ... | 2.4554070280512497E56 | +| test.c:537:18:537:31 | (...) | 1437897.0 | +| test.c:537:19:537:20 | ip | 1437897.0 | +| test.c:537:19:537:25 | ... * ... | 1437897.0 | +| test.c:537:19:537:30 | ... + ... | 1437897.0 | +| test.c:537:24:537:25 | 14 | 1.0 | +| test.c:537:24:537:25 | (unsigned int)... | 1.0 | +| test.c:537:29:537:30 | 32 | 1.0 | +| test.c:537:29:537:30 | (unsigned int)... | 1.0 | +| test.c:538:15:538:32 | (...) | 1437897.0 | +| test.c:538:16:538:16 | 2 | 1.0 | +| test.c:538:16:538:16 | (unsigned int)... | 1.0 | +| test.c:538:16:538:21 | ... * ... | 1437897.0 | +| test.c:538:16:538:26 | ... * ... | 1437897.0 | +| test.c:538:16:538:31 | ... + ... | 1437897.0 | +| test.c:538:20:538:21 | ip | 1437897.0 | +| test.c:538:25:538:26 | 14 | 1.0 | +| test.c:538:25:538:26 | (unsigned int)... | 1.0 | +| test.c:538:30:538:31 | 32 | 1.0 | +| test.c:538:30:538:31 | (unsigned int)... | 1.0 | +| test.c:539:15:539:15 | 2 | 1.0 | +| test.c:539:15:539:15 | (unsigned int)... | 1.0 | +| test.c:539:15:539:32 | ... * ... | 1437897.0 | +| test.c:539:19:539:32 | (...) | 1437897.0 | +| test.c:539:20:539:21 | ip | 1437897.0 | +| test.c:539:20:539:26 | ... * ... | 1437897.0 | +| test.c:539:20:539:31 | ... + ... | 1437897.0 | +| test.c:539:25:539:26 | 14 | 1.0 | +| test.c:539:25:539:26 | (unsigned int)... | 1.0 | +| test.c:539:30:539:31 | 64 | 1.0 | +| test.c:539:30:539:31 | (unsigned int)... | 1.0 | +| test.c:540:15:545:28 | (...) | 2.3783390842343084E19 | +| test.c:540:16:540:27 | (...) | 1437897.0 | +| test.c:540:16:540:32 | ... * ... | 1437897.0 | +| test.c:540:16:541:65 | ... > ... | 1.0 | +| test.c:540:16:545:27 | ... ? ... : ... | 2.3783390842343084E19 | +| test.c:540:17:540:17 | 2 | 1.0 | +| test.c:540:17:540:17 | (unsigned int)... | 1.0 | +| test.c:540:17:540:22 | ... * ... | 1437897.0 | +| test.c:540:17:540:26 | ... + ... | 1437897.0 | +| test.c:540:21:540:22 | ip | 1437897.0 | +| test.c:540:26:540:26 | 1 | 1.0 | +| test.c:540:26:540:26 | (unsigned int)... | 1.0 | +| test.c:540:31:540:32 | 14 | 1.0 | +| test.c:540:31:540:32 | (unsigned int)... | 1.0 | +| test.c:541:15:541:65 | (...) | 2.067547782609E12 | +| test.c:541:16:541:17 | 14 | 1.0 | +| test.c:541:16:541:17 | (unsigned int)... | 1.0 | +| test.c:541:16:541:28 | ... * ... | 1437897.0 | +| test.c:541:16:541:38 | ... > ... | 1.0 | +| test.c:541:16:541:64 | ... ? ... : ... | 2.067547782609E12 | +| test.c:541:21:541:28 | (...) | 1437897.0 | +| test.c:541:22:541:22 | 2 | 1.0 | +| test.c:541:22:541:22 | (unsigned int)... | 1.0 | +| test.c:541:22:541:27 | ... * ... | 1437897.0 | +| test.c:541:26:541:27 | ip | 1437897.0 | +| test.c:541:32:541:33 | 17 | 1.0 | +| test.c:541:32:541:33 | (unsigned int)... | 1.0 | +| test.c:541:32:541:38 | ... * ... | 1437897.0 | +| test.c:541:37:541:38 | ip | 1437897.0 | +| test.c:541:42:541:43 | 17 | 1.0 | +| test.c:541:42:541:43 | (unsigned int)... | 1.0 | +| test.c:541:42:541:54 | ... * ... | 1437897.0 | +| test.c:541:47:541:54 | (...) | 1437897.0 | +| test.c:541:48:541:48 | 2 | 1.0 | +| test.c:541:48:541:48 | (unsigned int)... | 1.0 | +| test.c:541:48:541:53 | ... * ... | 1437897.0 | +| test.c:541:52:541:53 | ip | 1437897.0 | +| test.c:541:58:541:59 | 17 | 1.0 | +| test.c:541:58:541:59 | (unsigned int)... | 1.0 | +| test.c:541:58:541:64 | ... * ... | 1437897.0 | +| test.c:541:63:541:64 | ip | 1437897.0 | +| test.c:542:19:542:30 | (...) | 2875795.0 | +| test.c:542:19:542:35 | ... * ... | 2875795.0 | +| test.c:542:20:542:20 | 2 | 1.0 | +| test.c:542:20:542:20 | (unsigned int)... | 1.0 | +| test.c:542:20:542:25 | ... * ... | 2875795.0 | +| test.c:542:20:542:29 | ... + ... | 2875795.0 | +| test.c:542:24:542:25 | ip | 2875795.0 | +| test.c:542:29:542:29 | 1 | 1.0 | +| test.c:542:29:542:29 | (unsigned int)... | 1.0 | +| test.c:542:34:542:35 | 14 | 1.0 | +| test.c:542:34:542:35 | (unsigned int)... | 1.0 | +| test.c:543:19:543:20 | 14 | 1.0 | +| test.c:543:19:543:20 | (unsigned int)... | 1.0 | +| test.c:543:19:543:31 | ... * ... | 2875795.0 | +| test.c:543:19:543:41 | ... > ... | 1.0 | +| test.c:543:19:545:27 | ... ? ... : ... | 8.270196882025E12 | +| test.c:543:24:543:31 | (...) | 2875795.0 | +| test.c:543:25:543:25 | 2 | 1.0 | +| test.c:543:25:543:25 | (unsigned int)... | 1.0 | +| test.c:543:25:543:30 | ... * ... | 2875795.0 | +| test.c:543:29:543:30 | ip | 2875795.0 | +| test.c:543:35:543:36 | 17 | 1.0 | +| test.c:543:35:543:36 | (unsigned int)... | 1.0 | +| test.c:543:35:543:41 | ... * ... | 2875795.0 | +| test.c:543:40:543:41 | ip | 2875795.0 | +| test.c:544:21:544:22 | 14 | 1.0 | +| test.c:544:21:544:22 | (unsigned int)... | 1.0 | +| test.c:544:21:544:33 | ... * ... | 2875795.0 | +| test.c:544:26:544:33 | (...) | 2875795.0 | +| test.c:544:27:544:27 | 2 | 1.0 | +| test.c:544:27:544:27 | (unsigned int)... | 1.0 | +| test.c:544:27:544:32 | ... * ... | 2875795.0 | +| test.c:544:31:544:32 | ip | 2875795.0 | +| test.c:545:21:545:22 | 14 | 1.0 | +| test.c:545:21:545:22 | (unsigned int)... | 1.0 | +| test.c:545:21:545:27 | ... * ... | 2875795.0 | +| test.c:545:26:545:27 | ip | 2875795.0 | +| test.c:546:13:546:13 | 2 | 1.0 | +| test.c:546:13:546:13 | (unsigned int)... | 1.0 | +| test.c:546:13:546:18 | ... * ... | 8627385.0 | +| test.c:546:13:546:23 | ... * ... | 8627385.0 | +| test.c:546:13:546:43 | ... + ... | 7.4431771938225E13 | +| test.c:546:17:546:18 | ip | 8627385.0 | +| test.c:546:22:546:23 | 14 | 1.0 | +| test.c:546:22:546:23 | (unsigned int)... | 1.0 | +| test.c:546:27:546:38 | (...) | 8627385.0 | +| test.c:546:27:546:43 | ... * ... | 8627385.0 | +| test.c:546:28:546:28 | 2 | 1.0 | +| test.c:546:28:546:28 | (unsigned int)... | 1.0 | +| test.c:546:28:546:33 | ... * ... | 8627385.0 | +| test.c:546:28:546:37 | ... + ... | 8627385.0 | +| test.c:546:32:546:33 | ip | 8627385.0 | +| test.c:546:37:546:37 | 1 | 1.0 | +| test.c:546:37:546:37 | (unsigned int)... | 1.0 | +| test.c:546:42:546:43 | 17 | 1.0 | +| test.c:546:42:546:43 | (unsigned int)... | 1.0 | +| test.c:547:17:547:17 | 4 | 1.0 | +| test.c:547:17:547:17 | (unsigned int)... | 1.0 | +| test.c:547:17:547:34 | ... * ... | 8627385.0 | +| test.c:547:17:548:34 | ... + ... | 7.4431771938225E13 | +| test.c:547:17:549:34 | ... + ... | 6.421515527432633E20 | +| test.c:547:17:555:30 | ... + ... | 3.298869507082441E42 | +| test.c:547:21:547:34 | (...) | 8627385.0 | +| test.c:547:22:547:23 | ip | 8627385.0 | +| test.c:547:22:547:28 | ... * ... | 8627385.0 | +| test.c:547:22:547:33 | ... + ... | 8627385.0 | +| test.c:547:27:547:28 | 14 | 1.0 | +| test.c:547:27:547:28 | (unsigned int)... | 1.0 | +| test.c:547:32:547:33 | 32 | 1.0 | +| test.c:547:32:547:33 | (unsigned int)... | 1.0 | +| test.c:548:17:548:34 | (...) | 8627385.0 | +| test.c:548:18:548:18 | 2 | 1.0 | +| test.c:548:18:548:18 | (unsigned int)... | 1.0 | +| test.c:548:18:548:23 | ... * ... | 8627385.0 | +| test.c:548:18:548:28 | ... * ... | 8627385.0 | +| test.c:548:18:548:33 | ... + ... | 8627385.0 | +| test.c:548:22:548:23 | ip | 8627385.0 | +| test.c:548:27:548:28 | 14 | 1.0 | +| test.c:548:27:548:28 | (unsigned int)... | 1.0 | +| test.c:548:32:548:33 | 32 | 1.0 | +| test.c:548:32:548:33 | (unsigned int)... | 1.0 | +| test.c:549:17:549:17 | 2 | 1.0 | +| test.c:549:17:549:17 | (unsigned int)... | 1.0 | +| test.c:549:17:549:34 | ... * ... | 8627385.0 | +| test.c:549:21:549:34 | (...) | 8627385.0 | +| test.c:549:22:549:23 | ip | 8627385.0 | +| test.c:549:22:549:28 | ... * ... | 8627385.0 | +| test.c:549:22:549:33 | ... + ... | 8627385.0 | +| test.c:549:27:549:28 | 14 | 1.0 | +| test.c:549:27:549:28 | (unsigned int)... | 1.0 | +| test.c:549:32:549:33 | 64 | 1.0 | +| test.c:549:32:549:33 | (unsigned int)... | 1.0 | +| test.c:550:17:555:30 | (...) | 5.137213315127421E21 | +| test.c:550:18:550:29 | (...) | 8627385.0 | +| test.c:550:18:550:34 | ... * ... | 8627385.0 | +| test.c:550:18:551:67 | ... > ... | 1.0 | +| test.c:550:18:555:29 | ... ? ... : ... | 5.137213315127421E21 | +| test.c:550:19:550:19 | 2 | 1.0 | +| test.c:550:19:550:19 | (unsigned int)... | 1.0 | +| test.c:550:19:550:24 | ... * ... | 8627385.0 | +| test.c:550:19:550:28 | ... + ... | 8627385.0 | +| test.c:550:23:550:24 | ip | 8627385.0 | +| test.c:550:28:550:28 | 1 | 1.0 | +| test.c:550:28:550:28 | (unsigned int)... | 1.0 | +| test.c:550:33:550:34 | 14 | 1.0 | +| test.c:550:33:550:34 | (unsigned int)... | 1.0 | +| test.c:551:17:551:67 | (...) | 7.4431771938225E13 | +| test.c:551:18:551:19 | 14 | 1.0 | +| test.c:551:18:551:19 | (unsigned int)... | 1.0 | +| test.c:551:18:551:30 | ... * ... | 8627385.0 | +| test.c:551:18:551:40 | ... > ... | 1.0 | +| test.c:551:18:551:66 | ... ? ... : ... | 7.4431771938225E13 | +| test.c:551:23:551:30 | (...) | 8627385.0 | +| test.c:551:24:551:24 | 2 | 1.0 | +| test.c:551:24:551:24 | (unsigned int)... | 1.0 | +| test.c:551:24:551:29 | ... * ... | 8627385.0 | +| test.c:551:28:551:29 | ip | 8627385.0 | +| test.c:551:34:551:35 | 17 | 1.0 | +| test.c:551:34:551:35 | (unsigned int)... | 1.0 | +| test.c:551:34:551:40 | ... * ... | 8627385.0 | +| test.c:551:39:551:40 | ip | 8627385.0 | +| test.c:551:44:551:45 | 17 | 1.0 | +| test.c:551:44:551:45 | (unsigned int)... | 1.0 | +| test.c:551:44:551:56 | ... * ... | 8627385.0 | +| test.c:551:49:551:56 | (...) | 8627385.0 | +| test.c:551:50:551:50 | 2 | 1.0 | +| test.c:551:50:551:50 | (unsigned int)... | 1.0 | +| test.c:551:50:551:55 | ... * ... | 8627385.0 | +| test.c:551:54:551:55 | ip | 8627385.0 | +| test.c:551:60:551:61 | 17 | 1.0 | +| test.c:551:60:551:61 | (unsigned int)... | 1.0 | +| test.c:551:60:551:66 | ... * ... | 8627385.0 | +| test.c:551:65:551:66 | ip | 8627385.0 | +| test.c:552:21:552:32 | (...) | 1.7254771E7 | +| test.c:552:21:552:37 | ... * ... | 1.7254771E7 | +| test.c:552:22:552:22 | 2 | 1.0 | +| test.c:552:22:552:22 | (unsigned int)... | 1.0 | +| test.c:552:22:552:27 | ... * ... | 1.7254771E7 | +| test.c:552:22:552:31 | ... + ... | 1.7254771E7 | +| test.c:552:26:552:27 | ip | 1.7254771E7 | +| test.c:552:31:552:31 | 1 | 1.0 | +| test.c:552:31:552:31 | (unsigned int)... | 1.0 | +| test.c:552:36:552:37 | 14 | 1.0 | +| test.c:552:36:552:37 | (unsigned int)... | 1.0 | +| test.c:553:21:553:22 | 14 | 1.0 | +| test.c:553:21:553:22 | (unsigned int)... | 1.0 | +| test.c:553:21:553:33 | ... * ... | 1.7254771E7 | +| test.c:553:21:553:43 | ... > ... | 1.0 | +| test.c:553:21:555:29 | ... ? ... : ... | 2.97727122262441E14 | +| test.c:553:26:553:33 | (...) | 1.7254771E7 | +| test.c:553:27:553:27 | 2 | 1.0 | +| test.c:553:27:553:27 | (unsigned int)... | 1.0 | +| test.c:553:27:553:32 | ... * ... | 1.7254771E7 | +| test.c:553:31:553:32 | ip | 1.7254771E7 | +| test.c:553:37:553:38 | 17 | 1.0 | +| test.c:553:37:553:38 | (unsigned int)... | 1.0 | +| test.c:553:37:553:43 | ... * ... | 1.7254771E7 | +| test.c:553:42:553:43 | ip | 1.7254771E7 | +| test.c:554:23:554:24 | 14 | 1.0 | +| test.c:554:23:554:24 | (unsigned int)... | 1.0 | +| test.c:554:23:554:35 | ... * ... | 1.7254771E7 | +| test.c:554:28:554:35 | (...) | 1.7254771E7 | +| test.c:554:29:554:29 | 2 | 1.0 | +| test.c:554:29:554:29 | (unsigned int)... | 1.0 | +| test.c:554:29:554:34 | ... * ... | 1.7254771E7 | +| test.c:554:33:554:34 | ip | 1.7254771E7 | +| test.c:555:23:555:24 | 14 | 1.0 | +| test.c:555:23:555:24 | (unsigned int)... | 1.0 | +| test.c:555:23:555:29 | ... * ... | 1.7254771E7 | +| test.c:555:28:555:29 | ip | 1.7254771E7 | +| test.c:556:17:556:17 | 2 | 1.0 | +| test.c:556:17:556:17 | (unsigned int)... | 1.0 | +| test.c:556:17:556:22 | ... * ... | 8627385.0 | +| test.c:556:17:556:27 | ... * ... | 8627385.0 | +| test.c:556:17:556:47 | ... + ... | 7.4431771938225E13 | +| test.c:556:21:556:22 | ip | 8627385.0 | +| test.c:556:26:556:27 | 14 | 1.0 | +| test.c:556:26:556:27 | (unsigned int)... | 1.0 | +| test.c:556:31:556:42 | (...) | 8627385.0 | +| test.c:556:31:556:47 | ... * ... | 8627385.0 | +| test.c:556:32:556:32 | 2 | 1.0 | +| test.c:556:32:556:32 | (unsigned int)... | 1.0 | +| test.c:556:32:556:37 | ... * ... | 8627385.0 | +| test.c:556:32:556:41 | ... + ... | 8627385.0 | +| test.c:556:36:556:37 | ip | 8627385.0 | +| test.c:556:41:556:41 | 1 | 1.0 | +| test.c:556:41:556:41 | (unsigned int)... | 1.0 | +| test.c:556:46:556:47 | 17 | 1.0 | +| test.c:556:46:556:47 | (unsigned int)... | 1.0 | +| test.c:557:11:578:30 | (...) | 6.08636382738973E71 | +| test.c:557:12:557:12 | 4 | 1.0 | +| test.c:557:12:557:12 | (unsigned int)... | 1.0 | +| test.c:557:12:557:29 | ... * ... | 6.0391698E7 | +| test.c:557:12:558:30 | ... + ... | 3.647157187323204E15 | +| test.c:557:12:559:30 | ... + ... | 2.2025801541535236E23 | +| test.c:557:12:565:26 | ... + ... | 3.881087564774641E47 | +| test.c:557:12:566:61 | ... > ... | 1.0 | +| test.c:557:12:578:29 | ... ? ... : ... | 6.08636382738973E71 | +| test.c:557:16:557:29 | (...) | 6.0391698E7 | +| test.c:557:17:557:18 | ip | 6.0391698E7 | +| test.c:557:17:557:23 | ... * ... | 6.0391698E7 | +| test.c:557:17:557:28 | ... + ... | 6.0391698E7 | +| test.c:557:22:557:23 | 14 | 1.0 | +| test.c:557:22:557:23 | (unsigned int)... | 1.0 | +| test.c:557:27:557:28 | 32 | 1.0 | +| test.c:557:27:557:28 | (unsigned int)... | 1.0 | +| test.c:558:13:558:30 | (...) | 6.0391698E7 | +| test.c:558:14:558:14 | 2 | 1.0 | +| test.c:558:14:558:14 | (unsigned int)... | 1.0 | +| test.c:558:14:558:19 | ... * ... | 6.0391698E7 | +| test.c:558:14:558:24 | ... * ... | 6.0391698E7 | +| test.c:558:14:558:29 | ... + ... | 6.0391698E7 | +| test.c:558:18:558:19 | ip | 6.0391698E7 | +| test.c:558:23:558:24 | 14 | 1.0 | +| test.c:558:23:558:24 | (unsigned int)... | 1.0 | +| test.c:558:28:558:29 | 32 | 1.0 | +| test.c:558:28:558:29 | (unsigned int)... | 1.0 | +| test.c:559:13:559:13 | 2 | 1.0 | +| test.c:559:13:559:13 | (unsigned int)... | 1.0 | +| test.c:559:13:559:30 | ... * ... | 6.0391698E7 | +| test.c:559:17:559:30 | (...) | 6.0391698E7 | +| test.c:559:18:559:19 | ip | 6.0391698E7 | +| test.c:559:18:559:24 | ... * ... | 6.0391698E7 | +| test.c:559:18:559:29 | ... + ... | 6.0391698E7 | +| test.c:559:23:559:24 | 14 | 1.0 | +| test.c:559:23:559:24 | (unsigned int)... | 1.0 | +| test.c:559:28:559:29 | 64 | 1.0 | +| test.c:559:28:559:29 | (unsigned int)... | 1.0 | +| test.c:560:13:565:26 | (...) | 1.7620641670887053E24 | +| test.c:560:14:560:25 | (...) | 6.0391698E7 | +| test.c:560:14:560:30 | ... * ... | 6.0391698E7 | +| test.c:560:14:561:63 | ... > ... | 1.0 | +| test.c:560:14:565:25 | ... ? ... : ... | 1.7620641670887053E24 | +| test.c:560:15:560:15 | 2 | 1.0 | +| test.c:560:15:560:15 | (unsigned int)... | 1.0 | +| test.c:560:15:560:20 | ... * ... | 6.0391698E7 | +| test.c:560:15:560:24 | ... + ... | 6.0391698E7 | +| test.c:560:19:560:20 | ip | 6.0391698E7 | +| test.c:560:24:560:24 | 1 | 1.0 | +| test.c:560:24:560:24 | (unsigned int)... | 1.0 | +| test.c:560:29:560:30 | 14 | 1.0 | +| test.c:560:29:560:30 | (unsigned int)... | 1.0 | +| test.c:561:13:561:63 | (...) | 3.647157187323204E15 | +| test.c:561:14:561:15 | 14 | 1.0 | +| test.c:561:14:561:15 | (unsigned int)... | 1.0 | +| test.c:561:14:561:26 | ... * ... | 6.0391698E7 | +| test.c:561:14:561:36 | ... > ... | 1.0 | +| test.c:561:14:561:62 | ... ? ... : ... | 3.647157187323204E15 | +| test.c:561:19:561:26 | (...) | 6.0391698E7 | +| test.c:561:20:561:20 | 2 | 1.0 | +| test.c:561:20:561:20 | (unsigned int)... | 1.0 | +| test.c:561:20:561:25 | ... * ... | 6.0391698E7 | +| test.c:561:24:561:25 | ip | 6.0391698E7 | +| test.c:561:30:561:31 | 17 | 1.0 | +| test.c:561:30:561:31 | (unsigned int)... | 1.0 | +| test.c:561:30:561:36 | ... * ... | 6.0391698E7 | +| test.c:561:35:561:36 | ip | 6.0391698E7 | +| test.c:561:40:561:41 | 17 | 1.0 | +| test.c:561:40:561:41 | (unsigned int)... | 1.0 | +| test.c:561:40:561:52 | ... * ... | 6.0391698E7 | +| test.c:561:45:561:52 | (...) | 6.0391698E7 | +| test.c:561:46:561:46 | 2 | 1.0 | +| test.c:561:46:561:46 | (unsigned int)... | 1.0 | +| test.c:561:46:561:51 | ... * ... | 6.0391698E7 | +| test.c:561:50:561:51 | ip | 6.0391698E7 | +| test.c:561:56:561:57 | 17 | 1.0 | +| test.c:561:56:561:57 | (unsigned int)... | 1.0 | +| test.c:561:56:561:62 | ... * ... | 6.0391698E7 | +| test.c:561:61:561:62 | ip | 6.0391698E7 | +| test.c:562:17:562:28 | (...) | 1.20783397E8 | +| test.c:562:17:562:33 | ... * ... | 1.20783397E8 | +| test.c:562:18:562:18 | 2 | 1.0 | +| test.c:562:18:562:18 | (unsigned int)... | 1.0 | +| test.c:562:18:562:23 | ... * ... | 1.20783397E8 | +| test.c:562:18:562:27 | ... + ... | 1.20783397E8 | +| test.c:562:22:562:23 | ip | 1.20783397E8 | +| test.c:562:27:562:27 | 1 | 1.0 | +| test.c:562:27:562:27 | (unsigned int)... | 1.0 | +| test.c:562:32:562:33 | 14 | 1.0 | +| test.c:562:32:562:33 | (unsigned int)... | 1.0 | +| test.c:563:17:563:18 | 14 | 1.0 | +| test.c:563:17:563:18 | (unsigned int)... | 1.0 | +| test.c:563:17:563:29 | ... * ... | 1.20783397E8 | +| test.c:563:17:563:39 | ... > ... | 1.0 | +| test.c:563:17:565:25 | ... ? ... : ... | 1.4588628990859608E16 | +| test.c:563:22:563:29 | (...) | 1.20783397E8 | +| test.c:563:23:563:23 | 2 | 1.0 | +| test.c:563:23:563:23 | (unsigned int)... | 1.0 | +| test.c:563:23:563:28 | ... * ... | 1.20783397E8 | +| test.c:563:27:563:28 | ip | 1.20783397E8 | +| test.c:563:33:563:34 | 17 | 1.0 | +| test.c:563:33:563:34 | (unsigned int)... | 1.0 | +| test.c:563:33:563:39 | ... * ... | 1.20783397E8 | +| test.c:563:38:563:39 | ip | 1.20783397E8 | +| test.c:564:19:564:20 | 14 | 1.0 | +| test.c:564:19:564:20 | (unsigned int)... | 1.0 | +| test.c:564:19:564:31 | ... * ... | 1.20783397E8 | +| test.c:564:24:564:31 | (...) | 1.20783397E8 | +| test.c:564:25:564:25 | 2 | 1.0 | +| test.c:564:25:564:25 | (unsigned int)... | 1.0 | +| test.c:564:25:564:30 | ... * ... | 1.20783397E8 | +| test.c:564:29:564:30 | ip | 1.20783397E8 | +| test.c:565:19:565:20 | 14 | 1.0 | +| test.c:565:19:565:20 | (unsigned int)... | 1.0 | +| test.c:565:19:565:25 | ... * ... | 1.20783397E8 | +| test.c:565:24:565:25 | ip | 1.20783397E8 | +| test.c:566:11:566:61 | (...) | 1.3129766091773648E17 | +| test.c:566:12:566:13 | 14 | 1.0 | +| test.c:566:12:566:13 | (unsigned int)... | 1.0 | +| test.c:566:12:566:18 | ... * ... | 3.62350191E8 | +| test.c:566:12:566:34 | ... > ... | 1.0 | +| test.c:566:12:566:60 | ... ? ... : ... | 1.3129766091773648E17 | +| test.c:566:17:566:18 | ip | 3.62350191E8 | +| test.c:566:22:566:29 | (...) | 3.62350191E8 | +| test.c:566:22:566:34 | ... * ... | 3.62350191E8 | +| test.c:566:23:566:24 | ip | 3.62350191E8 | +| test.c:566:23:566:28 | ... + ... | 3.62350191E8 | +| test.c:566:28:566:28 | 1 | 1.0 | +| test.c:566:28:566:28 | (unsigned int)... | 1.0 | +| test.c:566:33:566:34 | 17 | 1.0 | +| test.c:566:33:566:34 | (unsigned int)... | 1.0 | +| test.c:566:38:566:39 | 17 | 1.0 | +| test.c:566:38:566:39 | (unsigned int)... | 1.0 | +| test.c:566:38:566:44 | ... * ... | 3.62350191E8 | +| test.c:566:43:566:44 | ip | 3.62350191E8 | +| test.c:566:48:566:55 | (...) | 3.62350191E8 | +| test.c:566:48:566:60 | ... * ... | 3.62350191E8 | +| test.c:566:49:566:50 | ip | 3.62350191E8 | +| test.c:566:49:566:54 | ... + ... | 3.62350191E8 | +| test.c:566:54:566:54 | 1 | 1.0 | +| test.c:566:54:566:54 | (unsigned int)... | 1.0 | +| test.c:566:59:566:60 | 17 | 1.0 | +| test.c:566:59:566:60 | (unsigned int)... | 1.0 | +| test.c:567:15:567:15 | 4 | 1.0 | +| test.c:567:15:567:15 | (unsigned int)... | 1.0 | +| test.c:567:15:567:32 | ... * ... | 7.24700382E8 | +| test.c:567:15:568:32 | ... + ... | 5.251906436709459E17 | +| test.c:567:15:569:32 | ... + ... | 3.806058600911604E26 | +| test.c:567:15:575:28 | ... + ... | 1.1588865682845433E54 | +| test.c:567:19:567:32 | (...) | 7.24700382E8 | +| test.c:567:20:567:21 | ip | 7.24700382E8 | +| test.c:567:20:567:26 | ... * ... | 7.24700382E8 | +| test.c:567:20:567:31 | ... + ... | 7.24700382E8 | +| test.c:567:25:567:26 | 14 | 1.0 | +| test.c:567:25:567:26 | (unsigned int)... | 1.0 | +| test.c:567:30:567:31 | 32 | 1.0 | +| test.c:567:30:567:31 | (unsigned int)... | 1.0 | +| test.c:568:15:568:32 | (...) | 7.24700382E8 | +| test.c:568:16:568:16 | 2 | 1.0 | +| test.c:568:16:568:16 | (unsigned int)... | 1.0 | +| test.c:568:16:568:21 | ... * ... | 7.24700382E8 | +| test.c:568:16:568:26 | ... * ... | 7.24700382E8 | +| test.c:568:16:568:31 | ... + ... | 7.24700382E8 | +| test.c:568:20:568:21 | ip | 7.24700382E8 | +| test.c:568:25:568:26 | 14 | 1.0 | +| test.c:568:25:568:26 | (unsigned int)... | 1.0 | +| test.c:568:30:568:31 | 32 | 1.0 | +| test.c:568:30:568:31 | (unsigned int)... | 1.0 | +| test.c:569:15:569:15 | 2 | 1.0 | +| test.c:569:15:569:15 | (unsigned int)... | 1.0 | +| test.c:569:15:569:32 | ... * ... | 7.24700382E8 | +| test.c:569:19:569:32 | (...) | 7.24700382E8 | +| test.c:569:20:569:21 | ip | 7.24700382E8 | +| test.c:569:20:569:26 | ... * ... | 7.24700382E8 | +| test.c:569:20:569:31 | ... + ... | 7.24700382E8 | +| test.c:569:25:569:26 | 14 | 1.0 | +| test.c:569:25:569:26 | (unsigned int)... | 1.0 | +| test.c:569:30:569:31 | 64 | 1.0 | +| test.c:569:30:569:31 | (unsigned int)... | 1.0 | +| test.c:570:15:575:28 | (...) | 3.044846887031571E27 | +| test.c:570:16:570:27 | (...) | 7.24700382E8 | +| test.c:570:16:570:32 | ... * ... | 7.24700382E8 | +| test.c:570:16:571:65 | ... > ... | 1.0 | +| test.c:570:16:575:27 | ... ? ... : ... | 3.044846887031571E27 | +| test.c:570:17:570:17 | 2 | 1.0 | +| test.c:570:17:570:17 | (unsigned int)... | 1.0 | +| test.c:570:17:570:22 | ... * ... | 7.24700382E8 | +| test.c:570:17:570:26 | ... + ... | 7.24700382E8 | +| test.c:570:21:570:22 | ip | 7.24700382E8 | +| test.c:570:26:570:26 | 1 | 1.0 | +| test.c:570:26:570:26 | (unsigned int)... | 1.0 | +| test.c:570:31:570:32 | 14 | 1.0 | +| test.c:570:31:570:32 | (unsigned int)... | 1.0 | +| test.c:571:15:571:65 | (...) | 5.251906436709459E17 | +| test.c:571:16:571:17 | 14 | 1.0 | +| test.c:571:16:571:17 | (unsigned int)... | 1.0 | +| test.c:571:16:571:28 | ... * ... | 7.24700382E8 | +| test.c:571:16:571:38 | ... > ... | 1.0 | +| test.c:571:16:571:64 | ... ? ... : ... | 5.251906436709459E17 | +| test.c:571:21:571:28 | (...) | 7.24700382E8 | +| test.c:571:22:571:22 | 2 | 1.0 | +| test.c:571:22:571:22 | (unsigned int)... | 1.0 | +| test.c:571:22:571:27 | ... * ... | 7.24700382E8 | +| test.c:571:26:571:27 | ip | 7.24700382E8 | +| test.c:571:32:571:33 | 17 | 1.0 | +| test.c:571:32:571:33 | (unsigned int)... | 1.0 | +| test.c:571:32:571:38 | ... * ... | 7.24700382E8 | +| test.c:571:37:571:38 | ip | 7.24700382E8 | +| test.c:571:42:571:43 | 17 | 1.0 | +| test.c:571:42:571:43 | (unsigned int)... | 1.0 | +| test.c:571:42:571:54 | ... * ... | 7.24700382E8 | +| test.c:571:47:571:54 | (...) | 7.24700382E8 | +| test.c:571:48:571:48 | 2 | 1.0 | +| test.c:571:48:571:48 | (unsigned int)... | 1.0 | +| test.c:571:48:571:53 | ... * ... | 7.24700382E8 | +| test.c:571:52:571:53 | ip | 7.24700382E8 | +| test.c:571:58:571:59 | 17 | 1.0 | +| test.c:571:58:571:59 | (unsigned int)... | 1.0 | +| test.c:571:58:571:64 | ... * ... | 7.24700382E8 | +| test.c:571:63:571:64 | ip | 7.24700382E8 | +| test.c:572:19:572:30 | (...) | 1.449400765E9 | +| test.c:572:19:572:35 | ... * ... | 1.449400765E9 | +| test.c:572:20:572:20 | 2 | 1.0 | +| test.c:572:20:572:20 | (unsigned int)... | 1.0 | +| test.c:572:20:572:25 | ... * ... | 1.449400765E9 | +| test.c:572:20:572:29 | ... + ... | 1.449400765E9 | +| test.c:572:24:572:25 | ip | 1.449400765E9 | +| test.c:572:29:572:29 | 1 | 1.0 | +| test.c:572:29:572:29 | (unsigned int)... | 1.0 | +| test.c:572:34:572:35 | 14 | 1.0 | +| test.c:572:34:572:35 | (unsigned int)... | 1.0 | +| test.c:573:19:573:20 | 14 | 1.0 | +| test.c:573:19:573:20 | (unsigned int)... | 1.0 | +| test.c:573:19:573:31 | ... * ... | 1.449400765E9 | +| test.c:573:19:573:41 | ... > ... | 1.0 | +| test.c:573:19:575:27 | ... ? ... : ... | 2.1007625775825853E18 | +| test.c:573:24:573:31 | (...) | 1.449400765E9 | +| test.c:573:25:573:25 | 2 | 1.0 | +| test.c:573:25:573:25 | (unsigned int)... | 1.0 | +| test.c:573:25:573:30 | ... * ... | 1.449400765E9 | +| test.c:573:29:573:30 | ip | 1.449400765E9 | +| test.c:573:35:573:36 | 17 | 1.0 | +| test.c:573:35:573:36 | (unsigned int)... | 1.0 | +| test.c:573:35:573:41 | ... * ... | 1.449400765E9 | +| test.c:573:40:573:41 | ip | 1.449400765E9 | +| test.c:574:21:574:22 | 14 | 1.0 | +| test.c:574:21:574:22 | (unsigned int)... | 1.0 | +| test.c:574:21:574:33 | ... * ... | 1.449400765E9 | +| test.c:574:26:574:33 | (...) | 1.449400765E9 | +| test.c:574:27:574:27 | 2 | 1.0 | +| test.c:574:27:574:27 | (unsigned int)... | 1.0 | +| test.c:574:27:574:32 | ... * ... | 1.449400765E9 | +| test.c:574:31:574:32 | ip | 1.449400765E9 | +| test.c:575:21:575:22 | 14 | 1.0 | +| test.c:575:21:575:22 | (unsigned int)... | 1.0 | +| test.c:575:21:575:27 | ... * ... | 1.449400765E9 | +| test.c:575:26:575:27 | ip | 1.449400765E9 | +| test.c:576:15:576:16 | 14 | 1.0 | +| test.c:576:15:576:16 | (unsigned int)... | 1.0 | +| test.c:576:15:576:21 | ... * ... | 7.24700382E8 | +| test.c:576:15:576:37 | ... > ... | 1.0 | +| test.c:576:15:578:29 | ... ? ... : ... | 5.251906436709459E17 | +| test.c:576:20:576:21 | ip | 7.24700382E8 | +| test.c:576:25:576:32 | (...) | 7.24700382E8 | +| test.c:576:25:576:37 | ... * ... | 7.24700382E8 | +| test.c:576:26:576:27 | ip | 7.24700382E8 | +| test.c:576:26:576:31 | ... + ... | 7.24700382E8 | +| test.c:576:31:576:31 | 1 | 1.0 | +| test.c:576:31:576:31 | (unsigned int)... | 1.0 | +| test.c:576:36:576:37 | 17 | 1.0 | +| test.c:576:36:576:37 | (unsigned int)... | 1.0 | +| test.c:577:17:577:18 | 14 | 1.0 | +| test.c:577:17:577:18 | (unsigned int)... | 1.0 | +| test.c:577:17:577:23 | ... * ... | 7.24700382E8 | +| test.c:577:22:577:23 | ip | 7.24700382E8 | +| test.c:578:17:578:24 | (...) | 7.24700382E8 | +| test.c:578:17:578:29 | ... * ... | 7.24700382E8 | +| test.c:578:18:578:19 | ip | 7.24700382E8 | +| test.c:578:18:578:23 | ... + ... | 7.24700382E8 | +| test.c:578:23:578:23 | 1 | 1.0 | +| test.c:578:23:578:23 | (unsigned int)... | 1.0 | +| test.c:578:28:578:29 | 14 | 1.0 | +| test.c:578:28:578:29 | (unsigned int)... | 1.0 | +| test.c:579:11:579:11 | 2 | 1.0 | +| test.c:579:11:579:11 | (unsigned int)... | 1.0 | +| test.c:579:11:579:28 | ... * ... | 5.797603059E9 | +| test.c:579:11:599:46 | ... + ... | 9.943431528813442E94 | +| test.c:579:15:579:28 | (...) | 5.797603059E9 | +| test.c:579:16:579:17 | ip | 5.797603059E9 | +| test.c:579:16:579:22 | ... * ... | 5.797603059E9 | +| test.c:579:16:579:27 | ... + ... | 5.797603059E9 | +| test.c:579:21:579:22 | 14 | 1.0 | +| test.c:579:21:579:22 | (unsigned int)... | 1.0 | +| test.c:579:26:579:27 | 32 | 1.0 | +| test.c:579:26:579:27 | (unsigned int)... | 1.0 | +| test.c:580:11:599:46 | (...) | 1.715093535659983E85 | +| test.c:580:12:580:12 | 4 | 1.0 | +| test.c:580:12:580:12 | (unsigned int)... | 1.0 | +| test.c:580:12:580:29 | ... * ... | 5.797603059E9 | +| test.c:580:12:581:30 | ... + ... | 3.361220122972616E19 | +| test.c:580:12:582:30 | ... + ... | 1.9487020066918396E29 | +| test.c:580:12:588:26 | ... + ... | 3.0379516094938436E59 | +| test.c:580:12:589:41 | ... > ... | 1.0 | +| test.c:580:12:599:45 | ... ? ... : ... | 1.715093535659983E85 | +| test.c:580:16:580:29 | (...) | 5.797603059E9 | +| test.c:580:17:580:18 | ip | 5.797603059E9 | +| test.c:580:17:580:23 | ... * ... | 5.797603059E9 | +| test.c:580:17:580:28 | ... + ... | 5.797603059E9 | +| test.c:580:22:580:23 | 14 | 1.0 | +| test.c:580:22:580:23 | (unsigned int)... | 1.0 | +| test.c:580:27:580:28 | 32 | 1.0 | +| test.c:580:27:580:28 | (unsigned int)... | 1.0 | +| test.c:581:13:581:30 | (...) | 5.797603059E9 | +| test.c:581:14:581:14 | 2 | 1.0 | +| test.c:581:14:581:14 | (unsigned int)... | 1.0 | +| test.c:581:14:581:19 | ... * ... | 5.797603059E9 | +| test.c:581:14:581:24 | ... * ... | 5.797603059E9 | +| test.c:581:14:581:29 | ... + ... | 5.797603059E9 | +| test.c:581:18:581:19 | ip | 5.797603059E9 | +| test.c:581:23:581:24 | 14 | 1.0 | +| test.c:581:23:581:24 | (unsigned int)... | 1.0 | +| test.c:581:28:581:29 | 32 | 1.0 | +| test.c:581:28:581:29 | (unsigned int)... | 1.0 | +| test.c:582:13:582:13 | 2 | 1.0 | +| test.c:582:13:582:13 | (unsigned int)... | 1.0 | +| test.c:582:13:582:30 | ... * ... | 5.797603059E9 | +| test.c:582:17:582:30 | (...) | 5.797603059E9 | +| test.c:582:18:582:19 | ip | 5.797603059E9 | +| test.c:582:18:582:24 | ... * ... | 5.797603059E9 | +| test.c:582:18:582:29 | ... + ... | 5.797603059E9 | +| test.c:582:23:582:24 | 14 | 1.0 | +| test.c:582:23:582:24 | (unsigned int)... | 1.0 | +| test.c:582:28:582:29 | 64 | 1.0 | +| test.c:582:28:582:29 | (unsigned int)... | 1.0 | +| test.c:583:13:588:26 | (...) | 1.558961605756818E30 | +| test.c:583:14:583:25 | (...) | 5.797603059E9 | +| test.c:583:14:583:30 | ... * ... | 5.797603059E9 | +| test.c:583:14:584:63 | ... > ... | 1.0 | +| test.c:583:14:588:25 | ... ? ... : ... | 1.558961605756818E30 | +| test.c:583:15:583:15 | 2 | 1.0 | +| test.c:583:15:583:15 | (unsigned int)... | 1.0 | +| test.c:583:15:583:20 | ... * ... | 5.797603059E9 | +| test.c:583:15:583:24 | ... + ... | 5.797603059E9 | +| test.c:583:19:583:20 | ip | 5.797603059E9 | +| test.c:583:24:583:24 | 1 | 1.0 | +| test.c:583:24:583:24 | (unsigned int)... | 1.0 | +| test.c:583:29:583:30 | 14 | 1.0 | +| test.c:583:29:583:30 | (unsigned int)... | 1.0 | +| test.c:584:13:584:63 | (...) | 3.361220122972616E19 | +| test.c:584:14:584:15 | 14 | 1.0 | +| test.c:584:14:584:15 | (unsigned int)... | 1.0 | +| test.c:584:14:584:26 | ... * ... | 5.797603059E9 | +| test.c:584:14:584:36 | ... > ... | 1.0 | +| test.c:584:14:584:62 | ... ? ... : ... | 3.361220122972616E19 | +| test.c:584:19:584:26 | (...) | 5.797603059E9 | +| test.c:584:20:584:20 | 2 | 1.0 | +| test.c:584:20:584:20 | (unsigned int)... | 1.0 | +| test.c:584:20:584:25 | ... * ... | 5.797603059E9 | +| test.c:584:24:584:25 | ip | 5.797603059E9 | +| test.c:584:30:584:31 | 17 | 1.0 | +| test.c:584:30:584:31 | (unsigned int)... | 1.0 | +| test.c:584:30:584:36 | ... * ... | 5.797603059E9 | +| test.c:584:35:584:36 | ip | 5.797603059E9 | +| test.c:584:40:584:41 | 17 | 1.0 | +| test.c:584:40:584:41 | (unsigned int)... | 1.0 | +| test.c:584:40:584:52 | ... * ... | 5.797603059E9 | +| test.c:584:45:584:52 | (...) | 5.797603059E9 | +| test.c:584:46:584:46 | 2 | 1.0 | +| test.c:584:46:584:46 | (unsigned int)... | 1.0 | +| test.c:584:46:584:51 | ... * ... | 5.797603059E9 | +| test.c:584:50:584:51 | ip | 5.797603059E9 | +| test.c:584:56:584:57 | 17 | 1.0 | +| test.c:584:56:584:57 | (unsigned int)... | 1.0 | +| test.c:584:56:584:62 | ... * ... | 5.797603059E9 | +| test.c:584:61:584:62 | ip | 5.797603059E9 | +| test.c:585:17:585:28 | (...) | 1.1595206119E10 | +| test.c:585:17:585:33 | ... * ... | 1.1595206119E10 | +| test.c:585:18:585:18 | 2 | 1.0 | +| test.c:585:18:585:18 | (unsigned int)... | 1.0 | +| test.c:585:18:585:23 | ... * ... | 1.1595206119E10 | +| test.c:585:18:585:27 | ... + ... | 1.1595206119E10 | +| test.c:585:22:585:23 | ip | 1.1595206119E10 | +| test.c:585:27:585:27 | 1 | 1.0 | +| test.c:585:27:585:27 | (unsigned int)... | 1.0 | +| test.c:585:32:585:33 | 14 | 1.0 | +| test.c:585:32:585:33 | (unsigned int)... | 1.0 | +| test.c:586:17:586:18 | 14 | 1.0 | +| test.c:586:17:586:18 | (unsigned int)... | 1.0 | +| test.c:586:17:586:29 | ... * ... | 1.1595206119E10 | +| test.c:586:17:586:39 | ... > ... | 1.0 | +| test.c:586:17:588:25 | ... ? ... : ... | 1.3444880494209504E20 | +| test.c:586:22:586:29 | (...) | 1.1595206119E10 | +| test.c:586:23:586:23 | 2 | 1.0 | +| test.c:586:23:586:23 | (unsigned int)... | 1.0 | +| test.c:586:23:586:28 | ... * ... | 1.1595206119E10 | +| test.c:586:27:586:28 | ip | 1.1595206119E10 | +| test.c:586:33:586:34 | 17 | 1.0 | +| test.c:586:33:586:34 | (unsigned int)... | 1.0 | +| test.c:586:33:586:39 | ... * ... | 1.1595206119E10 | +| test.c:586:38:586:39 | ip | 1.1595206119E10 | +| test.c:587:19:587:20 | 14 | 1.0 | +| test.c:587:19:587:20 | (unsigned int)... | 1.0 | +| test.c:587:19:587:31 | ... * ... | 1.1595206119E10 | +| test.c:587:24:587:31 | (...) | 1.1595206119E10 | +| test.c:587:25:587:25 | 2 | 1.0 | +| test.c:587:25:587:25 | (unsigned int)... | 1.0 | +| test.c:587:25:587:30 | ... * ... | 1.1595206119E10 | +| test.c:587:29:587:30 | ip | 1.1595206119E10 | +| test.c:588:19:588:20 | 14 | 1.0 | +| test.c:588:19:588:20 | (unsigned int)... | 1.0 | +| test.c:588:19:588:25 | ... * ... | 1.1595206119E10 | +| test.c:588:24:588:25 | ip | 1.1595206119E10 | +| test.c:589:11:589:11 | 2 | 1.0 | +| test.c:589:11:589:11 | (unsigned int)... | 1.0 | +| test.c:589:11:589:16 | ... * ... | 3.4785618357E10 | +| test.c:589:11:589:21 | ... * ... | 3.4785618357E10 | +| test.c:589:11:589:41 | ... + ... | 1.2100392444788552E21 | +| test.c:589:15:589:16 | ip | 3.4785618357E10 | +| test.c:589:20:589:21 | 14 | 1.0 | +| test.c:589:20:589:21 | (unsigned int)... | 1.0 | +| test.c:589:25:589:36 | (...) | 3.4785618357E10 | +| test.c:589:25:589:41 | ... * ... | 3.4785618357E10 | +| test.c:589:26:589:26 | 2 | 1.0 | +| test.c:589:26:589:26 | (unsigned int)... | 1.0 | +| test.c:589:26:589:31 | ... * ... | 3.4785618357E10 | +| test.c:589:26:589:35 | ... + ... | 3.4785618357E10 | +| test.c:589:30:589:31 | ip | 3.4785618357E10 | +| test.c:589:35:589:35 | 1 | 1.0 | +| test.c:589:35:589:35 | (unsigned int)... | 1.0 | +| test.c:589:40:589:41 | 17 | 1.0 | +| test.c:589:40:589:41 | (unsigned int)... | 1.0 | +| test.c:590:15:590:15 | 4 | 1.0 | +| test.c:590:15:590:15 | (unsigned int)... | 1.0 | +| test.c:590:15:590:32 | ... * ... | 3.4785618357E10 | +| test.c:590:15:591:32 | ... + ... | 1.2100392444788552E21 | +| test.c:590:15:592:32 | ... + ... | 4.209196335543408E31 | +| test.c:590:15:598:28 | ... + ... | 1.417386703353284E64 | +| test.c:590:19:590:32 | (...) | 3.4785618357E10 | +| test.c:590:20:590:21 | ip | 3.4785618357E10 | +| test.c:590:20:590:26 | ... * ... | 3.4785618357E10 | +| test.c:590:20:590:31 | ... + ... | 3.4785618357E10 | +| test.c:590:25:590:26 | 14 | 1.0 | +| test.c:590:25:590:26 | (unsigned int)... | 1.0 | +| test.c:590:30:590:31 | 32 | 1.0 | +| test.c:590:30:590:31 | (unsigned int)... | 1.0 | +| test.c:591:15:591:32 | (...) | 3.4785618357E10 | +| test.c:591:16:591:16 | 2 | 1.0 | +| test.c:591:16:591:16 | (unsigned int)... | 1.0 | +| test.c:591:16:591:21 | ... * ... | 3.4785618357E10 | +| test.c:591:16:591:26 | ... * ... | 3.4785618357E10 | +| test.c:591:16:591:31 | ... + ... | 3.4785618357E10 | +| test.c:591:20:591:21 | ip | 3.4785618357E10 | +| test.c:591:25:591:26 | 14 | 1.0 | +| test.c:591:25:591:26 | (unsigned int)... | 1.0 | +| test.c:591:30:591:31 | 32 | 1.0 | +| test.c:591:30:591:31 | (unsigned int)... | 1.0 | +| test.c:592:15:592:15 | 2 | 1.0 | +| test.c:592:15:592:15 | (unsigned int)... | 1.0 | +| test.c:592:15:592:32 | ... * ... | 3.4785618357E10 | +| test.c:592:19:592:32 | (...) | 3.4785618357E10 | +| test.c:592:20:592:21 | ip | 3.4785618357E10 | +| test.c:592:20:592:26 | ... * ... | 3.4785618357E10 | +| test.c:592:20:592:31 | ... + ... | 3.4785618357E10 | +| test.c:592:25:592:26 | 14 | 1.0 | +| test.c:592:25:592:26 | (unsigned int)... | 1.0 | +| test.c:592:30:592:31 | 64 | 1.0 | +| test.c:592:30:592:31 | (unsigned int)... | 1.0 | +| test.c:593:15:598:28 | (...) | 3.367357068579931E32 | +| test.c:593:16:593:27 | (...) | 3.4785618357E10 | +| test.c:593:16:593:32 | ... * ... | 3.4785618357E10 | +| test.c:593:16:594:65 | ... > ... | 1.0 | +| test.c:593:16:598:27 | ... ? ... : ... | 3.367357068579931E32 | +| test.c:593:17:593:17 | 2 | 1.0 | +| test.c:593:17:593:17 | (unsigned int)... | 1.0 | +| test.c:593:17:593:22 | ... * ... | 3.4785618357E10 | +| test.c:593:17:593:26 | ... + ... | 3.4785618357E10 | +| test.c:593:21:593:22 | ip | 3.4785618357E10 | +| test.c:593:26:593:26 | 1 | 1.0 | +| test.c:593:26:593:26 | (unsigned int)... | 1.0 | +| test.c:593:31:593:32 | 14 | 1.0 | +| test.c:593:31:593:32 | (unsigned int)... | 1.0 | +| test.c:594:15:594:65 | (...) | 1.2100392444788552E21 | +| test.c:594:16:594:17 | 14 | 1.0 | +| test.c:594:16:594:17 | (unsigned int)... | 1.0 | +| test.c:594:16:594:28 | ... * ... | 3.4785618357E10 | +| test.c:594:16:594:38 | ... > ... | 1.0 | +| test.c:594:16:594:64 | ... ? ... : ... | 1.2100392444788552E21 | +| test.c:594:21:594:28 | (...) | 3.4785618357E10 | +| test.c:594:22:594:22 | 2 | 1.0 | +| test.c:594:22:594:22 | (unsigned int)... | 1.0 | +| test.c:594:22:594:27 | ... * ... | 3.4785618357E10 | +| test.c:594:26:594:27 | ip | 3.4785618357E10 | +| test.c:594:32:594:33 | 17 | 1.0 | +| test.c:594:32:594:33 | (unsigned int)... | 1.0 | +| test.c:594:32:594:38 | ... * ... | 3.4785618357E10 | +| test.c:594:37:594:38 | ip | 3.4785618357E10 | +| test.c:594:42:594:43 | 17 | 1.0 | +| test.c:594:42:594:43 | (unsigned int)... | 1.0 | +| test.c:594:42:594:54 | ... * ... | 3.4785618357E10 | +| test.c:594:47:594:54 | (...) | 3.4785618357E10 | +| test.c:594:48:594:48 | 2 | 1.0 | +| test.c:594:48:594:48 | (unsigned int)... | 1.0 | +| test.c:594:48:594:53 | ... * ... | 3.4785618357E10 | +| test.c:594:52:594:53 | ip | 3.4785618357E10 | +| test.c:594:58:594:59 | 17 | 1.0 | +| test.c:594:58:594:59 | (unsigned int)... | 1.0 | +| test.c:594:58:594:64 | ... * ... | 3.4785618357E10 | +| test.c:594:63:594:64 | ip | 3.4785618357E10 | +| test.c:595:19:595:30 | (...) | 6.9571236715E10 | +| test.c:595:19:595:35 | ... * ... | 6.9571236715E10 | +| test.c:595:20:595:20 | 2 | 1.0 | +| test.c:595:20:595:20 | (unsigned int)... | 1.0 | +| test.c:595:20:595:25 | ... * ... | 6.9571236715E10 | +| test.c:595:20:595:29 | ... + ... | 6.9571236715E10 | +| test.c:595:24:595:25 | ip | 6.9571236715E10 | +| test.c:595:29:595:29 | 1 | 1.0 | +| test.c:595:29:595:29 | (unsigned int)... | 1.0 | +| test.c:595:34:595:35 | 14 | 1.0 | +| test.c:595:34:595:35 | (unsigned int)... | 1.0 | +| test.c:596:19:596:20 | 14 | 1.0 | +| test.c:596:19:596:20 | (unsigned int)... | 1.0 | +| test.c:596:19:596:31 | ... * ... | 6.9571236715E10 | +| test.c:596:19:596:41 | ... > ... | 1.0 | +| test.c:596:19:598:27 | ... ? ... : ... | 4.840156978054564E21 | +| test.c:596:24:596:31 | (...) | 6.9571236715E10 | +| test.c:596:25:596:25 | 2 | 1.0 | +| test.c:596:25:596:25 | (unsigned int)... | 1.0 | +| test.c:596:25:596:30 | ... * ... | 6.9571236715E10 | +| test.c:596:29:596:30 | ip | 6.9571236715E10 | +| test.c:596:35:596:36 | 17 | 1.0 | +| test.c:596:35:596:36 | (unsigned int)... | 1.0 | +| test.c:596:35:596:41 | ... * ... | 6.9571236715E10 | +| test.c:596:40:596:41 | ip | 6.9571236715E10 | +| test.c:597:21:597:22 | 14 | 1.0 | +| test.c:597:21:597:22 | (unsigned int)... | 1.0 | +| test.c:597:21:597:33 | ... * ... | 6.9571236715E10 | +| test.c:597:26:597:33 | (...) | 6.9571236715E10 | +| test.c:597:27:597:27 | 2 | 1.0 | +| test.c:597:27:597:27 | (unsigned int)... | 1.0 | +| test.c:597:27:597:32 | ... * ... | 6.9571236715E10 | +| test.c:597:31:597:32 | ip | 6.9571236715E10 | +| test.c:598:21:598:22 | 14 | 1.0 | +| test.c:598:21:598:22 | (unsigned int)... | 1.0 | +| test.c:598:21:598:27 | ... * ... | 6.9571236715E10 | +| test.c:598:26:598:27 | ip | 6.9571236715E10 | +| test.c:599:15:599:15 | 2 | 1.0 | +| test.c:599:15:599:15 | (unsigned int)... | 1.0 | +| test.c:599:15:599:20 | ... * ... | 3.4785618357E10 | +| test.c:599:15:599:25 | ... * ... | 3.4785618357E10 | +| test.c:599:15:599:45 | ... + ... | 1.2100392444788552E21 | +| test.c:599:19:599:20 | ip | 3.4785618357E10 | +| test.c:599:24:599:25 | 14 | 1.0 | +| test.c:599:24:599:25 | (unsigned int)... | 1.0 | +| test.c:599:29:599:40 | (...) | 3.4785618357E10 | +| test.c:599:29:599:45 | ... * ... | 3.4785618357E10 | +| test.c:599:30:599:30 | 2 | 1.0 | +| test.c:599:30:599:30 | (unsigned int)... | 1.0 | +| test.c:599:30:599:35 | ... * ... | 3.4785618357E10 | +| test.c:599:30:599:39 | ... + ... | 3.4785618357E10 | +| test.c:599:34:599:35 | ip | 3.4785618357E10 | +| test.c:599:39:599:39 | 1 | 1.0 | +| test.c:599:39:599:39 | (unsigned int)... | 1.0 | +| test.c:599:44:599:45 | 17 | 1.0 | +| test.c:599:44:599:45 | (unsigned int)... | 1.0 | +| test.c:600:11:600:11 | 4 | 1.0 | +| test.c:600:11:600:11 | (unsigned int)... | 1.0 | +| test.c:600:11:600:28 | ... * ... | 5.797603059E9 | +| test.c:600:11:601:32 | ... + ... | 3.361220122972616E19 | +| test.c:600:11:602:32 | ... + ... | 1.9487020066918396E29 | +| test.c:600:11:608:28 | ... + ... | 3.0379516094938436E59 | +| test.c:600:11:609:63 | ... > ... | 1.0 | +| test.c:600:11:621:27 | ... ? ... : ... | 4.390639451194891E87 | +| test.c:600:15:600:28 | (...) | 5.797603059E9 | +| test.c:600:16:600:17 | ip | 5.797603059E9 | +| test.c:600:16:600:22 | ... * ... | 5.797603059E9 | +| test.c:600:16:600:27 | ... + ... | 5.797603059E9 | +| test.c:600:21:600:22 | 14 | 1.0 | +| test.c:600:21:600:22 | (unsigned int)... | 1.0 | +| test.c:600:26:600:27 | 32 | 1.0 | +| test.c:600:26:600:27 | (unsigned int)... | 1.0 | +| test.c:601:15:601:32 | (...) | 5.797603059E9 | +| test.c:601:16:601:16 | 2 | 1.0 | +| test.c:601:16:601:16 | (unsigned int)... | 1.0 | +| test.c:601:16:601:21 | ... * ... | 5.797603059E9 | +| test.c:601:16:601:26 | ... * ... | 5.797603059E9 | +| test.c:601:16:601:31 | ... + ... | 5.797603059E9 | +| test.c:601:20:601:21 | ip | 5.797603059E9 | +| test.c:601:25:601:26 | 14 | 1.0 | +| test.c:601:25:601:26 | (unsigned int)... | 1.0 | +| test.c:601:30:601:31 | 32 | 1.0 | +| test.c:601:30:601:31 | (unsigned int)... | 1.0 | +| test.c:602:15:602:15 | 2 | 1.0 | +| test.c:602:15:602:15 | (unsigned int)... | 1.0 | +| test.c:602:15:602:32 | ... * ... | 5.797603059E9 | +| test.c:602:19:602:32 | (...) | 5.797603059E9 | +| test.c:602:20:602:21 | ip | 5.797603059E9 | +| test.c:602:20:602:26 | ... * ... | 5.797603059E9 | +| test.c:602:20:602:31 | ... + ... | 5.797603059E9 | +| test.c:602:25:602:26 | 14 | 1.0 | +| test.c:602:25:602:26 | (unsigned int)... | 1.0 | +| test.c:602:30:602:31 | 64 | 1.0 | +| test.c:602:30:602:31 | (unsigned int)... | 1.0 | +| test.c:603:15:608:28 | (...) | 1.558961605756818E30 | +| test.c:603:16:603:27 | (...) | 5.797603059E9 | +| test.c:603:16:603:32 | ... * ... | 5.797603059E9 | +| test.c:603:16:604:65 | ... > ... | 1.0 | +| test.c:603:16:608:27 | ... ? ... : ... | 1.558961605756818E30 | +| test.c:603:17:603:17 | 2 | 1.0 | +| test.c:603:17:603:17 | (unsigned int)... | 1.0 | +| test.c:603:17:603:22 | ... * ... | 5.797603059E9 | +| test.c:603:17:603:26 | ... + ... | 5.797603059E9 | +| test.c:603:21:603:22 | ip | 5.797603059E9 | +| test.c:603:26:603:26 | 1 | 1.0 | +| test.c:603:26:603:26 | (unsigned int)... | 1.0 | +| test.c:603:31:603:32 | 14 | 1.0 | +| test.c:603:31:603:32 | (unsigned int)... | 1.0 | +| test.c:604:15:604:65 | (...) | 3.361220122972616E19 | +| test.c:604:16:604:17 | 14 | 1.0 | +| test.c:604:16:604:17 | (unsigned int)... | 1.0 | +| test.c:604:16:604:28 | ... * ... | 5.797603059E9 | +| test.c:604:16:604:38 | ... > ... | 1.0 | +| test.c:604:16:604:64 | ... ? ... : ... | 3.361220122972616E19 | +| test.c:604:21:604:28 | (...) | 5.797603059E9 | +| test.c:604:22:604:22 | 2 | 1.0 | +| test.c:604:22:604:22 | (unsigned int)... | 1.0 | +| test.c:604:22:604:27 | ... * ... | 5.797603059E9 | +| test.c:604:26:604:27 | ip | 5.797603059E9 | +| test.c:604:32:604:33 | 17 | 1.0 | +| test.c:604:32:604:33 | (unsigned int)... | 1.0 | +| test.c:604:32:604:38 | ... * ... | 5.797603059E9 | +| test.c:604:37:604:38 | ip | 5.797603059E9 | +| test.c:604:42:604:43 | 17 | 1.0 | +| test.c:604:42:604:43 | (unsigned int)... | 1.0 | +| test.c:604:42:604:54 | ... * ... | 5.797603059E9 | +| test.c:604:47:604:54 | (...) | 5.797603059E9 | +| test.c:604:48:604:48 | 2 | 1.0 | +| test.c:604:48:604:48 | (unsigned int)... | 1.0 | +| test.c:604:48:604:53 | ... * ... | 5.797603059E9 | +| test.c:604:52:604:53 | ip | 5.797603059E9 | +| test.c:604:58:604:59 | 17 | 1.0 | +| test.c:604:58:604:59 | (unsigned int)... | 1.0 | +| test.c:604:58:604:64 | ... * ... | 5.797603059E9 | +| test.c:604:63:604:64 | ip | 5.797603059E9 | +| test.c:605:19:605:30 | (...) | 1.1595206119E10 | +| test.c:605:19:605:35 | ... * ... | 1.1595206119E10 | +| test.c:605:20:605:20 | 2 | 1.0 | +| test.c:605:20:605:20 | (unsigned int)... | 1.0 | +| test.c:605:20:605:25 | ... * ... | 1.1595206119E10 | +| test.c:605:20:605:29 | ... + ... | 1.1595206119E10 | +| test.c:605:24:605:25 | ip | 1.1595206119E10 | +| test.c:605:29:605:29 | 1 | 1.0 | +| test.c:605:29:605:29 | (unsigned int)... | 1.0 | +| test.c:605:34:605:35 | 14 | 1.0 | +| test.c:605:34:605:35 | (unsigned int)... | 1.0 | +| test.c:606:19:606:20 | 14 | 1.0 | +| test.c:606:19:606:20 | (unsigned int)... | 1.0 | +| test.c:606:19:606:31 | ... * ... | 1.1595206119E10 | +| test.c:606:19:606:41 | ... > ... | 1.0 | +| test.c:606:19:608:27 | ... ? ... : ... | 1.3444880494209504E20 | +| test.c:606:24:606:31 | (...) | 1.1595206119E10 | +| test.c:606:25:606:25 | 2 | 1.0 | +| test.c:606:25:606:25 | (unsigned int)... | 1.0 | +| test.c:606:25:606:30 | ... * ... | 1.1595206119E10 | +| test.c:606:29:606:30 | ip | 1.1595206119E10 | +| test.c:606:35:606:36 | 17 | 1.0 | +| test.c:606:35:606:36 | (unsigned int)... | 1.0 | +| test.c:606:35:606:41 | ... * ... | 1.1595206119E10 | +| test.c:606:40:606:41 | ip | 1.1595206119E10 | +| test.c:607:21:607:22 | 14 | 1.0 | +| test.c:607:21:607:22 | (unsigned int)... | 1.0 | +| test.c:607:21:607:33 | ... * ... | 1.1595206119E10 | +| test.c:607:26:607:33 | (...) | 1.1595206119E10 | +| test.c:607:27:607:27 | 2 | 1.0 | +| test.c:607:27:607:27 | (unsigned int)... | 1.0 | +| test.c:607:27:607:32 | ... * ... | 1.1595206119E10 | +| test.c:607:31:607:32 | ip | 1.1595206119E10 | +| test.c:608:21:608:22 | 14 | 1.0 | +| test.c:608:21:608:22 | (unsigned int)... | 1.0 | +| test.c:608:21:608:27 | ... * ... | 1.1595206119E10 | +| test.c:608:26:608:27 | ip | 1.1595206119E10 | +| test.c:609:13:609:63 | (...) | 1.2100392444788552E21 | +| test.c:609:14:609:15 | 14 | 1.0 | +| test.c:609:14:609:15 | (unsigned int)... | 1.0 | +| test.c:609:14:609:20 | ... * ... | 3.4785618357E10 | +| test.c:609:14:609:36 | ... > ... | 1.0 | +| test.c:609:14:609:62 | ... ? ... : ... | 1.2100392444788552E21 | +| test.c:609:19:609:20 | ip | 3.4785618357E10 | +| test.c:609:24:609:31 | (...) | 3.4785618357E10 | +| test.c:609:24:609:36 | ... * ... | 3.4785618357E10 | +| test.c:609:25:609:26 | ip | 3.4785618357E10 | +| test.c:609:25:609:30 | ... + ... | 3.4785618357E10 | +| test.c:609:30:609:30 | 1 | 1.0 | +| test.c:609:30:609:30 | (unsigned int)... | 1.0 | +| test.c:609:35:609:36 | 17 | 1.0 | +| test.c:609:35:609:36 | (unsigned int)... | 1.0 | +| test.c:609:40:609:41 | 17 | 1.0 | +| test.c:609:40:609:41 | (unsigned int)... | 1.0 | +| test.c:609:40:609:46 | ... * ... | 3.4785618357E10 | +| test.c:609:45:609:46 | ip | 3.4785618357E10 | +| test.c:609:50:609:57 | (...) | 3.4785618357E10 | +| test.c:609:50:609:62 | ... * ... | 3.4785618357E10 | +| test.c:609:51:609:52 | ip | 3.4785618357E10 | +| test.c:609:51:609:56 | ... + ... | 3.4785618357E10 | +| test.c:609:56:609:56 | 1 | 1.0 | +| test.c:609:56:609:56 | (unsigned int)... | 1.0 | +| test.c:609:61:609:62 | 17 | 1.0 | +| test.c:609:61:609:62 | (unsigned int)... | 1.0 | +| test.c:610:13:610:13 | 4 | 1.0 | +| test.c:610:13:610:13 | (unsigned int)... | 1.0 | +| test.c:610:13:610:30 | ... * ... | 6.9571236714E10 | +| test.c:610:13:611:30 | ... + ... | 4.840156977915421E21 | +| test.c:610:13:612:30 | ... + ... | 3.3673570684347266E32 | +| test.c:610:13:618:26 | ... + ... | 9.071274901265435E65 | +| test.c:610:17:610:30 | (...) | 6.9571236714E10 | +| test.c:610:18:610:19 | ip | 6.9571236714E10 | +| test.c:610:18:610:24 | ... * ... | 6.9571236714E10 | +| test.c:610:18:610:29 | ... + ... | 6.9571236714E10 | +| test.c:610:23:610:24 | 14 | 1.0 | +| test.c:610:23:610:24 | (unsigned int)... | 1.0 | +| test.c:610:28:610:29 | 32 | 1.0 | +| test.c:610:28:610:29 | (unsigned int)... | 1.0 | +| test.c:611:13:611:30 | (...) | 6.9571236714E10 | +| test.c:611:14:611:14 | 2 | 1.0 | +| test.c:611:14:611:14 | (unsigned int)... | 1.0 | +| test.c:611:14:611:19 | ... * ... | 6.9571236714E10 | +| test.c:611:14:611:24 | ... * ... | 6.9571236714E10 | +| test.c:611:14:611:29 | ... + ... | 6.9571236714E10 | +| test.c:611:18:611:19 | ip | 6.9571236714E10 | +| test.c:611:23:611:24 | 14 | 1.0 | +| test.c:611:23:611:24 | (unsigned int)... | 1.0 | +| test.c:611:28:611:29 | 32 | 1.0 | +| test.c:611:28:611:29 | (unsigned int)... | 1.0 | +| test.c:612:13:612:13 | 2 | 1.0 | +| test.c:612:13:612:13 | (unsigned int)... | 1.0 | +| test.c:612:13:612:30 | ... * ... | 6.9571236714E10 | +| test.c:612:17:612:30 | (...) | 6.9571236714E10 | +| test.c:612:18:612:19 | ip | 6.9571236714E10 | +| test.c:612:18:612:24 | ... * ... | 6.9571236714E10 | +| test.c:612:18:612:29 | ... + ... | 6.9571236714E10 | +| test.c:612:23:612:24 | 14 | 1.0 | +| test.c:612:23:612:24 | (unsigned int)... | 1.0 | +| test.c:612:28:612:29 | 64 | 1.0 | +| test.c:612:28:612:29 | (unsigned int)... | 1.0 | +| test.c:613:13:618:26 | (...) | 2.693885654805863E33 | +| test.c:613:14:613:25 | (...) | 6.9571236714E10 | +| test.c:613:14:613:30 | ... * ... | 6.9571236714E10 | +| test.c:613:14:614:63 | ... > ... | 1.0 | +| test.c:613:14:618:25 | ... ? ... : ... | 2.693885654805863E33 | +| test.c:613:15:613:15 | 2 | 1.0 | +| test.c:613:15:613:15 | (unsigned int)... | 1.0 | +| test.c:613:15:613:20 | ... * ... | 6.9571236714E10 | +| test.c:613:15:613:24 | ... + ... | 6.9571236714E10 | +| test.c:613:19:613:20 | ip | 6.9571236714E10 | +| test.c:613:24:613:24 | 1 | 1.0 | +| test.c:613:24:613:24 | (unsigned int)... | 1.0 | +| test.c:613:29:613:30 | 14 | 1.0 | +| test.c:613:29:613:30 | (unsigned int)... | 1.0 | +| test.c:614:13:614:63 | (...) | 4.840156977915421E21 | +| test.c:614:14:614:15 | 14 | 1.0 | +| test.c:614:14:614:15 | (unsigned int)... | 1.0 | +| test.c:614:14:614:26 | ... * ... | 6.9571236714E10 | +| test.c:614:14:614:36 | ... > ... | 1.0 | +| test.c:614:14:614:62 | ... ? ... : ... | 4.840156977915421E21 | +| test.c:614:19:614:26 | (...) | 6.9571236714E10 | +| test.c:614:20:614:20 | 2 | 1.0 | +| test.c:614:20:614:20 | (unsigned int)... | 1.0 | +| test.c:614:20:614:25 | ... * ... | 6.9571236714E10 | +| test.c:614:24:614:25 | ip | 6.9571236714E10 | +| test.c:614:30:614:31 | 17 | 1.0 | +| test.c:614:30:614:31 | (unsigned int)... | 1.0 | +| test.c:614:30:614:36 | ... * ... | 6.9571236714E10 | +| test.c:614:35:614:36 | ip | 6.9571236714E10 | +| test.c:614:40:614:41 | 17 | 1.0 | +| test.c:614:40:614:41 | (unsigned int)... | 1.0 | +| test.c:614:40:614:52 | ... * ... | 6.9571236714E10 | +| test.c:614:45:614:52 | (...) | 6.9571236714E10 | +| test.c:614:46:614:46 | 2 | 1.0 | +| test.c:614:46:614:46 | (unsigned int)... | 1.0 | +| test.c:614:46:614:51 | ... * ... | 6.9571236714E10 | +| test.c:614:50:614:51 | ip | 6.9571236714E10 | +| test.c:614:56:614:57 | 17 | 1.0 | +| test.c:614:56:614:57 | (unsigned int)... | 1.0 | +| test.c:614:56:614:62 | ... * ... | 6.9571236714E10 | +| test.c:614:61:614:62 | ip | 6.9571236714E10 | +| test.c:615:17:615:28 | (...) | 1.39142473429E11 | +| test.c:615:17:615:33 | ... * ... | 1.39142473429E11 | +| test.c:615:18:615:18 | 2 | 1.0 | +| test.c:615:18:615:18 | (unsigned int)... | 1.0 | +| test.c:615:18:615:23 | ... * ... | 1.39142473429E11 | +| test.c:615:18:615:27 | ... + ... | 1.39142473429E11 | +| test.c:615:22:615:23 | ip | 1.39142473429E11 | +| test.c:615:27:615:27 | 1 | 1.0 | +| test.c:615:27:615:27 | (unsigned int)... | 1.0 | +| test.c:615:32:615:33 | 14 | 1.0 | +| test.c:615:32:615:33 | (unsigned int)... | 1.0 | +| test.c:616:17:616:18 | 14 | 1.0 | +| test.c:616:17:616:18 | (unsigned int)... | 1.0 | +| test.c:616:17:616:29 | ... * ... | 1.39142473429E11 | +| test.c:616:17:616:39 | ... > ... | 1.0 | +| test.c:616:17:618:25 | ... ? ... : ... | 1.936062791193997E22 | +| test.c:616:22:616:29 | (...) | 1.39142473429E11 | +| test.c:616:23:616:23 | 2 | 1.0 | +| test.c:616:23:616:23 | (unsigned int)... | 1.0 | +| test.c:616:23:616:28 | ... * ... | 1.39142473429E11 | +| test.c:616:27:616:28 | ip | 1.39142473429E11 | +| test.c:616:33:616:34 | 17 | 1.0 | +| test.c:616:33:616:34 | (unsigned int)... | 1.0 | +| test.c:616:33:616:39 | ... * ... | 1.39142473429E11 | +| test.c:616:38:616:39 | ip | 1.39142473429E11 | +| test.c:617:19:617:20 | 14 | 1.0 | +| test.c:617:19:617:20 | (unsigned int)... | 1.0 | +| test.c:617:19:617:31 | ... * ... | 1.39142473429E11 | +| test.c:617:24:617:31 | (...) | 1.39142473429E11 | +| test.c:617:25:617:25 | 2 | 1.0 | +| test.c:617:25:617:25 | (unsigned int)... | 1.0 | +| test.c:617:25:617:30 | ... * ... | 1.39142473429E11 | +| test.c:617:29:617:30 | ip | 1.39142473429E11 | +| test.c:618:19:618:20 | 14 | 1.0 | +| test.c:618:19:618:20 | (unsigned int)... | 1.0 | +| test.c:618:19:618:25 | ... * ... | 1.39142473429E11 | +| test.c:618:24:618:25 | ip | 1.39142473429E11 | +| test.c:619:13:619:14 | 14 | 1.0 | +| test.c:619:13:619:14 | (unsigned int)... | 1.0 | +| test.c:619:13:619:19 | ... * ... | 6.9571236714E10 | +| test.c:619:13:619:35 | ... > ... | 1.0 | +| test.c:619:13:621:27 | ... ? ... : ... | 4.840156977915421E21 | +| test.c:619:18:619:19 | ip | 6.9571236714E10 | +| test.c:619:23:619:30 | (...) | 6.9571236714E10 | +| test.c:619:23:619:35 | ... * ... | 6.9571236714E10 | +| test.c:619:24:619:25 | ip | 6.9571236714E10 | +| test.c:619:24:619:29 | ... + ... | 6.9571236714E10 | +| test.c:619:29:619:29 | 1 | 1.0 | +| test.c:619:29:619:29 | (unsigned int)... | 1.0 | +| test.c:619:34:619:35 | 17 | 1.0 | +| test.c:619:34:619:35 | (unsigned int)... | 1.0 | +| test.c:620:15:620:16 | 14 | 1.0 | +| test.c:620:15:620:16 | (unsigned int)... | 1.0 | +| test.c:620:15:620:21 | ... * ... | 6.9571236714E10 | +| test.c:620:20:620:21 | ip | 6.9571236714E10 | +| test.c:621:15:621:22 | (...) | 6.9571236714E10 | +| test.c:621:15:621:27 | ... * ... | 6.9571236714E10 | +| test.c:621:16:621:17 | ip | 6.9571236714E10 | +| test.c:621:16:621:21 | ... + ... | 6.9571236714E10 | +| test.c:621:21:621:21 | 1 | 1.0 | +| test.c:621:21:621:21 | (unsigned int)... | 1.0 | +| test.c:621:26:621:27 | 14 | 1.0 | +| test.c:621:26:621:27 | (unsigned int)... | 1.0 | +| test.c:622:10:622:23 | special_number | 1.297918419127476E201 | +| test.c:629:10:629:11 | 0 | 1.0 | +| test.c:630:7:630:8 | c1 | 1.0 | +| test.c:630:13:630:13 | x | 1.0 | +| test.c:630:13:630:23 | ... += ... | 1.0 | +| test.c:630:18:630:23 | 748596 | 1.0 | +| test.c:631:7:631:8 | c2 | 1.0 | +| test.c:631:13:631:13 | x | 2.0 | +| test.c:631:13:631:25 | ... += ... | 2.0 | +| test.c:631:18:631:25 | 84652395 | 1.0 | +| test.c:632:7:632:8 | c3 | 1.0 | +| test.c:632:13:632:13 | x | 4.0 | +| test.c:632:13:632:24 | ... += ... | 4.0 | +| test.c:632:18:632:24 | 3675895 | 1.0 | +| test.c:633:7:633:8 | c4 | 1.0 | +| test.c:633:13:633:13 | x | 8.0 | +| test.c:633:13:633:22 | ... += ... | 8.0 | +| test.c:633:18:633:22 | 98634 | 1.0 | +| test.c:634:7:634:8 | c5 | 1.0 | +| test.c:634:13:634:13 | x | 16.0 | +| test.c:634:13:634:24 | ... += ... | 16.0 | +| test.c:634:18:634:24 | 7834985 | 1.0 | +| test.c:635:7:635:8 | c1 | 2.0 | +| test.c:635:7:635:14 | ... && ... | 1.0 | +| test.c:635:13:635:14 | c2 | 2.0 | +| test.c:635:19:635:19 | x | 32.0 | +| test.c:635:19:635:32 | ... += ... | 32.0 | +| test.c:635:24:635:32 | 938457398 | 1.0 | +| test.c:636:7:636:8 | c1 | 3.0 | +| test.c:636:7:636:14 | ... && ... | 1.0 | +| test.c:636:13:636:14 | c3 | 2.0 | +| test.c:636:19:636:19 | x | 64.0 | +| test.c:636:19:636:31 | ... += ... | 64.0 | +| test.c:636:24:636:31 | 73895648 | 1.0 | +| test.c:637:7:637:8 | c1 | 4.0 | +| test.c:637:7:637:14 | ... && ... | 1.0 | +| test.c:637:13:637:14 | c4 | 2.0 | +| test.c:637:19:637:19 | x | 128.0 | +| test.c:637:19:637:31 | ... += ... | 128.0 | +| test.c:637:24:637:31 | 12345432 | 1.0 | +| test.c:638:7:638:8 | c1 | 5.0 | +| test.c:638:7:638:14 | ... && ... | 1.0 | +| test.c:638:13:638:14 | c5 | 2.0 | +| test.c:638:19:638:19 | x | 256.0 | +| test.c:638:19:638:28 | ... += ... | 256.0 | +| test.c:638:24:638:28 | 38847 | 1.0 | +| test.c:639:7:639:8 | c2 | 5.0 | +| test.c:639:7:639:14 | ... && ... | 1.0 | +| test.c:639:13:639:14 | c3 | 5.0 | +| test.c:639:19:639:19 | x | 512.0 | +| test.c:639:19:639:26 | ... += ... | 512.0 | +| test.c:639:24:639:26 | 234 | 1.0 | +| test.c:641:11:641:11 | x | 1024.0 | +| test.c:641:11:641:15 | ... + ... | 1048576.0 | +| test.c:641:11:641:19 | ... + ... | 1.073741824E9 | +| test.c:641:11:641:23 | ... + ... | 1.099511627776E12 | +| test.c:641:11:641:27 | ... + ... | 1.125899906842624E15 | +| test.c:641:11:641:31 | ... + ... | 1.152921504606847E18 | +| test.c:641:11:641:35 | ... + ... | 1.1805916207174113E21 | +| test.c:641:11:641:39 | ... + ... | 1.2089258196146292E24 | +| test.c:641:11:641:43 | ... + ... | 1.2379400392853803E27 | +| test.c:641:11:641:47 | ... + ... | 1.2676506002282294E30 | +| test.c:641:11:641:51 | ... + ... | 1.298074214633707E33 | +| test.c:641:11:641:55 | ... + ... | 1.329227995784916E36 | +| test.c:641:15:641:15 | x | 1024.0 | +| test.c:641:19:641:19 | x | 1024.0 | +| test.c:641:23:641:23 | x | 1024.0 | +| test.c:641:27:641:27 | x | 1024.0 | +| test.c:641:31:641:31 | x | 1024.0 | +| test.c:641:35:641:35 | x | 1024.0 | +| test.c:641:39:641:39 | x | 1024.0 | +| test.c:641:43:641:43 | x | 1024.0 | +| test.c:641:47:641:47 | x | 1024.0 | +| test.c:641:51:641:51 | x | 1024.0 | +| test.c:641:55:641:55 | x | 1024.0 | +| test.c:642:10:642:10 | y | 1.329227995784916E36 | +| test.c:647:20:647:20 | x | 1.0 | +| test.c:647:20:647:26 | ... < ... | 1.0 | +| test.c:647:20:647:36 | ... ? ... : ... | 1.0 | +| test.c:647:24:647:26 | 100 | 1.0 | +| test.c:647:24:647:26 | (unsigned int)... | 1.0 | +| test.c:647:30:647:30 | x | 1.0 | +| test.c:647:34:647:36 | 100 | 1.0 | +| test.c:647:34:647:36 | (unsigned int)... | 1.0 | +| test.c:650:3:650:4 | y1 | 1.0 | +| test.c:650:9:650:11 | ++ ... | 1.0 | +| test.c:650:11:650:11 | y | 1.0 | +| test.c:651:3:651:4 | y2 | 1.0 | +| test.c:651:19:651:19 | 3 | 1.0 | +| test.c:651:19:651:19 | (unsigned int)... | 1.0 | +| test.c:660:3:660:3 | i | 1.0 | +| test.c:660:3:660:8 | ... = ... | 1.0 | +| test.c:660:7:660:8 | 10 | 1.0 | +| test.c:661:7:661:7 | i | 1.0 | +| test.c:663:3:663:3 | i | 1.0 | +| test.c:663:3:663:8 | ... = ... | 1.0 | +| test.c:663:7:663:8 | 10 | 1.0 | +| test.c:664:3:664:3 | i | 1.0 | +| test.c:664:3:664:9 | ... += ... | 1.0 | +| test.c:664:8:664:9 | 10 | 1.0 | +| test.c:665:7:665:7 | i | 1.0 | +| test.c:667:3:667:3 | i | 1.0 | +| test.c:667:3:667:8 | ... = ... | 1.0 | +| test.c:667:7:667:8 | 40 | 1.0 | +| test.c:668:3:668:3 | i | 1.0 | +| test.c:668:3:668:9 | ... -= ... | 1.0 | +| test.c:668:8:668:9 | 10 | 1.0 | +| test.c:669:7:669:7 | i | 1.0 | +| test.c:671:3:671:3 | i | 1.0 | +| test.c:671:3:671:12 | ... = ... | 1.0 | +| test.c:671:7:671:7 | j | 1.0 | +| test.c:671:7:671:12 | ... = ... | 1.0 | +| test.c:671:11:671:12 | 40 | 1.0 | +| test.c:672:7:672:7 | i | 1.0 | +| test.c:674:3:674:3 | i | 1.0 | +| test.c:674:3:674:15 | ... = ... | 1.0 | +| test.c:674:7:674:15 | (...) | 1.0 | +| test.c:674:8:674:8 | j | 1.0 | +| test.c:674:8:674:14 | ... += ... | 1.0 | +| test.c:674:13:674:14 | 10 | 1.0 | +| test.c:675:7:675:7 | i | 1.0 | +| test.c:677:3:677:3 | i | 1.0 | +| test.c:677:3:677:20 | ... = ... | 1.0 | +| test.c:677:7:677:8 | 20 | 1.0 | +| test.c:677:7:677:20 | ... + ... | 1.0 | +| test.c:677:12:677:20 | (...) | 1.0 | +| test.c:677:13:677:13 | j | 1.0 | +| test.c:677:13:677:19 | ... -= ... | 1.0 | +| test.c:677:18:677:19 | 10 | 1.0 | +| test.c:678:7:678:7 | i | 1.0 | +| test.c:683:14:683:15 | 0 | 1.0 | +| test.c:685:7:685:7 | 3 | 1.0 | +| test.c:685:7:685:7 | (unsigned int)... | 1.0 | +| test.c:685:7:685:12 | ... <= ... | 1.0 | +| test.c:685:7:685:23 | ... && ... | 1.0 | +| test.c:685:7:685:33 | ... && ... | 1.0 | +| test.c:685:7:685:44 | ... && ... | 1.0 | +| test.c:685:12:685:12 | a | 1.0 | +| test.c:685:17:685:17 | a | 1.0 | +| test.c:685:17:685:23 | ... <= ... | 1.0 | +| test.c:685:22:685:23 | 11 | 1.0 | +| test.c:685:22:685:23 | (unsigned int)... | 1.0 | +| test.c:685:28:685:28 | 5 | 1.0 | +| test.c:685:28:685:28 | (unsigned int)... | 1.0 | +| test.c:685:28:685:33 | ... <= ... | 1.0 | +| test.c:685:33:685:33 | b | 1.0 | +| test.c:685:38:685:38 | b | 1.0 | +| test.c:685:38:685:44 | ... <= ... | 1.0 | +| test.c:685:43:685:44 | 23 | 1.0 | +| test.c:685:43:685:44 | (unsigned int)... | 1.0 | +| test.c:686:13:686:13 | a | 1.0 | +| test.c:686:13:686:15 | (int)... | 1.0 | +| test.c:686:13:686:15 | ... * ... | 1.0 | +| test.c:686:15:686:15 | b | 1.0 | +| test.c:687:5:687:9 | total | 1.0 | +| test.c:687:5:687:14 | ... += ... | 1.0 | +| test.c:687:14:687:14 | r | 1.0 | +| test.c:689:7:689:7 | 3 | 1.0 | +| test.c:689:7:689:7 | (unsigned int)... | 1.0 | +| test.c:689:7:689:12 | ... <= ... | 1.0 | +| test.c:689:7:689:23 | ... && ... | 1.0 | +| test.c:689:7:689:33 | ... && ... | 1.0 | +| test.c:689:7:689:44 | ... && ... | 1.0 | +| test.c:689:12:689:12 | a | 2.0 | +| test.c:689:17:689:17 | a | 2.0 | +| test.c:689:17:689:23 | ... <= ... | 1.0 | +| test.c:689:22:689:23 | 11 | 1.0 | +| test.c:689:22:689:23 | (unsigned int)... | 1.0 | +| test.c:689:28:689:28 | 0 | 1.0 | +| test.c:689:28:689:28 | (unsigned int)... | 1.0 | +| test.c:689:28:689:33 | ... <= ... | 1.0 | +| test.c:689:33:689:33 | b | 3.0 | +| test.c:689:38:689:38 | b | 3.0 | +| test.c:689:38:689:44 | ... <= ... | 1.0 | +| test.c:689:43:689:44 | 23 | 1.0 | +| test.c:689:43:689:44 | (unsigned int)... | 1.0 | +| test.c:690:13:690:13 | a | 2.0 | +| test.c:690:13:690:15 | (int)... | 6.0 | +| test.c:690:13:690:15 | ... * ... | 6.0 | +| test.c:690:15:690:15 | b | 3.0 | +| test.c:691:5:691:9 | total | 2.0 | +| test.c:691:5:691:14 | ... += ... | 12.0 | +| test.c:691:14:691:14 | r | 6.0 | +| test.c:693:7:693:7 | 3 | 1.0 | +| test.c:693:7:693:7 | (unsigned int)... | 1.0 | +| test.c:693:7:693:12 | ... <= ... | 1.0 | +| test.c:693:7:693:23 | ... && ... | 1.0 | +| test.c:693:7:693:34 | ... && ... | 1.0 | +| test.c:693:7:693:45 | ... && ... | 1.0 | +| test.c:693:12:693:12 | a | 3.0 | +| test.c:693:17:693:17 | a | 3.0 | +| test.c:693:17:693:23 | ... <= ... | 1.0 | +| test.c:693:22:693:23 | 11 | 1.0 | +| test.c:693:22:693:23 | (unsigned int)... | 1.0 | +| test.c:693:28:693:29 | 13 | 1.0 | +| test.c:693:28:693:29 | (unsigned int)... | 1.0 | +| test.c:693:28:693:34 | ... <= ... | 1.0 | +| test.c:693:34:693:34 | b | 7.0 | +| test.c:693:39:693:39 | b | 7.0 | +| test.c:693:39:693:45 | ... <= ... | 1.0 | +| test.c:693:44:693:45 | 23 | 1.0 | +| test.c:693:44:693:45 | (unsigned int)... | 1.0 | +| test.c:694:13:694:13 | a | 3.0 | +| test.c:694:13:694:15 | (int)... | 21.0 | +| test.c:694:13:694:15 | ... * ... | 21.0 | +| test.c:694:15:694:15 | b | 7.0 | +| test.c:695:5:695:9 | total | 14.0 | +| test.c:695:5:695:14 | ... += ... | 294.0 | +| test.c:695:14:695:14 | r | 21.0 | +| test.c:698:10:698:14 | total | 308.0 | +| test.c:702:14:702:15 | 0 | 1.0 | +| test.c:704:7:704:7 | 5 | 1.0 | +| test.c:704:7:704:7 | (unsigned int)... | 1.0 | +| test.c:704:7:704:12 | ... <= ... | 1.0 | +| test.c:704:7:704:23 | ... && ... | 1.0 | +| test.c:704:12:704:12 | b | 1.0 | +| test.c:704:17:704:17 | b | 1.0 | +| test.c:704:17:704:23 | ... <= ... | 1.0 | +| test.c:704:22:704:23 | 23 | 1.0 | +| test.c:704:22:704:23 | (unsigned int)... | 1.0 | +| test.c:705:13:705:14 | 11 | 1.0 | +| test.c:705:13:705:14 | (unsigned int)... | 1.0 | +| test.c:705:13:705:16 | (int)... | 1.0 | +| test.c:705:13:705:16 | ... * ... | 1.0 | +| test.c:705:16:705:16 | b | 1.0 | +| test.c:706:5:706:9 | total | 1.0 | +| test.c:706:5:706:14 | ... += ... | 1.0 | +| test.c:706:14:706:14 | r | 1.0 | +| test.c:708:7:708:7 | 0 | 1.0 | +| test.c:708:7:708:7 | (unsigned int)... | 1.0 | +| test.c:708:7:708:12 | ... <= ... | 1.0 | +| test.c:708:7:708:23 | ... && ... | 1.0 | +| test.c:708:12:708:12 | b | 2.0 | +| test.c:708:17:708:17 | b | 2.0 | +| test.c:708:17:708:23 | ... <= ... | 1.0 | +| test.c:708:22:708:23 | 23 | 1.0 | +| test.c:708:22:708:23 | (unsigned int)... | 1.0 | +| test.c:709:13:709:14 | 11 | 1.0 | +| test.c:709:13:709:14 | (unsigned int)... | 1.0 | +| test.c:709:13:709:16 | (int)... | 2.0 | +| test.c:709:13:709:16 | ... * ... | 2.0 | +| test.c:709:16:709:16 | b | 2.0 | +| test.c:710:5:710:9 | total | 2.0 | +| test.c:710:5:710:14 | ... += ... | 4.0 | +| test.c:710:14:710:14 | r | 2.0 | +| test.c:712:7:712:8 | 13 | 1.0 | +| test.c:712:7:712:8 | (unsigned int)... | 1.0 | +| test.c:712:7:712:13 | ... <= ... | 1.0 | +| test.c:712:7:712:24 | ... && ... | 1.0 | +| test.c:712:13:712:13 | b | 3.0 | +| test.c:712:18:712:18 | b | 3.0 | +| test.c:712:18:712:24 | ... <= ... | 1.0 | +| test.c:712:23:712:24 | 23 | 1.0 | +| test.c:712:23:712:24 | (unsigned int)... | 1.0 | +| test.c:713:13:713:14 | 11 | 1.0 | +| test.c:713:13:713:14 | (unsigned int)... | 1.0 | +| test.c:713:13:713:16 | (int)... | 3.0 | +| test.c:713:13:713:16 | ... * ... | 3.0 | +| test.c:713:16:713:16 | b | 3.0 | +| test.c:714:5:714:9 | total | 6.0 | +| test.c:714:5:714:14 | ... += ... | 18.0 | +| test.c:714:14:714:14 | r | 3.0 | +| test.c:717:10:717:14 | total | 24.0 | +| test.c:722:3:722:3 | x | 1.0 | +| test.c:722:3:722:22 | ... = ... | 1.0 | +| test.c:722:7:722:7 | y | 1.0 | +| test.c:722:7:722:22 | ... = ... | 1.0 | +| test.c:722:11:722:22 | 1000000003 | 1.0 | +| test.c:723:3:723:4 | xy | 1.0 | +| test.c:723:3:723:12 | ... = ... | 1.0 | +| test.c:723:8:723:8 | x | 1.0 | +| test.c:723:8:723:12 | ... * ... | 1.0 | +| test.c:723:12:723:12 | y | 1.0 | +| test.c:724:10:724:11 | xy | 1.0 | +| test.c:729:3:729:3 | x | 1.0 | +| test.c:729:3:729:14 | ... = ... | 1.0 | +| test.c:729:7:729:14 | 274177 | 1.0 | +| test.c:730:3:730:3 | y | 1.0 | +| test.c:730:3:730:22 | ... = ... | 1.0 | +| test.c:730:7:730:22 | 67280421310721 | 1.0 | +| test.c:731:3:731:4 | xy | 1.0 | +| test.c:731:3:731:12 | ... = ... | 1.0 | +| test.c:731:8:731:8 | x | 1.0 | +| test.c:731:8:731:12 | ... * ... | 1.0 | +| test.c:731:12:731:12 | y | 1.0 | +| test.c:732:10:732:11 | xy | 1.0 | +| test.c:736:7:736:8 | ui | 1.0 | +| test.c:736:7:736:14 | ... >= ... | 1.0 | +| test.c:736:13:736:14 | 10 | 1.0 | +| test.c:736:13:736:14 | (unsigned int)... | 1.0 | +| test.c:737:28:737:44 | (unsigned long)... | 1.0 | +| test.c:737:28:737:49 | ... * ... | 1.0 | +| test.c:737:43:737:44 | ui | 1.0 | +| test.c:737:48:737:49 | (unsigned long)... | 1.0 | +| test.c:737:48:737:49 | ui | 1.0 | +| test.c:738:12:738:17 | result | 1.0 | +| test.c:740:7:740:8 | ul | 1.0 | +| test.c:740:7:740:14 | ... >= ... | 1.0 | +| test.c:740:13:740:14 | 10 | 1.0 | +| test.c:740:13:740:14 | (unsigned long)... | 1.0 | +| test.c:741:28:741:29 | ul | 1.0 | +| test.c:741:28:741:34 | ... * ... | 1.0 | +| test.c:741:33:741:34 | ul | 1.0 | +| test.c:742:12:742:17 | result | 1.0 | +| test.c:744:10:744:10 | 0 | 1.0 | +| test.c:744:10:744:10 | (unsigned long)... | 1.0 | +| test.c:748:7:748:8 | ui | 1.0 | +| test.c:748:7:748:14 | ... <= ... | 1.0 | +| test.c:748:7:748:25 | ... && ... | 1.0 | +| test.c:748:13:748:14 | 10 | 1.0 | +| test.c:748:13:748:14 | (unsigned int)... | 1.0 | +| test.c:748:19:748:20 | ui | 1.0 | +| test.c:748:19:748:25 | ... >= ... | 1.0 | +| test.c:748:25:748:25 | 2 | 1.0 | +| test.c:748:25:748:25 | (unsigned int)... | 1.0 | +| test.c:749:5:749:6 | ui | 1.0 | +| test.c:749:5:749:16 | ... *= ... | 1.0 | +| test.c:749:11:749:12 | ui | 1.0 | +| test.c:749:11:749:16 | ... + ... | 1.0 | +| test.c:749:16:749:16 | 0 | 1.0 | +| test.c:749:16:749:16 | (unsigned int)... | 1.0 | +| test.c:750:12:750:13 | (unsigned long)... | 1.0 | +| test.c:750:12:750:13 | ui | 1.0 | +| test.c:753:26:753:27 | 10 | 1.0 | +| test.c:753:26:753:27 | (unsigned int)... | 1.0 | +| test.c:754:3:754:9 | uiconst | 1.0 | +| test.c:754:3:754:14 | ... *= ... | 1.0 | +| test.c:754:14:754:14 | 4 | 1.0 | +| test.c:754:14:754:14 | (unsigned int)... | 1.0 | +| test.c:756:27:756:28 | 10 | 1.0 | +| test.c:756:27:756:28 | (unsigned long)... | 1.0 | +| test.c:757:3:757:9 | ulconst | 1.0 | +| test.c:757:3:757:14 | ... *= ... | 1.0 | +| test.c:757:14:757:14 | 4 | 1.0 | +| test.c:757:14:757:14 | (unsigned long)... | 1.0 | +| test.c:758:10:758:16 | (unsigned long)... | 1.0 | +| test.c:758:10:758:16 | uiconst | 1.0 | +| test.c:758:10:758:26 | ... + ... | 1.0 | +| test.c:758:20:758:26 | ulconst | 1.0 | +| test.c:762:7:762:7 | i | 1.0 | +| test.c:762:7:762:13 | ... >= ... | 1.0 | +| test.c:762:7:762:23 | ... && ... | 1.0 | +| test.c:762:12:762:13 | - ... | 1.0 | +| test.c:762:13:762:13 | 1 | 1.0 | +| test.c:762:18:762:18 | i | 1.0 | +| test.c:762:18:762:23 | ... <= ... | 1.0 | +| test.c:762:23:762:23 | 2 | 1.0 | +| test.c:763:5:763:5 | i | 1.0 | +| test.c:763:5:763:13 | ... = ... | 1.0 | +| test.c:763:9:763:9 | 5 | 1.0 | +| test.c:763:9:763:13 | ... * ... | 1.0 | +| test.c:763:13:763:13 | i | 1.0 | +| test.c:764:9:764:9 | i | 1.0 | +| test.c:766:5:766:5 | i | 1.0 | +| test.c:766:5:766:14 | ... = ... | 1.0 | +| test.c:766:9:766:9 | i | 1.0 | +| test.c:766:9:766:14 | ... * ... | 1.0 | +| test.c:766:13:766:14 | - ... | 1.0 | +| test.c:766:14:766:14 | 3 | 1.0 | +| test.c:767:9:767:9 | i | 1.0 | +| test.c:769:5:769:5 | i | 1.0 | +| test.c:769:5:769:10 | ... *= ... | 1.0 | +| test.c:769:10:769:10 | 7 | 1.0 | +| test.c:770:9:770:9 | i | 1.0 | +| test.c:772:5:772:5 | i | 1.0 | +| test.c:772:5:772:12 | ... *= ... | 1.0 | +| test.c:772:10:772:12 | - ... | 1.0 | +| test.c:772:11:772:12 | 11 | 1.0 | +| test.c:773:9:773:9 | i | 1.0 | +| test.c:775:7:775:7 | i | 2.0 | +| test.c:775:7:775:13 | ... == ... | 1.0 | +| test.c:775:12:775:13 | - ... | 1.0 | +| test.c:775:13:775:13 | 1 | 1.0 | +| test.c:776:5:776:5 | i | 1.0 | +| test.c:776:5:776:27 | ... = ... | 2.0 | +| test.c:776:9:776:9 | i | 2.0 | +| test.c:776:9:776:27 | ... * ... | 2.0 | +| test.c:776:13:776:27 | (int)... | 1.0 | +| test.c:776:18:776:27 | 4294967295 | 1.0 | +| test.c:777:9:777:9 | i | 2.0 | +| test.c:779:3:779:3 | i | 1.0 | +| test.c:779:3:779:12 | ... = ... | 4.0 | +| test.c:779:7:779:7 | i | 4.0 | +| test.c:779:7:779:12 | ... * ... | 4.0 | +| test.c:779:11:779:12 | - ... | 1.0 | +| test.c:779:12:779:12 | 1 | 1.0 | +| test.c:780:10:780:10 | i | 4.0 | +| test.c:782:20:782:20 | 1 | 1.0 | +| test.c:782:20:782:20 | (signed char)... | 1.0 | +| test.c:783:3:783:3 | i | 1.0 | +| test.c:783:3:783:17 | ... = ... | 1.0 | +| test.c:783:7:783:17 | (...) | 1.0 | +| test.c:783:7:783:17 | (int)... | 1.0 | +| test.c:783:8:783:11 | * ... | 1.0 | +| test.c:783:8:783:16 | ... *= ... | 1.0 | +| test.c:783:10:783:11 | sc | 1.0 | +| test.c:783:16:783:16 | 2 | 1.0 | +| test.c:785:7:785:7 | i | 1.0 | +| test.c:787:10:787:10 | 0 | 1.0 | +| test.c:792:7:792:7 | (int)... | 1.0 | +| test.c:792:7:792:7 | n | 1.0 | +| test.c:794:7:794:7 | n | 1.0 | +| test.c:794:7:794:11 | ... > ... | 1.0 | +| test.c:794:11:794:11 | 0 | 1.0 | +| test.c:794:11:794:11 | (unsigned int)... | 1.0 | +| test.c:795:9:795:9 | (int)... | 1.0 | +| test.c:795:9:795:9 | n | 1.0 | +| test.c:798:7:798:7 | n | 2.0 | +| test.c:798:7:798:12 | ... != ... | 1.0 | +| test.c:798:12:798:12 | 0 | 1.0 | +| test.c:798:12:798:12 | (unsigned int)... | 1.0 | +| test.c:799:9:799:9 | (int)... | 2.0 | +| test.c:799:9:799:9 | n | 2.0 | +| test.c:801:9:801:9 | (int)... | 2.0 | +| test.c:801:9:801:9 | n | 2.0 | +| test.c:804:7:804:8 | ! ... | 1.0 | +| test.c:804:8:804:8 | n | 4.0 | +| test.c:805:9:805:9 | (int)... | 4.0 | +| test.c:805:9:805:9 | n | 4.0 | +| test.c:807:9:807:9 | (int)... | 4.0 | +| test.c:807:9:807:9 | n | 4.0 | +| test.c:810:10:810:10 | n | 13.0 | +| test.c:810:10:810:15 | ... != ... | 1.0 | +| test.c:810:15:810:15 | 0 | 1.0 | +| test.c:810:15:810:15 | (unsigned int)... | 1.0 | +| test.c:811:5:811:5 | n | 13.0 | +| test.c:811:5:811:7 | ... -- | 13.0 | +| test.c:814:7:814:7 | (int)... | 13.0 | +| test.c:814:7:814:7 | n | 13.0 | +| test.c:818:7:818:7 | (int)... | 1.0 | +| test.c:818:7:818:7 | n | 1.0 | +| test.c:818:7:818:11 | ... < ... | 1.0 | +| test.c:818:11:818:11 | 0 | 1.0 | +| test.c:821:7:821:7 | (int)... | 1.0 | +| test.c:821:7:821:7 | n | 1.0 | +| test.c:821:7:821:12 | ... == ... | 1.0 | +| test.c:821:12:821:12 | 0 | 1.0 | +| test.c:822:9:822:9 | (int)... | 1.0 | +| test.c:822:9:822:9 | n | 1.0 | +| test.c:824:9:824:9 | (int)... | 1.0 | +| test.c:824:9:824:9 | n | 1.0 | +| test.c:827:7:827:7 | n | 2.0 | +| test.c:828:9:828:9 | (int)... | 2.0 | +| test.c:828:9:828:9 | n | 2.0 | +| test.c:830:9:830:9 | (int)... | 2.0 | +| test.c:830:9:830:9 | n | 2.0 | +| test.c:833:10:833:10 | (int)... | 13.0 | +| test.c:833:10:833:10 | n | 12.0 | +| test.c:833:10:833:15 | ... != ... | 1.0 | +| test.c:833:15:833:15 | 0 | 1.0 | +| test.c:834:5:834:5 | n | 12.0 | +| test.c:834:5:834:7 | ... -- | 12.0 | +| test.c:837:7:837:7 | (int)... | 12.0 | +| test.c:837:7:837:7 | n | 12.0 | +| test.c:841:7:841:7 | (int)... | 1.0 | +| test.c:841:7:841:7 | n | 1.0 | +| test.c:841:7:841:12 | ... != ... | 1.0 | +| test.c:841:12:841:12 | 0 | 1.0 | +| test.c:842:9:842:9 | (int)... | 1.0 | +| test.c:842:9:842:9 | n | 1.0 | +| test.c:842:9:842:14 | ... >= ... | 1.0 | +| test.c:842:14:842:14 | 0 | 1.0 | +| test.c:843:11:843:11 | (int)... | 1.0 | +| test.c:843:11:843:11 | n | 1.0 | +| test.c:847:7:847:7 | (int)... | 2.0 | +| test.c:847:7:847:7 | n | 2.0 | +| test.c:847:7:847:12 | ... >= ... | 1.0 | +| test.c:847:12:847:12 | 5 | 1.0 | +| test.c:848:9:848:9 | 2 | 1.0 | +| test.c:848:9:848:13 | ... * ... | 2.0 | +| test.c:848:9:848:18 | ... - ... | 2.0 | +| test.c:848:9:848:23 | ... == ... | 1.0 | +| test.c:848:13:848:13 | (int)... | 2.0 | +| test.c:848:13:848:13 | n | 2.0 | +| test.c:848:17:848:18 | 10 | 1.0 | +| test.c:848:23:848:23 | 0 | 1.0 | +| test.c:851:9:851:9 | (int)... | 2.0 | +| test.c:851:9:851:9 | n | 2.0 | +| test.c:854:7:854:7 | (int)... | 3.0 | +| test.c:854:7:854:7 | n | 3.0 | +| test.c:854:7:854:17 | ... != ... | 1.0 | +| test.c:854:7:854:32 | ... && ... | 1.0 | +| test.c:854:12:854:17 | - ... | 1.0 | +| test.c:854:13:854:17 | 32768 | 1.0 | +| test.c:854:22:854:22 | (int)... | 3.0 | +| test.c:854:22:854:22 | n | 3.0 | +| test.c:854:22:854:32 | ... != ... | 1.0 | +| test.c:854:27:854:32 | - ... | 1.0 | +| test.c:854:28:854:32 | 32767 | 1.0 | +| test.c:855:9:855:9 | (int)... | 3.0 | +| test.c:855:9:855:9 | n | 3.0 | +| test.c:858:7:858:7 | (int)... | 4.0 | +| test.c:858:7:858:7 | n | 4.0 | +| test.c:858:7:858:12 | ... >= ... | 1.0 | +| test.c:858:12:858:12 | 0 | 1.0 | +| test.c:859:5:859:5 | n | 4.0 | +| test.c:859:5:859:14 | ... ? ... : ... | 16.0 | +| test.c:859:10:859:10 | (int)... | 4.0 | +| test.c:859:10:859:10 | n | 4.0 | +| test.c:859:14:859:14 | (int)... | 4.0 | +| test.c:859:14:859:14 | n | 4.0 | +| test.c:860:5:860:6 | ! ... | 1.0 | +| test.c:860:5:860:14 | ... ? ... : ... | 64.0 | +| test.c:860:6:860:6 | n | 8.0 | +| test.c:860:10:860:10 | (int)... | 8.0 | +| test.c:860:10:860:10 | n | 8.0 | +| test.c:860:14:860:14 | (int)... | 8.0 | +| test.c:860:14:860:14 | n | 8.0 | +| test.c:871:7:871:8 | (unsigned long)... | 1.0 | +| test.c:871:7:871:8 | ss | 1.0 | +| test.c:871:7:871:22 | ... < ... | 1.0 | +| test.c:871:12:871:22 | sizeof(int) | 1.0 | +| test.c:872:9:872:10 | (int)... | 1.0 | +| test.c:872:9:872:10 | ss | 1.0 | +| test.c:875:7:875:8 | (int)... | 2.0 | +| test.c:875:7:875:8 | ss | 2.0 | +| test.c:875:7:875:17 | ... < ... | 1.0 | +| test.c:875:12:875:17 | 32769 | 1.0 | +| test.c:876:9:876:10 | (int)... | 2.0 | +| test.c:876:9:876:10 | ss | 2.0 | +| test.c:879:7:879:15 | (int)... | 1.0 | +| test.c:879:7:879:15 | (short)... | 1.0 | +| test.c:879:7:879:20 | ... >= ... | 1.0 | +| test.c:879:14:879:15 | us | 1.0 | +| test.c:879:20:879:20 | 0 | 1.0 | +| test.c:880:9:880:10 | (int)... | 1.0 | +| test.c:880:9:880:10 | us | 1.0 | +| test.c:883:7:883:15 | (int)... | 2.0 | +| test.c:883:7:883:15 | (short)... | 2.0 | +| test.c:883:7:883:21 | ... >= ... | 1.0 | +| test.c:883:14:883:15 | us | 2.0 | +| test.c:883:20:883:21 | - ... | 1.0 | +| test.c:883:21:883:21 | 1 | 1.0 | +| test.c:884:9:884:10 | (int)... | 2.0 | +| test.c:884:9:884:10 | us | 2.0 | +| test.c:887:7:887:8 | (unsigned long)... | 3.0 | +| test.c:887:7:887:8 | ss | 3.0 | +| test.c:887:7:887:23 | ... >= ... | 1.0 | +| test.c:887:13:887:23 | sizeof(int) | 1.0 | +| test.c:888:9:888:10 | (int)... | 3.0 | +| test.c:888:9:888:10 | ss | 3.0 | +| test.c:891:7:891:8 | (int)... | 4.0 | +| test.c:891:7:891:8 | ss | 4.0 | +| test.c:891:7:891:12 | (unsigned long)... | 4.0 | +| test.c:891:7:891:12 | ... + ... | 4.0 | +| test.c:891:7:891:26 | ... < ... | 1.0 | +| test.c:891:12:891:12 | 1 | 1.0 | +| test.c:891:16:891:26 | sizeof(int) | 1.0 | +| test.c:892:9:892:10 | (int)... | 4.0 | +| test.c:892:9:892:10 | ss | 4.0 | +| test.c:898:8:898:8 | s | 1.0 | +| test.c:898:8:898:12 | ... = ... | 1.0 | +| test.c:898:12:898:12 | 0 | 1.0 | +| test.c:898:15:898:15 | s | 13.0 | +| test.c:898:15:898:20 | ... < ... | 1.0 | +| test.c:898:19:898:20 | 10 | 1.0 | +| test.c:898:23:898:23 | s | 13.0 | +| test.c:898:23:898:25 | ... ++ | 13.0 | +| test.c:899:18:899:18 | s | 13.0 | +| test.c:899:18:899:22 | ... + ... | 13.0 | +| test.c:899:22:899:22 | s | 13.0 | +| test.c:900:9:900:14 | result | 13.0 | +| test.c:905:10:905:11 | 0 | 1.0 | +| test.c:906:7:906:7 | i | 1.0 | +| test.c:906:7:906:11 | ... < ... | 1.0 | +| test.c:906:11:906:11 | 0 | 1.0 | +| test.c:907:9:907:9 | i | 1.0 | +| test.c:910:20:910:20 | 0 | 1.0 | +| test.c:910:20:910:20 | (unsigned int)... | 1.0 | +| test.c:911:7:911:7 | u | 1.0 | +| test.c:911:7:911:11 | ... < ... | 1.0 | +| test.c:911:11:911:11 | 0 | 1.0 | +| test.c:911:11:911:11 | (unsigned int)... | 1.0 | +| test.c:912:9:912:9 | (int)... | 1.0 | +| test.c:912:9:912:9 | u | 1.0 | +| test.c:917:12:917:12 | s | 1.0 | +| test.c:917:12:917:16 | ... % ... | 1.0 | +| test.c:917:16:917:16 | 5 | 1.0 | +| test.c:918:7:918:8 | s2 | 1.0 | +| test.c:923:7:923:7 | x | 1.0 | +| test.c:924:9:924:9 | y | 1.0 | +| test.c:924:9:924:14 | ... != ... | 1.0 | +| test.c:924:14:924:14 | 0 | 1.0 | +| test.c:925:12:925:12 | 0 | 1.0 | +| test.c:928:7:928:7 | y | 2.0 | +| test.c:937:7:937:7 | x | 1.0 | +| test.c:937:7:937:13 | ... >= ... | 1.0 | +| test.c:937:12:937:13 | 10 | 1.0 | +| test.c:942:7:942:7 | x | 13.0 | +| test.c:947:16:947:26 | 2147483647 | 1.0 | +| test.c:948:16:948:19 | 256 | 1.0 | +| test.c:949:7:949:13 | (...) | 1.0 | +| test.c:949:7:949:20 | ... <= ... | 1.0 | +| test.c:949:8:949:8 | x | 1.0 | +| test.c:949:8:949:12 | ... + ... | 1.0 | +| test.c:949:12:949:12 | y | 1.0 | +| test.c:949:18:949:20 | 512 | 1.0 | +| test.c:950:9:950:9 | x | 1.0 | +| test.c:951:9:951:9 | y | 1.0 | +| test.cpp:9:11:9:12 | - ... | 1.0 | +| test.cpp:9:12:9:12 | 1 | 1.0 | +| test.cpp:10:7:10:7 | (bool)... | 1.0 | +| test.cpp:10:7:10:7 | b | 1.0 | +| test.cpp:11:5:11:5 | x | 1.0 | +| test.cpp:11:5:11:14 | ... = ... | 1.0 | +| test.cpp:11:12:11:12 | call to operator[] | 1.0 | +| test.cpp:11:12:11:14 | (reference dereference) | 1.0 | +| test.cpp:11:13:11:13 | 3 | 1.0 | +| test.cpp:13:10:13:10 | x | 2.0 | +| test.cpp:18:12:18:31 | (int)... | 1.0 | +| test.cpp:18:12:18:31 | static_cast... | 1.0 | +| test.cpp:18:30:18:30 | x | 1.0 | +| test.cpp:19:10:19:11 | x0 | 1.0 | +| test.cpp:27:7:27:7 | y | 1.0 | +| test.cpp:27:7:27:12 | ... == ... | 1.0 | +| test.cpp:27:12:27:12 | 0 | 1.0 | +| test.cpp:28:5:28:5 | x | 1.0 | +| test.cpp:28:5:28:9 | ... = ... | 1.0 | +| test.cpp:28:9:28:9 | 0 | 1.0 | +| test.cpp:30:7:30:7 | y | 2.0 | +| test.cpp:30:7:30:13 | ... == ... | 1.0 | +| test.cpp:30:12:30:13 | - ... | 1.0 | +| test.cpp:30:13:30:13 | 1 | 1.0 | +| test.cpp:31:5:31:5 | x | 1.0 | +| test.cpp:31:5:31:10 | ... = ... | 1.0 | +| test.cpp:31:9:31:10 | - ... | 1.0 | +| test.cpp:31:10:31:10 | 1 | 1.0 | +| test.cpp:33:7:33:7 | y | 4.0 | +| test.cpp:33:7:33:12 | ... == ... | 1.0 | +| test.cpp:33:12:33:12 | 1 | 1.0 | +| test.cpp:34:5:34:5 | x | 1.0 | +| test.cpp:34:5:34:9 | ... = ... | 1.0 | +| test.cpp:34:9:34:9 | 1 | 1.0 | +| test.cpp:36:7:36:7 | y | 8.0 | +| test.cpp:36:7:36:15 | ... == ... | 1.0 | +| test.cpp:36:12:36:15 | - ... | 1.0 | +| test.cpp:36:13:36:15 | 128 | 1.0 | +| test.cpp:37:5:37:5 | x | 1.0 | +| test.cpp:37:5:37:12 | ... = ... | 1.0 | +| test.cpp:37:9:37:12 | - ... | 1.0 | +| test.cpp:37:10:37:12 | 128 | 1.0 | +| test.cpp:39:7:39:7 | y | 16.0 | +| test.cpp:39:7:39:14 | ... == ... | 1.0 | +| test.cpp:39:12:39:14 | 128 | 1.0 | +| test.cpp:40:5:40:5 | x | 1.0 | +| test.cpp:40:5:40:11 | ... = ... | 1.0 | +| test.cpp:40:9:40:11 | 128 | 1.0 | +| test.cpp:42:7:42:7 | y | 32.0 | +| test.cpp:42:7:42:16 | ... == ... | 1.0 | +| test.cpp:42:12:42:16 | - ... | 1.0 | +| test.cpp:42:13:42:16 | 1024 | 1.0 | +| test.cpp:43:5:43:5 | x | 1.0 | +| test.cpp:43:5:43:13 | ... = ... | 1.0 | +| test.cpp:43:9:43:13 | - ... | 1.0 | +| test.cpp:43:10:43:13 | 1024 | 1.0 | +| test.cpp:45:7:45:7 | y | 64.0 | +| test.cpp:45:7:45:15 | ... == ... | 1.0 | +| test.cpp:45:12:45:15 | 1024 | 1.0 | +| test.cpp:46:5:46:5 | x | 1.0 | +| test.cpp:46:5:46:12 | ... = ... | 1.0 | +| test.cpp:46:9:46:12 | 1024 | 1.0 | +| test.cpp:49:10:49:11 | 0 | 1.0 | +| test.cpp:51:7:51:7 | x | 8.0 | +| test.cpp:51:7:51:12 | ... == ... | 1.0 | +| test.cpp:51:12:51:12 | 0 | 1.0 | +| test.cpp:52:15:52:21 | (bool)... | 1.0 | +| test.cpp:52:21:52:21 | x | 8.0 | +| test.cpp:53:5:53:5 | t | 1.0 | +| test.cpp:53:5:53:16 | ... += ... | 8.0 | +| test.cpp:53:10:53:16 | (int)... | 8.0 | +| test.cpp:53:15:53:16 | xb | 8.0 | +| test.cpp:56:7:56:7 | x | 16.0 | +| test.cpp:56:7:56:11 | ... > ... | 1.0 | +| test.cpp:56:11:56:11 | 0 | 1.0 | +| test.cpp:57:15:57:21 | (bool)... | 1.0 | +| test.cpp:57:21:57:21 | x | 16.0 | +| test.cpp:58:5:58:5 | t | 9.0 | +| test.cpp:58:5:58:16 | ... += ... | 144.0 | +| test.cpp:58:10:58:16 | (int)... | 16.0 | +| test.cpp:58:15:58:16 | xb | 16.0 | +| test.cpp:61:7:61:7 | x | 17.0 | +| test.cpp:61:7:61:11 | ... < ... | 1.0 | +| test.cpp:61:11:61:11 | 0 | 1.0 | +| test.cpp:62:15:62:21 | (bool)... | 1.0 | +| test.cpp:62:21:62:21 | x | 17.0 | +| test.cpp:63:5:63:5 | t | 153.0 | +| test.cpp:63:5:63:16 | ... += ... | 2601.0 | +| test.cpp:63:10:63:16 | (int)... | 17.0 | +| test.cpp:63:15:63:16 | xb | 17.0 | +| test.cpp:66:13:66:19 | (bool)... | 1.0 | +| test.cpp:66:19:66:19 | x | 18.0 | +| test.cpp:67:3:67:3 | t | 2754.0 | +| test.cpp:67:3:67:14 | ... += ... | 49572.0 | +| test.cpp:67:8:67:14 | (int)... | 18.0 | +| test.cpp:67:13:67:14 | xb | 18.0 | +| test.cpp:69:10:69:10 | b | 1.0 | +| test.cpp:69:10:69:21 | ... \|\| ... | 1.0 | +| test.cpp:69:15:69:21 | (bool)... | 1.0 | +| test.cpp:69:21:69:21 | t | 49572.0 | +| test.cpp:74:30:74:30 | (int)... | 1.0 | +| test.cpp:74:30:74:30 | c | 1.0 | +| test.cpp:74:30:74:34 | (unsigned short)... | 1.0 | +| test.cpp:74:30:74:34 | ... + ... | 1.0 | +| test.cpp:74:34:74:34 | (int)... | 1.0 | +| test.cpp:74:34:74:34 | c | 1.0 | +| test.cpp:75:7:75:30 | (int)... | 1.0 | +| test.cpp:75:7:75:30 | (unsigned char)... | 1.0 | +| test.cpp:75:7:75:35 | ... == ... | 1.0 | +| test.cpp:75:22:75:30 | c_times_2 | 1.0 | +| test.cpp:75:35:75:35 | 0 | 1.0 | +| test.cpp:77:5:77:13 | c_times_2 | 1.0 | +| test.cpp:79:3:79:11 | c_times_2 | 1.0 | +| test.cpp:83:16:83:22 | (reference dereference) | 1.0 | +| test.cpp:83:16:83:22 | (reference to) | 1.0 | +| test.cpp:83:16:83:22 | aliased | 1.0 | +| test.cpp:85:7:85:7 | (reference dereference) | 1.0 | +| test.cpp:85:7:85:7 | i | 1.0 | +| test.cpp:85:7:85:12 | ... >= ... | 1.0 | +| test.cpp:85:12:85:12 | 2 | 1.0 | +| test.cpp:86:12:86:12 | (reference dereference) | 1.0 | +| test.cpp:86:12:86:12 | i | 1.0 | +| test.cpp:88:7:88:8 | (reference dereference) | 1.0 | +| test.cpp:88:7:88:8 | ci | 1.0 | +| test.cpp:88:7:88:13 | ... >= ... | 1.0 | +| test.cpp:88:13:88:13 | 2 | 1.0 | +| test.cpp:89:12:89:13 | (reference dereference) | 1.0 | +| test.cpp:89:12:89:13 | ci | 1.0 | +| test.cpp:91:7:91:13 | (reference dereference) | 1.0 | +| test.cpp:91:7:91:13 | aliased | 1.0 | +| test.cpp:91:7:91:18 | ... >= ... | 1.0 | +| test.cpp:91:18:91:18 | 2 | 1.0 | +| test.cpp:92:12:92:18 | (reference dereference) | 1.0 | +| test.cpp:92:12:92:18 | aliased | 1.0 | +| test.cpp:94:7:94:11 | (reference dereference) | 1.0 | +| test.cpp:94:7:94:11 | alias | 1.0 | +| test.cpp:94:7:94:16 | ... >= ... | 1.0 | +| test.cpp:94:16:94:16 | 2 | 1.0 | +| test.cpp:95:12:95:16 | (reference dereference) | 1.0 | +| test.cpp:95:12:95:16 | alias | 1.0 | +| test.cpp:97:10:97:10 | (reference dereference) | 13.0 | +| test.cpp:97:10:97:19 | ... <= ... | 1.0 | +| test.cpp:97:15:97:19 | 12345 | 1.0 | +| test.cpp:97:22:97:22 | (reference dereference) | 13.0 | +| test.cpp:97:22:97:24 | ... ++ | 13.0 | +| test.cpp:98:5:98:5 | (reference dereference) | 1.0 | +| test.cpp:98:5:98:5 | i | 1.0 | +| test.cpp:98:5:98:9 | ... = ... | 13.0 | +| test.cpp:98:9:98:9 | (reference dereference) | 13.0 | +| test.cpp:99:5:99:5 | (reference dereference) | 13.0 | +| test.cpp:102:10:102:10 | 0 | 1.0 | +| test.cpp:106:7:106:7 | (int)... | 1.0 | +| test.cpp:106:7:106:7 | n | 1.0 | +| test.cpp:106:7:106:11 | ... < ... | 1.0 | +| test.cpp:106:11:106:11 | 0 | 1.0 | +| test.cpp:109:7:109:7 | (bool)... | 1.0 | +| test.cpp:109:7:109:7 | n | 1.0 | +| test.cpp:110:5:110:5 | n | 1.0 | +| test.cpp:112:5:112:5 | n | 1.0 | +| test.cpp:115:7:115:8 | ! ... | 1.0 | +| test.cpp:115:8:115:8 | (bool)... | 1.0 | +| test.cpp:115:8:115:8 | n | 2.0 | +| test.cpp:116:5:116:5 | n | 2.0 | +| test.cpp:118:5:118:5 | n | 2.0 | +| test.cpp:121:3:121:3 | (bool)... | 1.0 | +| test.cpp:121:3:121:3 | n | 4.0 | +| test.cpp:121:3:121:12 | ... ? ... : ... | 16.0 | +| test.cpp:121:8:121:8 | n | 4.0 | +| test.cpp:121:12:121:12 | n | 4.0 | +| test.cpp:122:3:122:4 | ! ... | 1.0 | +| test.cpp:122:3:122:12 | ... ? ... : ... | 64.0 | +| test.cpp:122:4:122:4 | (bool)... | 1.0 | +| test.cpp:122:4:122:4 | n | 8.0 | +| test.cpp:122:8:122:8 | n | 8.0 | +| test.cpp:122:12:122:12 | n | 8.0 | diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.ql b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.ql new file mode 100644 index 000000000000..efafcf6e684b --- /dev/null +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.ql @@ -0,0 +1,31 @@ +import cpp +import utils.test.InlineExpectationsTest +import semmle.code.cpp.rangeanalysis.SimpleRangeAnalysis + +query predicate estimateNrOfBounds(Expr e, float nrOfBounds) { + nrOfBounds = SimpleRangeAnalysisInternal::estimateNrOfBounds(e) +} + +/** + * Finds any expressions for which `nrOfBounds` is not functional. The result + * should be empty, so this predicate is useful to debug non-functional cases. + */ +private predicate nonFunctionalNrOfBounds(Expr e) { + strictcount(SimpleRangeAnalysisInternal::estimateNrOfBounds(e)) > 1 +} + +module FunctionalityTest implements TestSig { + string getARelevantTag() { result = "nonFunctionalNrOfBounds" } + + predicate hasActualResult(Location location, string element, string tag, string value) { + exists(Expr e | + nonFunctionalNrOfBounds(e) and + location = e.getLocation() and + element = e.toString() and + tag = "nonFunctionalNrOfBounds" and + value = "" + ) + } +} + +import MakeTest diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryLower.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryLower.expected index 0cd2437e0730..48925507106d 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryLower.expected +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryLower.expected @@ -72,8 +72,77 @@ | test.c:405:22:405:82 | ... ? ... : ... | 0.13204114 | 0.42186276 | 0.13204114 | | test.c:405:26:405:69 | ... ? ... : ... | 0.42186276 | 0.42186276 | 0.44996679 | | test.c:405:30:405:56 | ... ? ... : ... | 0.42186276 | 0.42186276 | 0.53843358 | -| test.c:418:20:418:36 | ... ? ... : ... | 0.0 | 0.0 | 100.0 | -| test.c:630:5:630:14 | ... ? ... : ... | 0.0 | 1.0 | 0.0 | -| test.c:631:5:631:14 | ... ? ... : ... | 0.0 | 0.0 | 1.0 | +| test.c:447:4:621:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:447:5:449:49 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:450:6:532:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:451:8:469:41 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:454:10:458:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:454:31:454:79 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:456:13:458:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:463:12:468:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:464:12:464:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:466:15:468:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:470:6:489:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:473:8:477:19 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:473:29:473:77 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:475:11:477:19 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:478:6:478:54 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:482:10:486:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:482:31:482:79 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:484:13:486:21 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:487:9:489:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:491:10:510:43 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:494:12:499:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:495:12:495:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:497:15:499:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:504:14:509:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:505:14:505:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:507:17:509:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:511:9:532:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:514:14:519:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:515:14:515:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:517:17:519:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:520:12:520:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:524:12:529:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:525:12:525:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:527:15:529:23 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:530:11:532:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:533:9:535:51 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:536:9:621:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:537:14:556:47 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:540:16:545:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:541:16:541:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:543:19:545:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:550:18:555:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:551:18:551:66 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:553:21:555:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:557:12:578:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:560:14:565:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:561:14:561:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:563:17:565:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:566:12:566:60 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:570:16:575:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:571:16:571:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:573:19:575:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:576:15:578:29 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:580:12:599:45 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:583:14:588:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:584:14:584:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:586:17:588:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:593:16:598:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:594:16:594:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:596:19:598:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:600:11:621:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:603:16:608:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:604:16:604:64 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:606:19:608:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:609:14:609:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:613:14:618:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:614:14:614:62 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:616:17:618:25 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:619:13:621:27 | ... ? ... : ... | 0.0 | 0.0 | 0.0 | +| test.c:647:20:647:36 | ... ? ... : ... | 0.0 | 0.0 | 100.0 | +| test.c:859:5:859:14 | ... ? ... : ... | 0.0 | 1.0 | 0.0 | +| test.c:860:5:860:14 | ... ? ... : ... | 0.0 | 0.0 | 1.0 | | test.cpp:121:3:121:12 | ... ? ... : ... | 0.0 | 1.0 | 0.0 | | test.cpp:122:3:122:12 | ... ? ... : ... | 0.0 | 0.0 | 1.0 | diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryUpper.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryUpper.expected index b34beda10d42..9c5dec067a67 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryUpper.expected +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/ternaryUpper.expected @@ -72,8 +72,77 @@ | test.c:405:22:405:82 | ... ? ... : ... | 0.53843358 | 0.53843358 | 0.13204114 | | test.c:405:26:405:69 | ... ? ... : ... | 0.53843358 | 0.53843358 | 0.44996679 | | test.c:405:30:405:56 | ... ? ... : ... | 0.53843358 | 0.42186276 | 0.53843358 | -| test.c:418:20:418:36 | ... ? ... : ... | 100.0 | 99.0 | 100.0 | -| test.c:630:5:630:14 | ... ? ... : ... | 32767.0 | 32767.0 | 0.0 | -| test.c:631:5:631:14 | ... ? ... : ... | 32767.0 | 0.0 | 32767.0 | +| test.c:447:4:621:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:447:5:449:49 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:450:6:532:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:451:8:469:41 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:454:10:458:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:454:31:454:79 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:456:13:458:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:463:12:468:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:464:12:464:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:466:15:468:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:470:6:489:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:473:8:477:19 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:473:29:473:77 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:475:11:477:19 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:478:6:478:54 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:482:10:486:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:482:31:482:79 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:484:13:486:21 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:487:9:489:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:491:10:510:43 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:494:12:499:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:495:12:495:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:497:15:499:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:504:14:509:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:505:14:505:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:507:17:509:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:511:9:532:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:514:14:519:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:515:14:515:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:517:17:519:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:520:12:520:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:524:12:529:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:525:12:525:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:527:15:529:23 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:530:11:532:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:533:9:535:51 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:536:9:621:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:537:14:556:47 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:540:16:545:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:541:16:541:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:543:19:545:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:550:18:555:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:551:18:551:66 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:553:21:555:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:557:12:578:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:560:14:565:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:561:14:561:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:563:17:565:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:566:12:566:60 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:570:16:575:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:571:16:571:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:573:19:575:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:576:15:578:29 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:580:12:599:45 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:583:14:588:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:584:14:584:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:586:17:588:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:593:16:598:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:594:16:594:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:596:19:598:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:600:11:621:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:603:16:608:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:604:16:604:64 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:606:19:608:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:609:14:609:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:613:14:618:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:614:14:614:62 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:616:17:618:25 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:619:13:621:27 | ... ? ... : ... | 4.294967295E9 | 4.294967295E9 | 4.294967295E9 | +| test.c:647:20:647:36 | ... ? ... : ... | 100.0 | 99.0 | 100.0 | +| test.c:859:5:859:14 | ... ? ... : ... | 32767.0 | 32767.0 | 0.0 | +| test.c:860:5:860:14 | ... ? ... : ... | 32767.0 | 0.0 | 32767.0 | | test.cpp:121:3:121:12 | ... ? ... : ... | 32767.0 | 32767.0 | 0.0 | | test.cpp:122:3:122:12 | ... ? ... : ... | 32767.0 | 0.0 | 32767.0 | diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c index 26e6a49e6f64..3cb3c761f47c 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c @@ -413,6 +413,235 @@ double test_ternary_nested_of_literals(double m, double n, double o, double p, d return output; } +int repeated_if_statements(unsigned int rhs) { + // Test how many bounds we estimate for `if` statements without `else` + // branches where the following node is both a normal phi node and a guard phi + // node. + if (rhs < 12) { rhs << 1; } + if (rhs < 13) { rhs << 1; } + if (rhs < 14) { rhs << 1; } + if (rhs < 15) { rhs << 1; } + if (rhs < 16) { rhs << 1; } + return rhs; // rhs has 6 bounds +} + +int ne_phi_nodes(int a, int b) { + if (a == 17) { + if (b == 23) { + a += b; + } + if (a == 18) { + b = 10; + } + } + // The statement below is an NE phi node for the access `a` in both `a == 17` + // and `a == 18`. + int c = a + b; + return a + b; +} + +unsigned int conditional_nested_guards(unsigned int ip) { + // This tests a combinatorial explosion that can happen from a large number of + // nested linear guards. + unsigned int special_number = + (14 * ip > (2 * ip + 1) * 17 + (2 * ip + 1 + 1) * 17 + ? 14 * ip + : (2 * ip + 1) * 14 + (2 * ip + 1 + 1) * 17) > + (2 * (ip * 14 + 32) + + (4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > (17 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) > + 2 * ip * 14 + (2 * ip + 1) * 17 + ? 4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) + : 2 * ip * 14 + (2 * ip + 1) * 17) > + (4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > (17 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) > + (14 * ip > (ip + 1) * 17 ? 17 * ip : (ip + 1) * 17) + ? 4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > (17 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) + : 14 * ip > (ip + 1) * 17 + ? 14 * ip + : (ip + 1) * 14) + ? 2 * (ip * 14 + 32) + + (4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) > + 2 * ip * 14 + (2 * ip + 1) * 17 + ? 4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) + : 2 * ip * 14 + (2 * ip + 1) * 17) + : 4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) > + (14 * ip > (ip + 1) * 17 ? 17 * ip : (ip + 1) * 17) + ? 4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) + : 14 * ip > (ip + 1) * 17 + ? 14 * ip + : (ip + 1) * 14) + ? 14 * ip > (2 * ip + 1) * 17 + (2 * ip + 1 + 1) * 17 + ? 14 * ip + : (2 * ip + 1) * 14 + (2 * ip + 1 + 1) * 17 + : 2 * (ip * 14 + 32) + + (4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) > + 2 * ip * 14 + (2 * ip + 1) * 17 + ? 4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) + : 2 * ip * 14 + (2 * ip + 1) * 17) > + (4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) > + (14 * ip > (ip + 1) * 17 ? 17 * ip : (ip + 1) * 17) + ? 4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) + : 14 * ip > (ip + 1) * 17 + ? 14 * ip + : (ip + 1) * 14) + ? 2 * (ip * 14 + 32) + + (4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) > + 2 * ip * 14 + (2 * ip + 1) * 17 + ? 4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) + : 2 * ip * 14 + (2 * ip + 1) * 17) + : 4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) > + (14 * ip > (ip + 1) * 17 ? 17 * ip : (ip + 1) * 17) + ? 4 * (ip * 14 + 32) + + (2 * ip * 14 + 32) + + 2 * (ip * 14 + 64) + + ((2 * ip + 1) * 14 > + (14 * (2 * ip) > 17 * ip ? 17 * (2 * ip) : 17 * ip) + ? (2 * ip + 1) * 14 + : 14 * (2 * ip) > 17 * ip + ? 14 * (2 * ip) + : 14 * ip) + : 14 * ip > (ip + 1) * 17 + ? 14 * ip + : (ip + 1) * 14; + return special_number; +} + +int many_conditional_assignments(int c1, int c2, int c3, int c4, int c5) { + // This tests a combinatorial explosion that can happen from many conditional + // assignments, since each conditional assignment doubles the number of + // bounds. + int x = 0; + if (c1) { x += 748596; } + if (c2) { x += 84652395; } + if (c3) { x += 3675895; } + if (c4) { x += 98634; } + if (c5) { x += 7834985; } + if (c1 && c2) { x += 938457398; } + if (c1 && c3) { x += 73895648; } + if (c1 && c4) { x += 12345432; } + if (c1 && c5) { x += 38847; } + if (c2 && c3) { x += 234; } + // x now has 2^10 bounds, the 10 additions below give (2^10)^10 bounds + int y = x + x + x + x + x + x + x + x + x + x + x + x; + return y; +} + // Test the comma expression. unsigned int test_comma01(unsigned int x) { unsigned int y = x < 100 ? x : 100; diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/upperBound.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/upperBound.expected index 8696ecfe8d09..7b056a8a3ee5 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/upperBound.expected +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/upperBound.expected @@ -485,197 +485,529 @@ | test.c:411:59:411:59 | k | 0.889553 | | test.c:411:63:411:63 | l | 0.538434 | | test.c:413:10:413:15 | output | 9.284378 | -| test.c:418:20:418:20 | x | 4294967295 | -| test.c:418:30:418:30 | x | 99 | -| test.c:421:3:421:4 | y1 | 4294967295 | -| test.c:421:11:421:11 | y | 100 | -| test.c:421:14:421:14 | y | 101 | -| test.c:422:3:422:4 | y2 | 4294967295 | -| test.c:422:9:422:9 | y | 101 | -| test.c:422:14:422:14 | y | 102 | -| test.c:422:22:422:22 | y | 105 | -| test.c:423:10:423:11 | y1 | 101 | -| test.c:423:15:423:16 | y2 | 105 | -| test.c:431:3:431:3 | i | 2147483647 | -| test.c:432:7:432:7 | i | 10 | -| test.c:434:3:434:3 | i | 2147483647 | -| test.c:435:3:435:3 | i | 10 | -| test.c:436:7:436:7 | i | 20 | -| test.c:438:3:438:3 | i | 2147483647 | -| test.c:439:3:439:3 | i | 40 | -| test.c:440:7:440:7 | i | 30 | -| test.c:442:3:442:3 | i | 2147483647 | -| test.c:442:7:442:7 | j | 2147483647 | -| test.c:443:7:443:7 | i | 40 | -| test.c:445:3:445:3 | i | 2147483647 | -| test.c:445:8:445:8 | j | 40 | -| test.c:446:7:446:7 | i | 50 | -| test.c:448:3:448:3 | i | 2147483647 | -| test.c:448:13:448:13 | j | 50 | -| test.c:449:7:449:7 | i | 60 | -| test.c:456:12:456:12 | a | 4294967295 | -| test.c:456:17:456:17 | a | 4294967295 | -| test.c:456:33:456:33 | b | 4294967295 | -| test.c:456:38:456:38 | b | 4294967295 | -| test.c:457:13:457:13 | a | 11 | -| test.c:457:15:457:15 | b | 23 | -| test.c:458:5:458:9 | total | 0 | -| test.c:458:14:458:14 | r | 253 | -| test.c:460:12:460:12 | a | 4294967295 | -| test.c:460:17:460:17 | a | 4294967295 | -| test.c:460:33:460:33 | b | 4294967295 | -| test.c:460:38:460:38 | b | 4294967295 | -| test.c:461:13:461:13 | a | 11 | -| test.c:461:15:461:15 | b | 23 | -| test.c:462:5:462:9 | total | 253 | -| test.c:462:14:462:14 | r | 253 | -| test.c:464:12:464:12 | a | 4294967295 | -| test.c:464:17:464:17 | a | 4294967295 | -| test.c:464:34:464:34 | b | 4294967295 | -| test.c:464:39:464:39 | b | 4294967295 | -| test.c:465:13:465:13 | a | 11 | -| test.c:465:15:465:15 | b | 23 | -| test.c:466:5:466:9 | total | 506 | -| test.c:466:14:466:14 | r | 253 | -| test.c:469:10:469:14 | total | 759 | -| test.c:475:12:475:12 | b | 4294967295 | -| test.c:475:17:475:17 | b | 4294967295 | -| test.c:476:16:476:16 | b | 23 | -| test.c:477:5:477:9 | total | 0 | -| test.c:477:14:477:14 | r | 253 | -| test.c:479:12:479:12 | b | 4294967295 | -| test.c:479:17:479:17 | b | 4294967295 | -| test.c:480:16:480:16 | b | 23 | -| test.c:481:5:481:9 | total | 253 | -| test.c:481:14:481:14 | r | 253 | -| test.c:483:13:483:13 | b | 4294967295 | -| test.c:483:18:483:18 | b | 4294967295 | -| test.c:484:16:484:16 | b | 23 | -| test.c:485:5:485:9 | total | 506 | -| test.c:485:14:485:14 | r | 253 | -| test.c:488:10:488:14 | total | 759 | -| test.c:493:3:493:3 | x | 18446744073709551616 | -| test.c:493:7:493:7 | y | 18446744073709551616 | -| test.c:494:3:494:4 | xy | 18446744073709551616 | -| test.c:494:8:494:8 | x | 1000000003 | -| test.c:494:12:494:12 | y | 1000000003 | -| test.c:495:10:495:11 | xy | 1000000006000000000 | -| test.c:500:3:500:3 | x | 18446744073709551616 | -| test.c:501:3:501:3 | y | 18446744073709551616 | -| test.c:502:3:502:4 | xy | 18446744073709551616 | -| test.c:502:8:502:8 | x | 274177 | -| test.c:502:12:502:12 | y | 67280421310721 | -| test.c:503:10:503:11 | xy | 18446744073709551616 | -| test.c:507:7:507:8 | ui | 4294967295 | -| test.c:508:43:508:44 | ui | 4294967295 | -| test.c:508:48:508:49 | ui | 4294967295 | -| test.c:509:12:509:17 | result | 18446744065119617024 | -| test.c:511:7:511:8 | ul | 18446744073709551616 | -| test.c:512:28:512:29 | ul | 18446744073709551616 | -| test.c:512:33:512:34 | ul | 18446744073709551616 | -| test.c:513:12:513:17 | result | 18446744073709551616 | -| test.c:519:7:519:8 | ui | 4294967295 | -| test.c:519:19:519:20 | ui | 10 | -| test.c:520:5:520:6 | ui | 10 | -| test.c:520:11:520:12 | ui | 10 | -| test.c:521:12:521:13 | ui | 100 | -| test.c:525:3:525:9 | uiconst | 10 | -| test.c:528:3:528:9 | ulconst | 10 | -| test.c:529:10:529:16 | uiconst | 40 | -| test.c:529:20:529:26 | ulconst | 40 | -| test.c:533:7:533:7 | i | 2147483647 | -| test.c:533:18:533:18 | i | 2147483647 | -| test.c:534:5:534:5 | i | 2147483647 | -| test.c:534:13:534:13 | i | 2 | -| test.c:535:9:535:9 | i | 10 | -| test.c:537:5:537:5 | i | 2147483647 | -| test.c:537:9:537:9 | i | 10 | -| test.c:538:9:538:9 | i | 15 | -| test.c:540:5:540:5 | i | 15 | -| test.c:541:9:541:9 | i | 105 | -| test.c:543:5:543:5 | i | 105 | -| test.c:544:9:544:9 | i | 2310 | -| test.c:546:7:546:7 | i | 2147483647 | -| test.c:547:5:547:5 | i | 2147483647 | -| test.c:547:9:547:9 | i | -1 | -| test.c:548:9:548:9 | i | 1 | -| test.c:550:3:550:3 | i | 2147483647 | -| test.c:550:7:550:7 | i | 2147483647 | -| test.c:551:10:551:10 | i | 2147483647 | -| test.c:554:3:554:3 | i | 2147483647 | -| test.c:554:10:554:11 | sc | 1 | -| test.c:556:7:556:7 | i | 127 | -| test.c:563:7:563:7 | n | 4294967295 | -| test.c:565:7:565:7 | n | 4294967295 | -| test.c:566:9:566:9 | n | 4294967295 | -| test.c:569:7:569:7 | n | 4294967295 | -| test.c:570:9:570:9 | n | 4294967295 | -| test.c:572:9:572:9 | n | 0 | -| test.c:575:8:575:8 | n | 4294967295 | -| test.c:576:9:576:9 | n | 0 | -| test.c:578:9:578:9 | n | 4294967295 | -| test.c:581:10:581:10 | n | 4294967295 | -| test.c:582:5:582:5 | n | 4294967295 | -| test.c:585:7:585:7 | n | 0 | -| test.c:589:7:589:7 | n | 32767 | -| test.c:592:7:592:7 | n | 32767 | -| test.c:593:9:593:9 | n | 0 | -| test.c:595:9:595:9 | n | 32767 | -| test.c:598:7:598:7 | n | 32767 | -| test.c:599:9:599:9 | n | 32767 | -| test.c:601:9:601:9 | n | 0 | -| test.c:604:10:604:10 | n | 32767 | -| test.c:605:5:605:5 | n | 32767 | -| test.c:608:7:608:7 | n | 0 | -| test.c:612:7:612:7 | n | 32767 | -| test.c:613:9:613:9 | n | 32767 | -| test.c:614:11:614:11 | n | 32767 | -| test.c:618:7:618:7 | n | 32767 | -| test.c:619:13:619:13 | n | 32767 | -| test.c:622:9:622:9 | n | 32767 | -| test.c:625:7:625:7 | n | 32767 | -| test.c:625:22:625:22 | n | 32767 | -| test.c:626:9:626:9 | n | 32767 | -| test.c:629:7:629:7 | n | 32767 | -| test.c:630:5:630:5 | n | 32767 | -| test.c:630:10:630:10 | n | 32767 | -| test.c:630:14:630:14 | n | 0 | -| test.c:631:6:631:6 | n | 32767 | -| test.c:631:10:631:10 | n | 0 | -| test.c:631:14:631:14 | n | 32767 | -| test.c:642:7:642:8 | ss | 32767 | -| test.c:643:9:643:10 | ss | 3 | -| test.c:646:7:646:8 | ss | 32767 | -| test.c:647:9:647:10 | ss | 32767 | -| test.c:650:14:650:15 | us | 65535 | -| test.c:651:9:651:10 | us | 32767 | -| test.c:654:14:654:15 | us | 65535 | -| test.c:655:9:655:10 | us | 65535 | -| test.c:658:7:658:8 | ss | 32767 | -| test.c:659:9:659:10 | ss | 32767 | -| test.c:662:7:662:8 | ss | 32767 | -| test.c:663:9:663:10 | ss | 2 | -| test.c:669:8:669:8 | s | 2147483647 | -| test.c:669:15:669:15 | s | 127 | -| test.c:669:23:669:23 | s | 9 | -| test.c:670:18:670:18 | s | 9 | -| test.c:670:22:670:22 | s | 9 | -| test.c:671:9:671:14 | result | 127 | -| test.c:677:7:677:7 | i | 0 | -| test.c:678:9:678:9 | i | 2147483647 | -| test.c:682:7:682:7 | u | 0 | -| test.c:683:9:683:9 | u | 4294967295 | -| test.c:688:12:688:12 | s | 2147483647 | -| test.c:689:7:689:8 | s2 | 4 | -| test.c:694:7:694:7 | x | 2147483647 | -| test.c:695:9:695:9 | y | 2147483647 | -| test.c:699:7:699:7 | y | 2147483647 | -| test.c:708:7:708:7 | x | 2147483647 | -| test.c:713:7:713:7 | x | 15 | -| test.c:720:8:720:8 | x | 2147483647 | -| test.c:720:12:720:12 | y | 256 | -| test.c:721:9:721:9 | x | 2147483647 | -| test.c:722:9:722:9 | y | 256 | +| test.c:420:7:420:9 | rhs | 4294967295 | +| test.c:420:19:420:21 | rhs | 11 | +| test.c:421:7:421:9 | rhs | 4294967295 | +| test.c:421:19:421:21 | rhs | 12 | +| test.c:422:7:422:9 | rhs | 4294967295 | +| test.c:422:19:422:21 | rhs | 13 | +| test.c:423:7:423:9 | rhs | 4294967295 | +| test.c:423:19:423:21 | rhs | 14 | +| test.c:424:7:424:9 | rhs | 4294967295 | +| test.c:424:19:424:21 | rhs | 15 | +| test.c:425:10:425:12 | rhs | 4294967295 | +| test.c:429:7:429:7 | a | 2147483647 | +| test.c:430:9:430:9 | b | 2147483647 | +| test.c:431:7:431:7 | a | 17 | +| test.c:431:12:431:12 | b | 23 | +| test.c:433:9:433:9 | a | 40 | +| test.c:434:7:434:7 | b | 2147483647 | +| test.c:439:11:439:11 | a | 2147483647 | +| test.c:439:15:439:15 | b | 2147483647 | +| test.c:440:10:440:10 | a | 2147483647 | +| test.c:440:14:440:14 | b | 2147483647 | +| test.c:447:10:447:11 | ip | 4294967295 | +| test.c:447:20:447:21 | ip | 4294967295 | +| test.c:447:40:447:41 | ip | 4294967295 | +| test.c:448:14:448:15 | ip | 4294967295 | +| test.c:449:14:449:15 | ip | 4294967295 | +| test.c:449:34:449:35 | ip | 4294967295 | +| test.c:450:11:450:12 | ip | 4294967295 | +| test.c:451:13:451:14 | ip | 4294967295 | +| test.c:452:14:452:15 | ip | 4294967295 | +| test.c:453:14:453:15 | ip | 4294967295 | +| test.c:454:15:454:16 | ip | 4294967295 | +| test.c:454:41:454:42 | ip | 4294967295 | +| test.c:454:52:454:53 | ip | 4294967295 | +| test.c:454:67:454:68 | ip | 4294967295 | +| test.c:454:78:454:79 | ip | 4294967295 | +| test.c:455:18:455:19 | ip | 4294967295 | +| test.c:456:23:456:24 | ip | 4294967295 | +| test.c:456:34:456:35 | ip | 4294967295 | +| test.c:457:25:457:26 | ip | 4294967295 | +| test.c:458:20:458:21 | ip | 4294967295 | +| test.c:459:11:459:12 | ip | 4294967295 | +| test.c:459:26:459:27 | ip | 4294967295 | +| test.c:460:16:460:17 | ip | 4294967295 | +| test.c:461:16:461:17 | ip | 4294967295 | +| test.c:462:16:462:17 | ip | 4294967295 | +| test.c:463:17:463:18 | ip | 4294967295 | +| test.c:464:22:464:23 | ip | 4294967295 | +| test.c:464:33:464:34 | ip | 4294967295 | +| test.c:464:48:464:49 | ip | 4294967295 | +| test.c:464:59:464:60 | ip | 4294967295 | +| test.c:465:20:465:21 | ip | 4294967295 | +| test.c:466:25:466:26 | ip | 4294967295 | +| test.c:466:36:466:37 | ip | 4294967295 | +| test.c:467:27:467:28 | ip | 4294967295 | +| test.c:468:22:468:23 | ip | 4294967295 | +| test.c:469:15:469:16 | ip | 4294967295 | +| test.c:469:30:469:31 | ip | 4294967295 | +| test.c:470:11:470:12 | ip | 4294967295 | +| test.c:471:12:471:13 | ip | 4294967295 | +| test.c:472:12:472:13 | ip | 4294967295 | +| test.c:473:13:473:14 | ip | 4294967295 | +| test.c:473:39:473:40 | ip | 4294967295 | +| test.c:473:50:473:51 | ip | 4294967295 | +| test.c:473:65:473:66 | ip | 4294967295 | +| test.c:473:76:473:77 | ip | 4294967295 | +| test.c:474:16:474:17 | ip | 4294967295 | +| test.c:475:21:475:22 | ip | 4294967295 | +| test.c:475:32:475:33 | ip | 4294967295 | +| test.c:476:23:476:24 | ip | 4294967295 | +| test.c:477:18:477:19 | ip | 4294967295 | +| test.c:478:11:478:12 | ip | 4294967295 | +| test.c:478:17:478:18 | ip | 4294967295 | +| test.c:478:37:478:38 | ip | 4294967295 | +| test.c:478:43:478:44 | ip | 4294967295 | +| test.c:479:14:479:15 | ip | 4294967295 | +| test.c:480:14:480:15 | ip | 4294967295 | +| test.c:481:14:481:15 | ip | 4294967295 | +| test.c:482:15:482:16 | ip | 4294967295 | +| test.c:482:41:482:42 | ip | 4294967295 | +| test.c:482:52:482:53 | ip | 4294967295 | +| test.c:482:67:482:68 | ip | 4294967295 | +| test.c:482:78:482:79 | ip | 4294967295 | +| test.c:483:18:483:19 | ip | 4294967295 | +| test.c:484:23:484:24 | ip | 4294967295 | +| test.c:484:34:484:35 | ip | 4294967295 | +| test.c:485:25:485:26 | ip | 4294967295 | +| test.c:486:20:486:21 | ip | 4294967295 | +| test.c:487:14:487:15 | ip | 4294967295 | +| test.c:487:20:487:21 | ip | 4294967295 | +| test.c:488:16:488:17 | ip | 4294967295 | +| test.c:489:12:489:13 | ip | 4294967295 | +| test.c:490:14:490:15 | ip | 4294967295 | +| test.c:491:15:491:16 | ip | 4294967295 | +| test.c:492:16:492:17 | ip | 4294967295 | +| test.c:493:16:493:17 | ip | 4294967295 | +| test.c:494:17:494:18 | ip | 4294967295 | +| test.c:495:22:495:23 | ip | 4294967295 | +| test.c:495:33:495:34 | ip | 4294967295 | +| test.c:495:48:495:49 | ip | 4294967295 | +| test.c:495:59:495:60 | ip | 4294967295 | +| test.c:496:20:496:21 | ip | 4294967295 | +| test.c:497:25:497:26 | ip | 4294967295 | +| test.c:497:36:497:37 | ip | 4294967295 | +| test.c:498:27:498:28 | ip | 4294967295 | +| test.c:499:22:499:23 | ip | 4294967295 | +| test.c:500:13:500:14 | ip | 4294967295 | +| test.c:500:28:500:29 | ip | 4294967295 | +| test.c:501:18:501:19 | ip | 4294967295 | +| test.c:502:18:502:19 | ip | 4294967295 | +| test.c:503:18:503:19 | ip | 4294967295 | +| test.c:504:19:504:20 | ip | 4294967295 | +| test.c:505:24:505:25 | ip | 4294967295 | +| test.c:505:35:505:36 | ip | 4294967295 | +| test.c:505:50:505:51 | ip | 4294967295 | +| test.c:505:61:505:62 | ip | 4294967295 | +| test.c:506:22:506:23 | ip | 4294967295 | +| test.c:507:27:507:28 | ip | 4294967295 | +| test.c:507:38:507:39 | ip | 4294967295 | +| test.c:508:29:508:30 | ip | 4294967295 | +| test.c:509:24:509:25 | ip | 4294967295 | +| test.c:510:17:510:18 | ip | 4294967295 | +| test.c:510:32:510:33 | ip | 4294967295 | +| test.c:511:14:511:15 | ip | 4294967295 | +| test.c:512:18:512:19 | ip | 4294967295 | +| test.c:513:18:513:19 | ip | 4294967295 | +| test.c:514:19:514:20 | ip | 4294967295 | +| test.c:515:24:515:25 | ip | 4294967295 | +| test.c:515:35:515:36 | ip | 4294967295 | +| test.c:515:50:515:51 | ip | 4294967295 | +| test.c:515:61:515:62 | ip | 4294967295 | +| test.c:516:22:516:23 | ip | 4294967295 | +| test.c:517:27:517:28 | ip | 4294967295 | +| test.c:517:38:517:39 | ip | 4294967295 | +| test.c:518:29:518:30 | ip | 4294967295 | +| test.c:519:24:519:25 | ip | 4294967295 | +| test.c:520:17:520:18 | ip | 4294967295 | +| test.c:520:23:520:24 | ip | 4294967295 | +| test.c:520:43:520:44 | ip | 4294967295 | +| test.c:520:49:520:50 | ip | 4294967295 | +| test.c:521:16:521:17 | ip | 4294967295 | +| test.c:522:16:522:17 | ip | 4294967295 | +| test.c:523:16:523:17 | ip | 4294967295 | +| test.c:524:17:524:18 | ip | 4294967295 | +| test.c:525:22:525:23 | ip | 4294967295 | +| test.c:525:33:525:34 | ip | 4294967295 | +| test.c:525:48:525:49 | ip | 4294967295 | +| test.c:525:59:525:60 | ip | 4294967295 | +| test.c:526:20:526:21 | ip | 4294967295 | +| test.c:527:25:527:26 | ip | 4294967295 | +| test.c:527:36:527:37 | ip | 4294967295 | +| test.c:528:27:528:28 | ip | 4294967295 | +| test.c:529:22:529:23 | ip | 4294967295 | +| test.c:530:16:530:17 | ip | 4294967295 | +| test.c:530:22:530:23 | ip | 4294967295 | +| test.c:531:18:531:19 | ip | 4294967295 | +| test.c:532:14:532:15 | ip | 4294967295 | +| test.c:533:14:533:15 | ip | 4294967295 | +| test.c:533:24:533:25 | ip | 4294967295 | +| test.c:533:44:533:45 | ip | 4294967295 | +| test.c:534:16:534:17 | ip | 4294967295 | +| test.c:535:16:535:17 | ip | 4294967295 | +| test.c:535:36:535:37 | ip | 4294967295 | +| test.c:536:14:536:15 | ip | 4294967295 | +| test.c:537:19:537:20 | ip | 4294967295 | +| test.c:538:20:538:21 | ip | 4294967295 | +| test.c:539:20:539:21 | ip | 4294967295 | +| test.c:540:21:540:22 | ip | 4294967295 | +| test.c:541:26:541:27 | ip | 4294967295 | +| test.c:541:37:541:38 | ip | 4294967295 | +| test.c:541:52:541:53 | ip | 4294967295 | +| test.c:541:63:541:64 | ip | 4294967295 | +| test.c:542:24:542:25 | ip | 4294967295 | +| test.c:543:29:543:30 | ip | 4294967295 | +| test.c:543:40:543:41 | ip | 4294967295 | +| test.c:544:31:544:32 | ip | 4294967295 | +| test.c:545:26:545:27 | ip | 4294967295 | +| test.c:546:17:546:18 | ip | 4294967295 | +| test.c:546:32:546:33 | ip | 4294967295 | +| test.c:547:22:547:23 | ip | 4294967295 | +| test.c:548:22:548:23 | ip | 4294967295 | +| test.c:549:22:549:23 | ip | 4294967295 | +| test.c:550:23:550:24 | ip | 4294967295 | +| test.c:551:28:551:29 | ip | 4294967295 | +| test.c:551:39:551:40 | ip | 4294967295 | +| test.c:551:54:551:55 | ip | 4294967295 | +| test.c:551:65:551:66 | ip | 4294967295 | +| test.c:552:26:552:27 | ip | 4294967295 | +| test.c:553:31:553:32 | ip | 4294967295 | +| test.c:553:42:553:43 | ip | 4294967295 | +| test.c:554:33:554:34 | ip | 4294967295 | +| test.c:555:28:555:29 | ip | 4294967295 | +| test.c:556:21:556:22 | ip | 4294967295 | +| test.c:556:36:556:37 | ip | 4294967295 | +| test.c:557:17:557:18 | ip | 4294967295 | +| test.c:558:18:558:19 | ip | 4294967295 | +| test.c:559:18:559:19 | ip | 4294967295 | +| test.c:560:19:560:20 | ip | 4294967295 | +| test.c:561:24:561:25 | ip | 4294967295 | +| test.c:561:35:561:36 | ip | 4294967295 | +| test.c:561:50:561:51 | ip | 4294967295 | +| test.c:561:61:561:62 | ip | 4294967295 | +| test.c:562:22:562:23 | ip | 4294967295 | +| test.c:563:27:563:28 | ip | 4294967295 | +| test.c:563:38:563:39 | ip | 4294967295 | +| test.c:564:29:564:30 | ip | 4294967295 | +| test.c:565:24:565:25 | ip | 4294967295 | +| test.c:566:17:566:18 | ip | 4294967295 | +| test.c:566:23:566:24 | ip | 4294967295 | +| test.c:566:43:566:44 | ip | 4294967295 | +| test.c:566:49:566:50 | ip | 4294967295 | +| test.c:567:20:567:21 | ip | 4294967295 | +| test.c:568:20:568:21 | ip | 4294967295 | +| test.c:569:20:569:21 | ip | 4294967295 | +| test.c:570:21:570:22 | ip | 4294967295 | +| test.c:571:26:571:27 | ip | 4294967295 | +| test.c:571:37:571:38 | ip | 4294967295 | +| test.c:571:52:571:53 | ip | 4294967295 | +| test.c:571:63:571:64 | ip | 4294967295 | +| test.c:572:24:572:25 | ip | 4294967295 | +| test.c:573:29:573:30 | ip | 4294967295 | +| test.c:573:40:573:41 | ip | 4294967295 | +| test.c:574:31:574:32 | ip | 4294967295 | +| test.c:575:26:575:27 | ip | 4294967295 | +| test.c:576:20:576:21 | ip | 4294967295 | +| test.c:576:26:576:27 | ip | 4294967295 | +| test.c:577:22:577:23 | ip | 4294967295 | +| test.c:578:18:578:19 | ip | 4294967295 | +| test.c:579:16:579:17 | ip | 4294967295 | +| test.c:580:17:580:18 | ip | 4294967295 | +| test.c:581:18:581:19 | ip | 4294967295 | +| test.c:582:18:582:19 | ip | 4294967295 | +| test.c:583:19:583:20 | ip | 4294967295 | +| test.c:584:24:584:25 | ip | 4294967295 | +| test.c:584:35:584:36 | ip | 4294967295 | +| test.c:584:50:584:51 | ip | 4294967295 | +| test.c:584:61:584:62 | ip | 4294967295 | +| test.c:585:22:585:23 | ip | 4294967295 | +| test.c:586:27:586:28 | ip | 4294967295 | +| test.c:586:38:586:39 | ip | 4294967295 | +| test.c:587:29:587:30 | ip | 4294967295 | +| test.c:588:24:588:25 | ip | 4294967295 | +| test.c:589:15:589:16 | ip | 4294967295 | +| test.c:589:30:589:31 | ip | 4294967295 | +| test.c:590:20:590:21 | ip | 4294967295 | +| test.c:591:20:591:21 | ip | 4294967295 | +| test.c:592:20:592:21 | ip | 4294967295 | +| test.c:593:21:593:22 | ip | 4294967295 | +| test.c:594:26:594:27 | ip | 4294967295 | +| test.c:594:37:594:38 | ip | 4294967295 | +| test.c:594:52:594:53 | ip | 4294967295 | +| test.c:594:63:594:64 | ip | 4294967295 | +| test.c:595:24:595:25 | ip | 4294967295 | +| test.c:596:29:596:30 | ip | 4294967295 | +| test.c:596:40:596:41 | ip | 4294967295 | +| test.c:597:31:597:32 | ip | 4294967295 | +| test.c:598:26:598:27 | ip | 4294967295 | +| test.c:599:19:599:20 | ip | 4294967295 | +| test.c:599:34:599:35 | ip | 4294967295 | +| test.c:600:16:600:17 | ip | 4294967295 | +| test.c:601:20:601:21 | ip | 4294967295 | +| test.c:602:20:602:21 | ip | 4294967295 | +| test.c:603:21:603:22 | ip | 4294967295 | +| test.c:604:26:604:27 | ip | 4294967295 | +| test.c:604:37:604:38 | ip | 4294967295 | +| test.c:604:52:604:53 | ip | 4294967295 | +| test.c:604:63:604:64 | ip | 4294967295 | +| test.c:605:24:605:25 | ip | 4294967295 | +| test.c:606:29:606:30 | ip | 4294967295 | +| test.c:606:40:606:41 | ip | 4294967295 | +| test.c:607:31:607:32 | ip | 4294967295 | +| test.c:608:26:608:27 | ip | 4294967295 | +| test.c:609:19:609:20 | ip | 4294967295 | +| test.c:609:25:609:26 | ip | 4294967295 | +| test.c:609:45:609:46 | ip | 4294967295 | +| test.c:609:51:609:52 | ip | 4294967295 | +| test.c:610:18:610:19 | ip | 4294967295 | +| test.c:611:18:611:19 | ip | 4294967295 | +| test.c:612:18:612:19 | ip | 4294967295 | +| test.c:613:19:613:20 | ip | 4294967295 | +| test.c:614:24:614:25 | ip | 4294967295 | +| test.c:614:35:614:36 | ip | 4294967295 | +| test.c:614:50:614:51 | ip | 4294967295 | +| test.c:614:61:614:62 | ip | 4294967295 | +| test.c:615:22:615:23 | ip | 4294967295 | +| test.c:616:27:616:28 | ip | 4294967295 | +| test.c:616:38:616:39 | ip | 4294967295 | +| test.c:617:29:617:30 | ip | 4294967295 | +| test.c:618:24:618:25 | ip | 4294967295 | +| test.c:619:18:619:19 | ip | 4294967295 | +| test.c:619:24:619:25 | ip | 4294967295 | +| test.c:620:20:620:21 | ip | 4294967295 | +| test.c:621:16:621:17 | ip | 4294967295 | +| test.c:622:10:622:23 | special_number | 4294967295 | +| test.c:630:7:630:8 | c1 | 2147483647 | +| test.c:630:13:630:13 | x | 0 | +| test.c:631:7:631:8 | c2 | 2147483647 | +| test.c:631:13:631:13 | x | 748596 | +| test.c:632:7:632:8 | c3 | 2147483647 | +| test.c:632:13:632:13 | x | 85400991 | +| test.c:633:7:633:8 | c4 | 2147483647 | +| test.c:633:13:633:13 | x | 89076886 | +| test.c:634:7:634:8 | c5 | 2147483647 | +| test.c:634:13:634:13 | x | 89175520 | +| test.c:635:7:635:8 | c1 | 2147483647 | +| test.c:635:13:635:14 | c2 | 2147483647 | +| test.c:635:19:635:19 | x | 97010505 | +| test.c:636:7:636:8 | c1 | 2147483647 | +| test.c:636:13:636:14 | c3 | 2147483647 | +| test.c:636:19:636:19 | x | 1035467903 | +| test.c:637:7:637:8 | c1 | 2147483647 | +| test.c:637:13:637:14 | c4 | 2147483647 | +| test.c:637:19:637:19 | x | 1109363551 | +| test.c:638:7:638:8 | c1 | 2147483647 | +| test.c:638:13:638:14 | c5 | 2147483647 | +| test.c:638:19:638:19 | x | 1121708983 | +| test.c:639:7:639:8 | c2 | 2147483647 | +| test.c:639:13:639:14 | c3 | 2147483647 | +| test.c:639:19:639:19 | x | 1121747830 | +| test.c:641:11:641:11 | x | 2147483647 | +| test.c:641:15:641:15 | x | 2147483647 | +| test.c:641:19:641:19 | x | 2147483647 | +| test.c:641:23:641:23 | x | 2147483647 | +| test.c:641:27:641:27 | x | 2147483647 | +| test.c:641:31:641:31 | x | 2147483647 | +| test.c:641:35:641:35 | x | 2147483647 | +| test.c:641:39:641:39 | x | 2147483647 | +| test.c:641:43:641:43 | x | 2147483647 | +| test.c:641:47:641:47 | x | 2147483647 | +| test.c:641:51:641:51 | x | 2147483647 | +| test.c:641:55:641:55 | x | 2147483647 | +| test.c:642:10:642:10 | y | 2147483647 | +| test.c:647:20:647:20 | x | 4294967295 | +| test.c:647:30:647:30 | x | 99 | +| test.c:650:3:650:4 | y1 | 4294967295 | +| test.c:650:11:650:11 | y | 100 | +| test.c:650:14:650:14 | y | 101 | +| test.c:651:3:651:4 | y2 | 4294967295 | +| test.c:651:9:651:9 | y | 101 | +| test.c:651:14:651:14 | y | 102 | +| test.c:651:22:651:22 | y | 105 | +| test.c:652:10:652:11 | y1 | 101 | +| test.c:652:15:652:16 | y2 | 105 | +| test.c:660:3:660:3 | i | 2147483647 | +| test.c:661:7:661:7 | i | 10 | +| test.c:663:3:663:3 | i | 2147483647 | +| test.c:664:3:664:3 | i | 10 | +| test.c:665:7:665:7 | i | 20 | +| test.c:667:3:667:3 | i | 2147483647 | +| test.c:668:3:668:3 | i | 40 | +| test.c:669:7:669:7 | i | 30 | +| test.c:671:3:671:3 | i | 2147483647 | +| test.c:671:7:671:7 | j | 2147483647 | +| test.c:672:7:672:7 | i | 40 | +| test.c:674:3:674:3 | i | 2147483647 | +| test.c:674:8:674:8 | j | 40 | +| test.c:675:7:675:7 | i | 50 | +| test.c:677:3:677:3 | i | 2147483647 | +| test.c:677:13:677:13 | j | 50 | +| test.c:678:7:678:7 | i | 60 | +| test.c:685:12:685:12 | a | 4294967295 | +| test.c:685:17:685:17 | a | 4294967295 | +| test.c:685:33:685:33 | b | 4294967295 | +| test.c:685:38:685:38 | b | 4294967295 | +| test.c:686:13:686:13 | a | 11 | +| test.c:686:15:686:15 | b | 23 | +| test.c:687:5:687:9 | total | 0 | +| test.c:687:14:687:14 | r | 253 | +| test.c:689:12:689:12 | a | 4294967295 | +| test.c:689:17:689:17 | a | 4294967295 | +| test.c:689:33:689:33 | b | 4294967295 | +| test.c:689:38:689:38 | b | 4294967295 | +| test.c:690:13:690:13 | a | 11 | +| test.c:690:15:690:15 | b | 23 | +| test.c:691:5:691:9 | total | 253 | +| test.c:691:14:691:14 | r | 253 | +| test.c:693:12:693:12 | a | 4294967295 | +| test.c:693:17:693:17 | a | 4294967295 | +| test.c:693:34:693:34 | b | 4294967295 | +| test.c:693:39:693:39 | b | 4294967295 | +| test.c:694:13:694:13 | a | 11 | +| test.c:694:15:694:15 | b | 23 | +| test.c:695:5:695:9 | total | 506 | +| test.c:695:14:695:14 | r | 253 | +| test.c:698:10:698:14 | total | 759 | +| test.c:704:12:704:12 | b | 4294967295 | +| test.c:704:17:704:17 | b | 4294967295 | +| test.c:705:16:705:16 | b | 23 | +| test.c:706:5:706:9 | total | 0 | +| test.c:706:14:706:14 | r | 253 | +| test.c:708:12:708:12 | b | 4294967295 | +| test.c:708:17:708:17 | b | 4294967295 | +| test.c:709:16:709:16 | b | 23 | +| test.c:710:5:710:9 | total | 253 | +| test.c:710:14:710:14 | r | 253 | +| test.c:712:13:712:13 | b | 4294967295 | +| test.c:712:18:712:18 | b | 4294967295 | +| test.c:713:16:713:16 | b | 23 | +| test.c:714:5:714:9 | total | 506 | +| test.c:714:14:714:14 | r | 253 | +| test.c:717:10:717:14 | total | 759 | +| test.c:722:3:722:3 | x | 18446744073709551616 | +| test.c:722:7:722:7 | y | 18446744073709551616 | +| test.c:723:3:723:4 | xy | 18446744073709551616 | +| test.c:723:8:723:8 | x | 1000000003 | +| test.c:723:12:723:12 | y | 1000000003 | +| test.c:724:10:724:11 | xy | 1000000006000000000 | +| test.c:729:3:729:3 | x | 18446744073709551616 | +| test.c:730:3:730:3 | y | 18446744073709551616 | +| test.c:731:3:731:4 | xy | 18446744073709551616 | +| test.c:731:8:731:8 | x | 274177 | +| test.c:731:12:731:12 | y | 67280421310721 | +| test.c:732:10:732:11 | xy | 18446744073709551616 | +| test.c:736:7:736:8 | ui | 4294967295 | +| test.c:737:43:737:44 | ui | 4294967295 | +| test.c:737:48:737:49 | ui | 4294967295 | +| test.c:738:12:738:17 | result | 18446744065119617024 | +| test.c:740:7:740:8 | ul | 18446744073709551616 | +| test.c:741:28:741:29 | ul | 18446744073709551616 | +| test.c:741:33:741:34 | ul | 18446744073709551616 | +| test.c:742:12:742:17 | result | 18446744073709551616 | +| test.c:748:7:748:8 | ui | 4294967295 | +| test.c:748:19:748:20 | ui | 10 | +| test.c:749:5:749:6 | ui | 10 | +| test.c:749:11:749:12 | ui | 10 | +| test.c:750:12:750:13 | ui | 100 | +| test.c:754:3:754:9 | uiconst | 10 | +| test.c:757:3:757:9 | ulconst | 10 | +| test.c:758:10:758:16 | uiconst | 40 | +| test.c:758:20:758:26 | ulconst | 40 | +| test.c:762:7:762:7 | i | 2147483647 | +| test.c:762:18:762:18 | i | 2147483647 | +| test.c:763:5:763:5 | i | 2147483647 | +| test.c:763:13:763:13 | i | 2 | +| test.c:764:9:764:9 | i | 10 | +| test.c:766:5:766:5 | i | 2147483647 | +| test.c:766:9:766:9 | i | 10 | +| test.c:767:9:767:9 | i | 15 | +| test.c:769:5:769:5 | i | 15 | +| test.c:770:9:770:9 | i | 105 | +| test.c:772:5:772:5 | i | 105 | +| test.c:773:9:773:9 | i | 2310 | +| test.c:775:7:775:7 | i | 2147483647 | +| test.c:776:5:776:5 | i | 2147483647 | +| test.c:776:9:776:9 | i | -1 | +| test.c:777:9:777:9 | i | 1 | +| test.c:779:3:779:3 | i | 2147483647 | +| test.c:779:7:779:7 | i | 2147483647 | +| test.c:780:10:780:10 | i | 2147483647 | +| test.c:783:3:783:3 | i | 2147483647 | +| test.c:783:10:783:11 | sc | 1 | +| test.c:785:7:785:7 | i | 127 | +| test.c:792:7:792:7 | n | 4294967295 | +| test.c:794:7:794:7 | n | 4294967295 | +| test.c:795:9:795:9 | n | 4294967295 | +| test.c:798:7:798:7 | n | 4294967295 | +| test.c:799:9:799:9 | n | 4294967295 | +| test.c:801:9:801:9 | n | 0 | +| test.c:804:8:804:8 | n | 4294967295 | +| test.c:805:9:805:9 | n | 0 | +| test.c:807:9:807:9 | n | 4294967295 | +| test.c:810:10:810:10 | n | 4294967295 | +| test.c:811:5:811:5 | n | 4294967295 | +| test.c:814:7:814:7 | n | 0 | +| test.c:818:7:818:7 | n | 32767 | +| test.c:821:7:821:7 | n | 32767 | +| test.c:822:9:822:9 | n | 0 | +| test.c:824:9:824:9 | n | 32767 | +| test.c:827:7:827:7 | n | 32767 | +| test.c:828:9:828:9 | n | 32767 | +| test.c:830:9:830:9 | n | 0 | +| test.c:833:10:833:10 | n | 32767 | +| test.c:834:5:834:5 | n | 32767 | +| test.c:837:7:837:7 | n | 0 | +| test.c:841:7:841:7 | n | 32767 | +| test.c:842:9:842:9 | n | 32767 | +| test.c:843:11:843:11 | n | 32767 | +| test.c:847:7:847:7 | n | 32767 | +| test.c:848:13:848:13 | n | 32767 | +| test.c:851:9:851:9 | n | 32767 | +| test.c:854:7:854:7 | n | 32767 | +| test.c:854:22:854:22 | n | 32767 | +| test.c:855:9:855:9 | n | 32767 | +| test.c:858:7:858:7 | n | 32767 | +| test.c:859:5:859:5 | n | 32767 | +| test.c:859:10:859:10 | n | 32767 | +| test.c:859:14:859:14 | n | 0 | +| test.c:860:6:860:6 | n | 32767 | +| test.c:860:10:860:10 | n | 0 | +| test.c:860:14:860:14 | n | 32767 | +| test.c:871:7:871:8 | ss | 32767 | +| test.c:872:9:872:10 | ss | 3 | +| test.c:875:7:875:8 | ss | 32767 | +| test.c:876:9:876:10 | ss | 32767 | +| test.c:879:14:879:15 | us | 65535 | +| test.c:880:9:880:10 | us | 32767 | +| test.c:883:14:883:15 | us | 65535 | +| test.c:884:9:884:10 | us | 65535 | +| test.c:887:7:887:8 | ss | 32767 | +| test.c:888:9:888:10 | ss | 32767 | +| test.c:891:7:891:8 | ss | 32767 | +| test.c:892:9:892:10 | ss | 2 | +| test.c:898:8:898:8 | s | 2147483647 | +| test.c:898:15:898:15 | s | 127 | +| test.c:898:23:898:23 | s | 9 | +| test.c:899:18:899:18 | s | 9 | +| test.c:899:22:899:22 | s | 9 | +| test.c:900:9:900:14 | result | 127 | +| test.c:906:7:906:7 | i | 0 | +| test.c:907:9:907:9 | i | 2147483647 | +| test.c:911:7:911:7 | u | 0 | +| test.c:912:9:912:9 | u | 4294967295 | +| test.c:917:12:917:12 | s | 2147483647 | +| test.c:918:7:918:8 | s2 | 4 | +| test.c:923:7:923:7 | x | 2147483647 | +| test.c:924:9:924:9 | y | 2147483647 | +| test.c:928:7:928:7 | y | 2147483647 | +| test.c:937:7:937:7 | x | 2147483647 | +| test.c:942:7:942:7 | x | 15 | +| test.c:949:8:949:8 | x | 2147483647 | +| test.c:949:12:949:12 | y | 256 | +| test.c:950:9:950:9 | x | 2147483647 | +| test.c:951:9:951:9 | y | 256 | | test.cpp:10:7:10:7 | b | 2147483647 | | test.cpp:11:5:11:5 | x | 2147483647 | | test.cpp:13:10:13:10 | x | 2147483647 |