Searched defs:InsertElementInst (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/
H A DInstructions.h1579 // InsertElementInst Class
1582 /// InsertElementInst - This instruction inserts a single (scalar)
1585 class InsertElementInst : public Instruction { class in namespace:llvm
1586 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
1589 InsertElementInst(Value *Vec, Value *NewElt, Value *Idx,
1592 virtual InsertElementInst *clone_impl() const;
1595 static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
1598 return new(3) InsertElementInst(Vec, NewElt, Idx, NameStr, InsertBefore);
1600 static InsertElementInst *Create(Value *Vec, Value *NewElt, Value *Idx,
1603 return new(3) InsertElementInst(Ve
[all...]
/external/llvm/lib/VMCore/
H A DInstructions.cpp1465 // InsertElementInst Implementation
1468 InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index, function in class:InsertElementInst
1472 OperandTraits<InsertElementInst>::op_begin(this),
1482 InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index, function in class:InsertElementInst
1486 OperandTraits<InsertElementInst>::op_begin(this),
1497 bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt,
3463 InsertElementInst *InsertElementInst
[all...]

Completed in 31 milliseconds