HomeSort by relevance Sort by last modified time
    Searched refs:HasNSW (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/Analysis/
TargetFolder.h 51 bool HasNUW = false, bool HasNSW = false) const {
52 return Fold(ConstantExpr::getAdd(LHS, RHS, HasNUW, HasNSW));
58 bool HasNUW = false, bool HasNSW = false) const {
59 return Fold(ConstantExpr::getSub(LHS, RHS, HasNUW, HasNSW));
65 bool HasNUW = false, bool HasNSW = false) const {
66 return Fold(ConstantExpr::getMul(LHS, RHS, HasNUW, HasNSW));
90 bool HasNUW = false, bool HasNSW = false) const {
91 return Fold(ConstantExpr::getShl(LHS, RHS, HasNUW, HasNSW));
119 bool HasNUW = false, bool HasNSW = false) const {
120 return Fold(ConstantExpr::getNeg(C, HasNUW, HasNSW));
    [all...]
  /external/llvm/include/llvm/IR/
ConstantFolder.h 35 bool HasNUW = false, bool HasNSW = false) const {
36 return ConstantExpr::getAdd(LHS, RHS, HasNUW, HasNSW);
42 bool HasNUW = false, bool HasNSW = false) const {
43 return ConstantExpr::getSub(LHS, RHS, HasNUW, HasNSW);
49 bool HasNUW = false, bool HasNSW = false) const {
50 return ConstantExpr::getMul(LHS, RHS, HasNUW, HasNSW);
76 bool HasNUW = false, bool HasNSW = false) const {
77 return ConstantExpr::getShl(LHS, RHS, HasNUW, HasNSW);
107 bool HasNUW = false, bool HasNSW = false) const {
108 return ConstantExpr::getNeg(C, HasNUW, HasNSW);
    [all...]
NoFolder.h 41 bool HasNUW = false, bool HasNSW = false) const {
44 if (HasNSW) BO->setHasNoSignedWrap();
57 bool HasNUW = false, bool HasNSW = false) const {
60 if (HasNSW) BO->setHasNoSignedWrap();
73 bool HasNUW = false, bool HasNSW = false) const {
76 if (HasNSW) BO->setHasNoSignedWrap();
119 bool HasNSW = false) const {
122 if (HasNSW) BO->setHasNoSignedWrap();
157 bool HasNUW = false, bool HasNSW = false) const {
160 if (HasNSW) BO->setHasNoSignedWrap()
    [all...]
IRBuilder.h 676 bool HasNUW, bool HasNSW) {
679 if (HasNSW) BO->setHasNoSignedWrap();
695 bool HasNUW = false, bool HasNSW = false) {
698 return Insert(Folder.CreateAdd(LC, RC, HasNUW, HasNSW), Name);
700 HasNUW, HasNSW);
717 bool HasNUW = false, bool HasNSW = false) {
720 return Insert(Folder.CreateSub(LC, RC, HasNUW, HasNSW), Name);
722 HasNUW, HasNSW);
739 bool HasNUW = false, bool HasNSW = false) {
742 return Insert(Folder.CreateMul(LC, RC, HasNUW, HasNSW), Name)
    [all...]
Constants.h     [all...]
  /external/llvm/lib/IR/
Constants.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 509 bool HasNSW = false;
511 HasNSW = I.hasNoSignedWrap();
515 HasNSW &= Op0->hasNoSignedWrap();
519 HasNSW &= Op1->hasNoSignedWrap();
520 BO->setHasNoSignedWrap(HasNSW);
    [all...]

Completed in 55 milliseconds