HomeSort by relevance Sort by last modified time
    Searched refs:setOperand (Results 1 - 25 of 52) sorted by null

1 2 3

  /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 444 ICI->setOperand(0, CmpLHS);
445 ICI->setOperand(1, CmpRHS);
446 SI.setOperand(1, TrueVal);
447 SI.setOperand(2, FalseVal);
514 SI.setOperand(1, CmpRHS);
518 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 135 EI.setOperand(0, V);
176 EI.setOperand(0, IE->getOperand(0));
472 SVI.setOperand(0, SVI.getOperand(1));
473 SVI.setOperand(1, UndefValue::get(RHS->getType()));
474 SVI.setOperand(2, ConstantVector::get(Elts));
InstCombineMulDivRem.cpp 52 I->setOperand(0, V2);
557 I.setOperand(1, SI->getOperand(NonNullOperand));
617 I.setOperand(1, V);
    [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 245 Neg->setOperand(1, Constant::getNullValue(Neg->getType())); // Drop use of op.
507 I->setOperand(OpIdx, UndefValue::get(I->getType()));
662 Op->setOperand(0, NewLHS);
668 Op->setOperand(1, NewRHS);
693 Op->setOperand(1, NewRHS);
727 Op->setOperand(0, NewOp);
    [all...]
TailRecursionElimination.cpp 573 AccRecInstr->setOperand(AccRecInstr->getOperand(0) != CI, AccPN);
585 RI->setOperand(0, AccPN);
SimplifyCFGPass.cpp 287 RetBlock->getTerminator()->setOperand(0, RetBlockPHI);
LoopIdiomRecognize.cpp 247 DeadInst->setOperand(op, 0);
590 LbCond->setOperand(0, TcDec);
591 LbCond->setOperand(1, cast<Value>(ConstantInt::get(Ty, 0)));
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 130 CmpI->setOperand(0, ArgValue);
LowerInvoke.cpp 303 EI->setOperand(0, AI);
304 NI->setOperand(0, AI);
318 NC->setOperand(0, AI);
SimplifyIndVar.cpp 137 UseInst->setOperand(OperIdx, IVSrc);
LoopUnroll.cpp 47 I->setOperand(op, It->second);
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 259 EI->setOperand(0, AI);
260 NI->setOperand(0, AI);
276 NC->setOperand(0, AI);
  /external/llvm/include/llvm/Support/
CallSite.h 120 getInstruction()->setOperand(ArgNo, newVal);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
intermediate.h 407 void setOperand(TIntermTyped* o) { operand = o; }

Completed in 891 milliseconds

1 2 3