HomeSort by relevance Sort by last modified time
    Searched refs:AttrListPtr (Results 1 - 25 of 33) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/include/llvm/
Attributes.h 179 // AttrListPtr Smart Pointer
184 /// AttrListPtr - This class manages the ref count for the opaque
186 class AttrListPtr {
191 AttrListPtr() : AttrList(0) {}
192 AttrListPtr(const AttrListPtr &P);
193 const AttrListPtr &operator=(const AttrListPtr &RHS);
194 ~AttrListPtr();
201 static AttrListPtr get(const AttributeWithIndex *Attr, unsigned NumAttrs)
    [all...]
Intrinsics.h 29 class AttrListPtr;
61 AttrListPtr getAttributes(ID id);
Function.h 88 AttrListPtr AttributeList; ///< Parameter attributes
169 const AttrListPtr &getAttributes() const { return AttributeList; }
173 void setAttributes(const AttrListPtr &attrs) { AttributeList = attrs; }
Module.h 294 AttrListPtr AttributeList);
306 AttrListPtr AttributeList,
315 AttrListPtr AttributeList);
Instructions.h     [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Attributes.cpp 167 AttrListPtr AttrListPtr::get(const AttributeWithIndex *Attrs, unsigned NumAttrs) {
170 return AttrListPtr();
199 return AttrListPtr(PAL);
204 // AttrListPtr Method Implementations
207 AttrListPtr::AttrListPtr(AttributeListImpl *LI) : AttrList(LI) {
211 AttrListPtr::AttrListPtr(const AttrListPtr &P) : AttrList(P.AttrList)
    [all...]
Module.cpp 141 AttrListPtr AttributeList) {
174 AttrListPtr AttributeList) {
191 AttrListPtr AttributeList = AttrListPtr::get((AttributeWithIndex *)0, 0);
201 AttrListPtr AttributeList,
234 AttrListPtr::get((AttributeWithIndex *)0, 0));
Function.cpp 245 AttrListPtr PAL = getAttributes();
251 AttrListPtr PAL = getAttributes();
Verifier.cpp 307 void VerifyFunctionAttrs(FunctionType *FT, const AttrListPtr &Attrs,
573 const AttrListPtr &Attrs,
615 static bool VerifyAttributeCount(const AttrListPtr &Attrs, unsigned Params) {
651 const AttrListPtr &Attrs = F.getAttributes();
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
ValueEnumerator.h 32 class AttrListPtr;
56 std::vector<AttrListPtr> Attributes;
97 unsigned getAttributeID(const AttrListPtr &PAL) const {
120 const std::vector<AttrListPtr> &getAttributes() const {
145 void EnumerateAttributes(const AttrListPtr &PAL);
ValueEnumerator.cpp 386 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) {
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BuildLibCalls.cpp 41 Constant *StrLen = M->getOrInsertFunction("strlen", AttrListPtr::get(AWI, 2),
63 Constant *StrChr = M->getOrInsertFunction("strchr", AttrListPtr::get(&AWI, 1),
83 Value *StrNCmp = M->getOrInsertFunction("strncmp", AttrListPtr::get(AWI, 3),
106 Value *StrCpy = M->getOrInsertFunction(Name, AttrListPtr::get(AWI, 2),
124 Value *StrNCpy = M->getOrInsertFunction(Name, AttrListPtr::get(AWI, 2),
144 AttrListPtr::get(&AWI, 1),
166 Value *MemChr = M->getOrInsertFunction("memchr", AttrListPtr::get(&AWI, 1),
191 Value *MemCmp = M->getOrInsertFunction("memcmp", AttrListPtr::get(AWI, 3),
210 IRBuilder<> &B, const AttrListPtr &Attrs) {
262 Value *PutS = M->getOrInsertFunction("puts", AttrListPtr::get(AWI, 2)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinIntrinsicInfo.cpp 100 AttrListPtr AList = getAttributes((bfinIntrinsic::ID) IntrID);
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeIntrinsicInfo.cpp 109 AttrListPtr AList = getAttributes((mblazeIntrinsic::ID) IntrID);
  /external/swiftshader/third_party/LLVM/unittests/VMCore/
PassManagerTest.cpp 429 AttrListPtr func_test1_PAL;
437 AttrListPtr func_test2_PAL;
445 AttrListPtr func_test3_PAL;
453 AttrListPtr func_test4_PAL;
473 int32_3->setTailCall(false);AttrListPtr int32_3_PAL;
488 int32_6->setTailCall(false);AttrListPtr int32_6_PAL;
503 int32_9->setTailCall(false);AttrListPtr int32_9_PAL;
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.h 145 std::vector<AttrListPtr> MAttributes;
224 AttrListPtr getAttributes(unsigned i) const {
227 return AttrListPtr();
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
BuildLibCalls.h 72 const AttrListPtr &Attrs);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CallSite.h 180 const AttrListPtr &getAttributes() const {
183 void setAttributes(const AttrListPtr &PAL) {
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DeadArgumentElimination.cpp 234 AttrListPtr PAL = CS.getAttributes();
241 PAL = AttrListPtr::get(AttributesVec.begin(), AttributesVec.end());
654 const AttrListPtr &PAL = F->getAttributes();
756 AttrListPtr NewPAL = AttrListPtr::get(AttributesVec.begin(),
784 const AttrListPtr &CallPAL = CS.getAttributes();
819 AttrListPtr NewCallPAL = AttrListPtr::get(AttributesVec.begin(),
    [all...]
PruneEH.cpp 149 const AttrListPtr &PAL = F->getAttributes();
150 const AttrListPtr &NPAL = PAL.addAttr(~0, NewAttributes);
ArgumentPromotion.cpp 520 const AttrListPtr &PAL = F->getAttributes();
619 NF->setAttributes(AttrListPtr::get(AttributesVec.begin(),
645 const AttrListPtr &CallPAL = CS.getAttributes();
737 cast<InvokeInst>(New)->setAttributes(AttrListPtr::get(AttributesVec.begin(),
742 cast<CallInst>(New)->setAttributes(AttrListPtr::get(AttributesVec.begin(),
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/CBackend/
CBackend.cpp 159 const AttrListPtr &PAL = AttrListPtr());
165 const AttrListPtr &PAL,
377 const AttrListPtr &PAL,
468 bool IgnoreName, const AttrListPtr &PAL) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
ObjCARC.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 1214 milliseconds

1 2