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

1 2

  /external/llvm/include/llvm/
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/VMCore/
User.cpp 33 // The side effects of this setOperand call include linking to
36 setOperand(i, To); // Fix it now...
Globals.cpp 157 this->setOperand(0, cast<Constant>(To));
223 setOperand(0, Aliasee);
  /external/llvm/unittests/VMCore/
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 434 ICI->setOperand(0, CmpLHS);
435 ICI->setOperand(1, CmpRHS);
436 SI.setOperand(1, TrueVal);
437 SI.setOperand(2, FalseVal);
504 SI.setOperand(1, CmpRHS);
508 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...]
InstCombineLoadStoreAlloca.cpp 99 AI.setOperand(0, V);
307 LI.setOperand(0, SI->getOperand(2));
314 LI.setOperand(0, SI->getOperand(1));
404 SI.setOperand(0, NewCast);
405 SI.setOperand(1, CastOp);
522 SI.setOperand(0, UndefValue::get(Val->getType()));
InstCombineSimplifyDemanded.cpp 43 I->setOperand(OpNo, ConstantInt::get(OpC->getType(), Demanded));
    [all...]
InstructionCombining.cpp 201 I.setOperand(0, A);
202 I.setOperand(1, V);
230 I.setOperand(0, V);
231 I.setOperand(1, C);
252 I.setOperand(0, V);
253 I.setOperand(1, B);
272 I.setOperand(0, B);
273 I.setOperand(1, V);
299 I.setOperand(0, New);
300 I.setOperand(1, Folded)
    [all...]
InstCombineMulDivRem.cpp 53 I->setOperand(0, V2);
311 I.setOperand(1, SI->getOperand(NonNullOperand));
371 I.setOperand(1, V);
586 I.setOperand(1, V);
672 I.setOperand(1, RHSNeg);
718 I.setOperand(1, NewRHSV);
InstCombineVectorOps.cpp 126 EI.setOperand(0, V);
167 EI.setOperand(0, IE->getOperand(0));
463 SVI.setOperand(0, SVI.getOperand(1));
464 SVI.setOperand(1, UndefValue::get(RHS->getType()));
465 SVI.setOperand(2, ConstantVector::get(Elts));
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 243 I->setOperand(1, RHS->getOperand(0));
244 RHS->setOperand(0, LHS);
245 I->setOperand(0, RHS);
302 I->setOperand(0, UndefValue::get(I->getType()));
303 I->setOperand(1, UndefValue::get(I->getType()));
338 I->setOperand(1, UndefValue::get(I->getType()));
352 I->setOperand(0, Ops[i].Op);
353 I->setOperand(1, Ops[i+1].Op);
374 I->setOperand(1, Ops[i].Op);
418 I->setOperand(0, NegateValue(I->getOperand(0), BI))
    [all...]
TailRecursionElimination.cpp 559 AccRecInstr->setOperand(AccRecInstr->getOperand(0) != CI, AccPN);
571 RI->setOperand(0, AccPN);
SimplifyCFGPass.cpp 270 RetBlock->getTerminator()->setOperand(0, RetBlockPHI);
  /external/llvm/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 138 CmpI->setOperand(0, ArgValue);
LowerInvoke.cpp 303 EI->setOperand(0, AI);
304 NI->setOperand(0, AI);
318 NC->setOperand(0, AI);
SimplifyIndVar.cpp 139 UseInst->setOperand(OperIdx, IVSrc);
LoopUnroll.cpp 47 I->setOperand(op, It->second);
InlineFunction.cpp 472 DVI->setOperand(2, createInlinedVariable(DVI->getVariable(),
786 Br->setOperand(0, FirstNewBlock);
    [all...]
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 274 EI->setOperand(0, AI);
275 NI->setOperand(0, AI);
291 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 147 milliseconds

1 2