reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Instructions.h
 2458   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);

References

include/llvm/IR/Instructions.h
 2469     return getOperand(0);
 2472     return getOperand(0);
 2479     return getOperand(1);
 2482     return getOperand(1);
lib/Analysis/CFLGraph.h
  491       auto *Agg = Inst.getOperand(0);
  492       auto *Val = Inst.getOperand(1);
lib/CodeGen/DwarfEHPrepare.cpp
  112       ExcIVI = dyn_cast<InsertValueInst>(SelIVI->getOperand(0));
  113       if (ExcIVI && isa<UndefValue>(ExcIVI->getOperand(0)) &&
  115         ExnObj = ExcIVI->getOperand(1);
  116         SelLoad = dyn_cast<LoadInst>(SelIVI->getOperand(1));
lib/ExecutionEngine/Interpreter/Execution.cpp
 1980   GenericValue Src2 = getOperandValue(I.getOperand(1), SF);
lib/IR/Instructions.cpp
 2109   assert(getNumOperands() == 2 && "NumOperands not initialized?");
 2119   Op<0>() = Agg;
 2120   Op<1>() = Val;
 2130   Op<0>() = IVI.getOperand(0);
 2130   Op<0>() = IVI.getOperand(0);
 2131   Op<1>() = IVI.getOperand(1);
 2131   Op<1>() = IVI.getOperand(1);
lib/IR/Verifier.cpp
 3573              IVI.getOperand(1)->getType(),
lib/Transforms/InstCombine/InstCombineVectorOps.cpp
  721     return replaceInstUsesWith(I, I.getOperand(0));
lib/Transforms/Scalar/EarlyCSE.cpp
  238     return hash_combine(IVI->getOpcode(), IVI->getOperand(0),
  239                         IVI->getOperand(1),