HomeSort by relevance Sort by last modified time
    Searched refs:NoSignedWrap (Results 1 - 25 of 31) sorted by null

1 2

  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
ConstantRangeTest.cpp 709 Instruction::Add, C, OBO::NoSignedWrap);
714 Instruction::Add, C, OBO::NoSignedWrap | OBO::NoUnsignedWrap);
754 Instruction::Sub, C, OBO::NoSignedWrap);
759 Instruction::Sub, C, OBO::NoSignedWrap | OBO::NoUnsignedWrap);
792 OBO::NoSignedWrap);
798 OBO::NoSignedWrap);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Operator.h 75 NoSignedWrap = (1 << 1)
89 (SubclassOptionalData & ~NoSignedWrap) | (B * NoSignedWrap);
102 return (SubclassOptionalData & NoSignedWrap) != 0;
  /external/llvm/include/llvm/IR/
Operator.h 78 NoSignedWrap = (1 << 1)
90 (SubclassOptionalData & ~NoSignedWrap) | (B * NoSignedWrap);
103 return (SubclassOptionalData & NoSignedWrap) != 0;
PatternMatch.h 557 if (WrapFlags & OverflowingBinaryOperator::NoSignedWrap &&
568 OverflowingBinaryOperator::NoSignedWrap>
571 OverflowingBinaryOperator::NoSignedWrap>(
576 OverflowingBinaryOperator::NoSignedWrap>
579 OverflowingBinaryOperator::NoSignedWrap>(
584 OverflowingBinaryOperator::NoSignedWrap>
587 OverflowingBinaryOperator::NoSignedWrap>(
592 OverflowingBinaryOperator::NoSignedWrap>
595 OverflowingBinaryOperator::NoSignedWrap>(
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Operator.h 71 NoSignedWrap = (1 << 1)
84 (SubclassOptionalData & ~NoSignedWrap) | (B * NoSignedWrap);
97 return (SubclassOptionalData & NoSignedWrap) != 0;
PatternMatch.h 769 if (WrapFlags & OverflowingBinaryOperator::NoSignedWrap &&
780 OverflowingBinaryOperator::NoSignedWrap>
783 OverflowingBinaryOperator::NoSignedWrap>(
788 OverflowingBinaryOperator::NoSignedWrap>
791 OverflowingBinaryOperator::NoSignedWrap>(
796 OverflowingBinaryOperator::NoSignedWrap>
799 OverflowingBinaryOperator::NoSignedWrap>(
804 OverflowingBinaryOperator::NoSignedWrap>
807 OverflowingBinaryOperator::NoSignedWrap>(
    [all...]
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 625 Instruction::Add, C, OBO::NoSignedWrap);
630 Instruction::Add, C, OBO::NoSignedWrap | OBO::NoUnsignedWrap);
663 OBO::NoSignedWrap);
675 OBO::NoUnsignedWrap | OBO::NoSignedWrap);
681 Instruction::Add, OneToFive, OBO::NoSignedWrap),
689 Instruction::Add, OneToFive, OBO::NoUnsignedWrap | OBO::NoSignedWrap),
694 Instruction::Add, MinusFiveToMinusTwo, OBO::NoSignedWrap),
702 OBO::NoUnsignedWrap | OBO::NoSignedWrap),
707 Instruction::Add, MinusOneToOne, OBO::NoSignedWrap),
715 OBO::NoUnsignedWrap | OBO::NoSignedWrap),
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
ConstantRange.cpp 196 assert((NoWrapKind == OBO::NoSignedWrap ||
198 NoWrapKind == (OBO::NoUnsignedWrap | OBO::NoSignedWrap)) &&
218 if (NoWrapKind & OBO::NoSignedWrap) {
243 if (NoWrapKind & OBO::NoSignedWrap) {
259 if (NoWrapKind == (OBO::NoSignedWrap | OBO::NoUnsignedWrap)) {
261 makeGuaranteedNoWrapRegion(BinOp, Other, OBO::NoSignedWrap),
787 OverflowingBinaryOperator::NoSignedWrap);
    [all...]
Constants.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 330 bool NoSignedWrap : 1;
343 NoSignedWrap = false;
355 void setNoSignedWrap(bool b) { NoSignedWrap = b; }
366 bool hasNoSignedWrap() const { return NoSignedWrap; }
378 return (NoUnsignedWrap << 0) | (NoSignedWrap << 1) | (Exact << 2) |
386 NoSignedWrap &= Flags->NoSignedWrap;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 361 bool NoSignedWrap : 1;
375 : AnyDefined(false), NoUnsignedWrap(false), NoSignedWrap(false),
404 NoSignedWrap = b;
445 bool hasNoSignedWrap() const { return NoSignedWrap; }
467 NoSignedWrap &= Flags.NoSignedWrap;
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineInternal.h 574 /// If the multiplication is known not to overflow then NoSignedWrap is set.
575 Value *Descale(Value *Val, APInt Scale, bool &NoSignedWrap);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineInternal.h     [all...]
  /external/llvm/lib/IR/
ConstantRange.cpp 186 assert((NoWrapKind == OBO::NoSignedWrap ||
188 NoWrapKind == (OBO::NoUnsignedWrap | OBO::NoSignedWrap)) &&
208 if (NoWrapKind & OBO::NoSignedWrap) {
Constants.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 425 return NoWrap(Instruction::Add, OBO::NoSignedWrap);
429 return NoWrap(Instruction::Sub, OBO::NoSignedWrap);
650 BinaryOperator::Add, LRange, OBO::NoSignedWrap);
InductiveRangeCheckElimination.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Constants.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 703 bool NoSignedWrap = ExtendAfterOp->getStart() == ExtendedStart &&
706 if (NoSignedWrap)
    [all...]
  /external/deqp-deps/SPIRV-Headers/include/spirv/unified1/
spirv.cs 423 NoSignedWrap = 4469,
    [all...]
  /external/swiftshader/third_party/SPIRV-Headers/include/spirv/unified1/
spirv.cs 427 NoSignedWrap = 4469,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLParser.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]

Completed in 689 milliseconds

1 2