HomeSort by relevance Sort by last modified time
    Searched refs:IdxList (Results 1 - 14 of 14) sorted by null

  /external/llvm/include/llvm/Support/
ConstantFolder.h 122 ArrayRef<Constant *> IdxList) const {
123 return ConstantExpr::getGetElementPtr(C, IdxList);
132 ArrayRef<Value *> IdxList) const {
133 return ConstantExpr::getGetElementPtr(C, IdxList);
137 ArrayRef<Constant *> IdxList) const {
138 return ConstantExpr::getInBoundsGetElementPtr(C, IdxList);
147 ArrayRef<Value *> IdxList) const {
148 return ConstantExpr::getInBoundsGetElementPtr(C, IdxList);
226 ArrayRef<unsigned> IdxList) const {
227 return ConstantExpr::getExtractValue(Agg, IdxList);
    [all...]
NoFolder.h 181 ArrayRef<Constant *> IdxList) const {
182 return ConstantExpr::getGetElementPtr(C, IdxList);
185 ArrayRef<Value *> IdxList) const {
186 return GetElementPtrInst::Create(C, IdxList);
190 ArrayRef<Constant *> IdxList) const {
191 return ConstantExpr::getInBoundsGetElementPtr(C, IdxList);
194 ArrayRef<Value *> IdxList) const {
195 return GetElementPtrInst::CreateInBounds(C, IdxList);
274 ArrayRef<unsigned> IdxList) const {
275 return ExtractValueInst::Create(Agg, IdxList);
    [all...]
TargetFolder.h 134 ArrayRef<Constant *> IdxList) const {
135 return Fold(ConstantExpr::getGetElementPtr(C, IdxList));
144 ArrayRef<Value *> IdxList) const {
145 return Fold(ConstantExpr::getGetElementPtr(C, IdxList));
149 ArrayRef<Constant *> IdxList) const {
150 return Fold(ConstantExpr::getInBoundsGetElementPtr(C, IdxList));
159 ArrayRef<Value *> IdxList) const {
160 return Fold(ConstantExpr::getInBoundsGetElementPtr(C, IdxList));
243 ArrayRef<unsigned> IdxList) const {
244 return Fold(ConstantExpr::getExtractValue(Agg, IdxList));
    [all...]
IRBuilder.h     [all...]
  /external/llvm/lib/VMCore/
ConstantsContext.h 170 const SmallVector<unsigned, 4> &IdxList,
173 Indices(IdxList) {
196 const SmallVector<unsigned, 4> &IdxList,
199 Indices(IdxList) {
216 GetElementPtrConstantExpr(Constant *C, ArrayRef<Constant*> IdxList,
220 ArrayRef<Constant*> IdxList,
224 new(IdxList.size() + 1) GetElementPtrConstantExpr(C, IdxList, DestTy);
455 std::vector<Constant*> IdxList(V.operands.begin()+1, V.operands.end());
456 return GetElementPtrConstantExpr::Create(V.operands[0], IdxList, Ty
    [all...]
Instructions.cpp     [all...]
Core.cpp 882 ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
885 IdxList));
892 ArrayRef<Constant *> IdxList(unwrap<Constant>(ConstantIndices, NumIndices),
894 return wrap(ConstantExpr::getInBoundsGetElementPtr(Val, IdxList));
    [all...]
ConstantFold.cpp 107 SmallVector<Value*, 8> IdxList;
110 IdxList.push_back(Zero);
116 IdxList.push_back(Zero);
121 IdxList.push_back(Zero);
129 return ConstantExpr::getInBoundsGetElementPtr(V, IdxList);
    [all...]
Constants.cpp     [all...]
  /external/llvm/include/llvm/
Instructions.h 712 void init(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr);
718 inline GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList,
721 inline GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList,
727 static GetElementPtrInst *Create(Value *Ptr, ArrayRef<Value *> IdxList,
730 unsigned Values = 1 + unsigned(IdxList.size());
732 GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertBefore);
734 static GetElementPtrInst *Create(Value *Ptr, ArrayRef<Value *> IdxList,
737 unsigned Values = 1 + unsigned(IdxList.size());
739 GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertAtEnd);
745 ArrayRef<Value *> IdxList,
    [all...]
Constants.h     [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 179 std::vector<Record*> IdxList = TheDef->getValueAsListOfDefs("SubRegIndices");
180 if (SubList.size() != IdxList.size())
188 CodeGenSubRegIndex *Idx = RegBank.getSubRegIdx(IdxList[i]);
    [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 482 milliseconds