HomeSort by: relevance | last modified time | path
    Searched defs:ExtractElementInst (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 1858 // ExtractElementInst Class
1864 class ExtractElementInst : public Instruction {
1865 ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr = "",
1867 ExtractElementInst(Value *Vec, Value *Idx, const Twine &NameStr,
1874 ExtractElementInst *cloneImpl() const;
1877 static ExtractElementInst *Create(Value *Vec, Value *Idx,
1880 return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertBefore);
1883 static ExtractElementInst *Create(Value *Vec, Value *Idx,
1886 return new(2) ExtractElementInst(Vec, Idx, NameStr, InsertAtEnd);
1915 struct OperandTraits<ExtractElementInst>
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 1811 // ExtractElementInst Implementation
1814 ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
1819 OperandTraits<ExtractElementInst>::op_begin(this),
1828 ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
1833 OperandTraits<ExtractElementInst>::op_begin(this),
1843 bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
4464 ExtractElementInst *ExtractElementInst::cloneImpl() const
    [all...]

Completed in 26 milliseconds