Searched refs:SI1 (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/usr.bin/sort/
H A Dcoll.c821 unsigned char SI1, SI2; local
843 read_number(s1, &sign1, smain1, &main1, sfrac1, &frac1, &SI1);
848 kv1->hint->v.nh.si = SI1;
908 read_number(s1, &sign1, smain1, &main1, sfrac1, &frac1, &SI1);
930 cmp_res = cmpsuffix(SI1, SI2);
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1323 if (BinaryOperator *SI1 = dyn_cast<BinaryOperator>(Op1)) {
1325 if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() &&
1326 SI0->getOperand(1) == SI1->getOperand(1) &&
1327 (SI0->hasOneUse() || SI1->hasOneUse())) {
1329 Builder->CreateAnd(SI0->getOperand(0), SI1->getOperand(0),
1331 return BinaryOperator::Create(SI1->getOpcode(), NewOp,
1332 SI1->getOperand(1));
2101 if (BinaryOperator *SI1 = dyn_cast<BinaryOperator>(Op1)) {
2103 if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() &&
2104 SI0->getOperand(1) == SI1
[all...]
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp121 static bool SafeToMergeTerminators(TerminatorInst *SI1, TerminatorInst *SI2) { argument
122 if (SI1 == SI2) return false; // Can't merge with self!
127 BasicBlock *SI1BB = SI1->getParent();
145 /// to merge these two terminator instructions together, where SI1 is an
149 static bool isProfitableToFoldUnconditional(BranchInst *SI1, argument
153 if (SI1 == SI2) return false; // Can't merge with self!
154 assert(SI1->isUnconditional() && SI2->isConditional());
169 BasicBlock *SI1BB = SI1->getParent();

Completed in 205 milliseconds