Searched defs:TrueIfSigned (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp114 /// TrueIfSigned if the result of the comparison is true when the input value is
117 bool &TrueIfSigned) {
120 TrueIfSigned = true;
123 TrueIfSigned = true;
126 TrueIfSigned = false;
130 TrueIfSigned = true;
134 TrueIfSigned = true;
1285 bool TrueIfSigned = false; local
1287 isSignBitCheck(ICI.getPredicate(), RHS, TrueIfSigned)) {
1294 return new ICmpInst(TrueIfSigned
116 isSignBitCheck(ICmpInst::Predicate pred, ConstantInt *RHS, bool &TrueIfSigned) argument
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp127 /// checks the sign bit. If it only checks the sign bit, set TrueIfSigned if the
130 bool &TrueIfSigned) {
133 TrueIfSigned = true;
136 TrueIfSigned = true;
139 TrueIfSigned = false;
143 TrueIfSigned = true;
147 TrueIfSigned = true;
2040 bool TrueIfSigned = false;
2042 isSignBitCheck(ICI.getPredicate(), RHS, TrueIfSigned)) {
2049 return new ICmpInst(TrueIfSigned
129 isSignBitCheck(ICmpInst::Predicate Pred, ConstantInt *RHS, bool &TrueIfSigned) argument
[all...]

Completed in 72 milliseconds