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

  /external/llvm/include/llvm/Analysis/
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));
250 ArrayRef<unsigned> IdxList) const {
251 return Fold(ConstantExpr::getExtractValue(Agg, IdxList));
    [all...]
  /external/llvm/include/llvm/IR/
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);
191 ArrayRef<Value *> IdxList) const {
192 return GetElementPtrInst::Create(C, IdxList);
196 ArrayRef<Constant *> IdxList) const {
197 return ConstantExpr::getInBoundsGetElementPtr(C, IdxList);
206 ArrayRef<Value *> IdxList) const {
207 return GetElementPtrInst::CreateInBounds(C, IdxList);
286 ArrayRef<unsigned> IdxList) const {
287 return ExtractValueInst::Create(Agg, IdxList);
    [all...]
Constants.h     [all...]
Instructions.h 777 void init(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &NameStr);
783 inline GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList,
786 inline GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList,
792 static GetElementPtrInst *Create(Value *Ptr, ArrayRef<Value *> IdxList,
795 unsigned Values = 1 + unsigned(IdxList.size());
797 GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertBefore);
799 static GetElementPtrInst *Create(Value *Ptr, ArrayRef<Value *> IdxList,
802 unsigned Values = 1 + unsigned(IdxList.size());
804 GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertAtEnd);
810 ArrayRef<Value *> IdxList,
    [all...]
IRBuilder.h     [all...]
  /external/llvm/lib/IR/
ConstantsContext.h 173 const SmallVector<unsigned, 4> &IdxList,
176 Indices(IdxList) {
199 const SmallVector<unsigned, 4> &IdxList,
202 Indices(IdxList) {
219 GetElementPtrConstantExpr(Constant *C, ArrayRef<Constant*> IdxList,
223 ArrayRef<Constant*> IdxList,
227 new(IdxList.size() + 1) GetElementPtrConstantExpr(C, IdxList, DestTy);
452 std::vector<Constant*> IdxList(V.operands.begin()+1, V.operands.end());
453 return GetElementPtrConstantExpr::Create(V.operands[0], IdxList, Ty
    [all...]
Instructions.cpp     [all...]
Core.cpp     [all...]
ConstantFold.cpp 111 SmallVector<Value*, 8> IdxList;
114 IdxList.push_back(Zero);
120 IdxList.push_back(Zero);
125 IdxList.push_back(Zero);
133 return ConstantExpr::getInBoundsGetElementPtr(V, IdxList);
    [all...]
Constants.cpp     [all...]
  /external/clang/test/Parser/
DelayedTemplateParsing.cpp 111 ArrayRef<> IdxList;
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp     [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 296 milliseconds