HomeSort by relevance Sort by last modified time
    Searched defs:Elts (Results 1 - 25 of 34) sorted by null

1 2

  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 83 SmallVector<Value*, 4> Elts;
84 Elts.reserve(MD->getNumOperands());
88 Elts.push_back(0);
95 Elts.push_back(Mapped_Op);
98 MDNode *NewMD = MDNode::get(V->getContext(), Elts);
LowerInvoke.cpp 127 Type *Elts[] = { JmpBufTy, PointerType::getUnqual(JBLinkTy) };
128 JBLinkTy->setBody(Elts);
  /external/llvm/utils/TableGen/
TableGen.cpp 159 const std::vector<Record*> *Elts = Sets.expand(Recs[i]);
160 assert(Elts && "Couldn't expand Set instance");
161 for (unsigned ei = 0, ee = Elts->size(); ei != ee; ++ei)
162 OS << ' ' << (*Elts)[ei]->getName();
SetTheory.cpp 30 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) {
31 ST.evaluate(Expr->arg_begin(), Expr->arg_end(), Elts, Loc);
37 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) {
46 Elts.insert(*I);
52 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) {
61 Elts.insert(*I);
69 RecSet &Elts, ArrayRef<SMLoc> Loc) =0;
71 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) {
81 apply2(ST, Expr, Set, II->getValue(), Elts, Loc);
89 RecSet &Elts, ArrayRef<SMLoc> Loc)
    [all...]
  /external/llvm/lib/IR/
AutoUpgrade.cpp 197 SmallVector<Value *, 1> Elts;
198 Elts.push_back(ConstantInt::get(Type::getInt32Ty(C), 1));
199 MDNode *Node = MDNode::get(C, Elts);
DebugLoc.cpp 109 Value *Elts[] = {
113 return MDNode::get(Ctx2, Elts);
DIBuilder.cpp 110 Value *Elts[] = {
126 MDNode *CUNode = MDNode::get(VMContext, Elts);
141 Value *Elts[] = {
147 R = MDNode::get(C, Elts);
149 Value *Elts[] = {
156 R = MDNode::get(C, Elts);
182 Value *Elts[] = {
188 DIImportedEntity M(MDNode::get(VMContext, Elts));
197 Value *Elts[] = {
201 return DIFile(MDNode::get(VMContext, Elts));
    [all...]
DebugInfo.cpp 813 SmallVector<Value *, 16> Elts;
816 i == 7 ? Elts.push_back(InlinedScope) :
817 Elts.push_back(DV->getOperand(i));
818 return DIVariable(MDNode::get(VMContext, Elts));
823 SmallVector<Value *, 16> Elts;
827 Elts.push_back(Constant::getNullValue(Type::getInt32Ty(VMContext))):
828 Elts.push_back(DV->getOperand(i));
829 return DIVariable(MDNode::get(VMContext, Elts));
    [all...]
Type.cpp 434 Type **Elts = getContext().pImpl->TypeAllocator.Allocate<Type*>(NumElements);
435 memcpy(Elts, Elements.data(), sizeof(Elements[0]) * NumElements);
437 ContainedTys = Elts;
Constants.cpp 774 SmallVector<uint8_t, 16> Elts;
777 Elts.push_back(CI->getZExtValue());
780 if (Elts.size() == V.size())
781 return ConstantDataArray::get(C->getContext(), Elts);
783 SmallVector<uint16_t, 16> Elts;
786 Elts.push_back(CI->getZExtValue());
789 if (Elts.size() == V.size())
790 return ConstantDataArray::get(C->getContext(), Elts);
792 SmallVector<uint32_t, 16> Elts;
795 Elts.push_back(CI->getZExtValue())
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 213 Constant *Elts[] = {
217 ArrayElts.push_back(ConstantStruct::get(STy, Elts));
  /external/clang/include/clang/AST/
APValue.h 81 APValue *Elts;
83 Vec() : Elts(0), NumElts(0) {}
84 ~Vec() { delete[] Elts; }
87 APValue *Elts;
93 APValue *Elts;
262 return ((Vec*)(char*)Data)->Elts[I];
275 return ((Arr*)(char*)Data)->Elts[I];
286 return ((Arr*)(char*)Data)->Elts[getArrayInitializedElts()];
310 return ((StructData*)(char*)Data)->Elts[i];
314 return ((StructData*)(char*)Data)->Elts[getStructNumBases() + i]
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 579 SmallVector<Value *, 16> Elts;
585 ParseMDNodeVector(Elts, NULL) ||
589 MDNode *Init = MDNode::get(Context, Elts);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineVectorOps.cpp 27 // If all elts are the same, we can extract it and use any of the values.
782 SmallVector<Constant*, 16> Elts;
785 Elts.push_back(UndefValue::get(Type::getInt32Ty(SVI.getContext())));
792 Elts.push_back(UndefValue::get(Type::getInt32Ty(SVI.getContext())));
795 Elts.push_back(ConstantInt::get(Type::getInt32Ty(SVI.getContext()),
801 SVI.setOperand(2, ConstantVector::get(Elts));
    [all...]
InstCombineMulDivRem.cpp 105 SmallVector<Constant *, 4> Elts;
111 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2()));
114 return ConstantVector::get(Elts);
    [all...]
  /external/llvm/include/llvm/Support/
IntegersSubset.h 508 std::vector<Constant*> Elts;
509 Elts.reserve(Src.size());
525 Elts.push_back(CV);
528 ArrayType::get(Elts.front()->getType(), (uint64_t)Elts.size());
529 Holder = ConstantArray::get(ArrTy, Elts);
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_context.h 207 GLuint *Elts;
447 void (*ClippedPolygon)( struct gl_context *ctx, const GLuint *elts, GLuint n );
448 /* Render a polygon with <n> vertices whose indexes are in the <elts>
455 tnl_points_func Points; /* must now respect vb->elts */
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 635 SmallVector<llvm::Constant*, 2> Elts;
637 Elts.push_back(C);
648 Elts.push_back(llvm::UndefValue::get(Ty));
654 return llvm::ConstantStruct::get(STy, Elts);
756 std::vector<llvm::Constant*> Elts;
757 Elts.reserve(NumInitableElts + NumElements);
766 Elts.push_back(C);
779 Elts.resize(NumElements, fillC);
785 for (unsigned i = 0, e = Elts.size(); i < e; ++i)
786 Types.push_back(Elts[i]->getType())
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/mesa3d/src/mesa/tnl/
t_context.h 207 GLuint *Elts;
447 void (*ClippedPolygon)( struct gl_context *ctx, const GLuint *elts, GLuint n );
448 /* Render a polygon with <n> vertices whose indexes are in the <elts>
455 tnl_points_func Points; /* must now respect vb->elts */
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]

Completed in 1885 milliseconds

1 2