/external/llvm/include/llvm/IR/ |
OperandTraits.h | 111 inline void setOperand(unsigned, VALUECLASS*); \ 142 void CLASS::setOperand(unsigned i_nocapture, VALUECLASS *Val_nocapture) { \ 144 && "setOperand() out of range!"); \
|
User.h | 92 void setOperand(unsigned i, Value *Val) { 93 assert(i < NumOperands && "setOperand() out of range!"); 96 "Cannot mutate a constant with setOperand!");
|
Instructions.h | [all...] |
/external/llvm/lib/IR/ |
User.cpp | 34 // The side effects of this setOperand call include linking to 37 setOperand(i, To); // Fix it now...
|
Globals.cpp | 163 this->setOperand(0, cast<Constant>(To)); 229 setOperand(0, Aliasee);
|
/external/llvm/unittests/IR/ |
VerifierTest.cpp | 39 // ... then use setOperand to redirect it to a value of different type. 42 BI->setOperand(0, Zero32);
|
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineSelect.cpp | 507 ICI->setOperand(0, CmpLHS); 508 ICI->setOperand(1, CmpRHS); 509 SI.setOperand(1, TrueVal); 510 SI.setOperand(2, FalseVal); 577 SI.setOperand(1, CmpRHS); 581 SI.setOperand(2, CmpRHS); [all...] |
InstCombineShifts.cpp | 49 I.setOperand(1, Rem); 207 I->setOperand(0, GetShiftedValue(I->getOperand(0), NumBits,isLeftShift,IC)); 208 I->setOperand(1, GetShiftedValue(I->getOperand(1), NumBits,isLeftShift,IC)); 225 BO->setOperand(1, ConstantInt::get(BO->getType(), NewShAmt)); 247 BO->setOperand(1, ConstantInt::get(BO->getType(), 266 BO->setOperand(1, ConstantInt::get(BO->getType(), NewShAmt)); 287 BO->setOperand(1, ConstantInt::get(BO->getType(), 294 I->setOperand(1, GetShiftedValue(I->getOperand(1), NumBits,isLeftShift,IC)); 295 I->setOperand(2, GetShiftedValue(I->getOperand(2), NumBits,isLeftShift,IC)); 340 I.setOperand(1, ConstantInt::get(I.getType(), TypeBits-1)) [all...] |
InstCombineSimplifyDemanded.cpp | 44 I->setOperand(OpNo, ConstantInt::get(OpC->getType(), Demanded)); [all...] |
InstCombineLoadStoreAlloca.cpp | 161 AI.setOperand(0, V); 212 AI.setOperand(0, ConstantInt::get(AI.getArraySize()->getType(), 1)); 431 LI.setOperand(0, SI->getOperand(2)); 438 LI.setOperand(0, SI->getOperand(1)); 528 SI.setOperand(0, NewCast); 529 SI.setOperand(1, CastOp); 646 SI.setOperand(0, UndefValue::get(Val->getType()));
|
InstructionCombining.cpp | 226 I.setOperand(0, A); 227 I.setOperand(1, V); 255 I.setOperand(0, V); 256 I.setOperand(1, C); 277 I.setOperand(0, V); 278 I.setOperand(1, B); 297 I.setOperand(0, B); 298 I.setOperand(1, V); 324 I.setOperand(0, New); 325 I.setOperand(1, Folded) [all...] |
InstCombineVectorOps.cpp | 202 EI.setOperand(0, V); 251 EI.setOperand(0, IE->getOperand(0)); 799 SVI.setOperand(0, SVI.getOperand(1)); 800 SVI.setOperand(1, UndefValue::get(RHS->getType())); 801 SVI.setOperand(2, ConstantVector::get(Elts)); [all...] |
InstCombineCompares.cpp | [all...] |
InstCombineMulDivRem.cpp | 52 I->setOperand(0, V2); 618 I.setOperand(1, SI->getOperand(NonNullOperand)); 677 I.setOperand(1, V); [all...] |
/external/llvm/lib/Transforms/Scalar/ |
Reassociate.cpp | 324 Neg->setOperand(1, Constant::getNullValue(Neg->getType())); // Drop use of op. 586 I->setOperand(OpIdx, UndefValue::get(I->getType())); 741 Op->setOperand(0, NewLHS); 747 Op->setOperand(1, NewRHS); 772 Op->setOperand(1, NewRHS); [all...] |
TailRecursionElimination.cpp | 596 AccRecInstr->setOperand(AccRecInstr->getOperand(0) != CI, AccPN); 608 RI->setOperand(0, AccPN);
|
SimplifyCFGPass.cpp | 286 RetBlock->getTerminator()->setOperand(0, RetBlockPHI);
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkOpEdgeBuilder.cpp | 163 fCurrentContour->setOperand(fOperand);
|
SkOpContour.h | 179 void setOperand(bool isOp) {
|
/external/llvm/lib/Transforms/Utils/ |
LowerExpectIntrinsic.cpp | 130 CmpI->setOperand(0, ArgValue);
|
LowerInvoke.cpp | 300 EI->setOperand(0, AI); 301 NI->setOperand(0, AI); 315 NC->setOperand(0, AI);
|
/external/skia/src/pathops/ |
SkOpEdgeBuilder.cpp | 163 fCurrentContour->setOperand(fOperand);
|
SkOpContour.h | 179 void setOperand(bool isOp) {
|
/external/llvm/lib/CodeGen/ |
SjLjEHPrepare.cpp | 262 EI->setOperand(0, AI); 263 NI->setOperand(0, AI); 279 NC->setOperand(0, AI);
|
/external/llvm/include/llvm/Support/ |
CallSite.h | 119 getInstruction()->setOperand(ArgNo, newVal);
|