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

/external/clang/test/CodeGenCXX/
H A Drtti-layout.cpp73 struct SI1 : A { }; struct in inherits:A
113 // SI1 has a single public base.
114 CHECK_VTABLE(SI1, si_class);
115 CHECK(to<__si_class_type_info>(typeid(SI1)).__base_type == &typeid(A));
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1258 if (BinaryOperator *SI1 = dyn_cast<BinaryOperator>(Op1)) {
1260 if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() &&
1261 SI0->getOperand(1) == SI1->getOperand(1) &&
1262 (SI0->hasOneUse() || SI1->hasOneUse())) {
1264 Builder->CreateAnd(SI0->getOperand(0), SI1->getOperand(0),
1266 return BinaryOperator::Create(SI1->getOpcode(), NewOp,
1267 SI1->getOperand(1));
1943 if (BinaryOperator *SI1 = dyn_cast<BinaryOperator>(Op1)) {
1945 if (SI0->isShift() && SI0->getOpcode() == SI1->getOpcode() &&
1946 SI0->getOperand(1) == SI1
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp84 static bool SafeToMergeTerminators(TerminatorInst *SI1, TerminatorInst *SI2) { argument
85 if (SI1 == SI2) return false; // Can't merge with self!
90 BasicBlock *SI1BB = SI1->getParent();

Completed in 142 milliseconds