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

1 2 3

  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 129 unsigned getAttributeID(llvm::AttributeSet PAL) const {
130 if (PAL.isEmpty()) return 0; // Null maps to zero.
131 AttributeMapType::const_iterator I = AttributeMap.find(PAL);
136 unsigned getAttributeGroupID(llvm::AttributeSet PAL) const {
137 if (PAL.isEmpty()) return 0; // Null maps to zero.
138 AttributeGroupMapType::const_iterator I = AttributeGroupMap.find(PAL);
187 void EnumerateAttributes(llvm::AttributeSet PAL);
ValueEnumerator.cpp 434 void ValueEnumerator::EnumerateAttributes(AttributeSet PAL) {
435 if (PAL.isEmpty()) return; // null is always 0.
438 unsigned &Entry = AttributeMap[PAL];
441 Attribute.push_back(PAL);
446 for (unsigned i = 0, e = PAL.getNumSlots(); i != e; ++i) {
447 AttributeSet AS = PAL.getSlotAttributes(i);
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.h 129 unsigned getAttributeID(llvm::AttributeSet PAL) const {
130 if (PAL.isEmpty()) return 0; // Null maps to zero.
131 AttributeMapType::const_iterator I = AttributeMap.find(PAL);
136 unsigned getAttributeGroupID(llvm::AttributeSet PAL) const {
137 if (PAL.isEmpty()) return 0; // Null maps to zero.
138 AttributeGroupMapType::const_iterator I = AttributeGroupMap.find(PAL);
187 void EnumerateAttributes(llvm::AttributeSet PAL);
ValueEnumerator.cpp 434 void ValueEnumerator::EnumerateAttributes(AttributeSet PAL) {
435 if (PAL.isEmpty()) return; // null is always 0.
438 unsigned &Entry = AttributeMap[PAL];
441 Attribute.push_back(PAL);
446 for (unsigned i = 0, e = PAL.getNumSlots(); i != e; ++i) {
447 AttributeSet AS = PAL.getSlotAttributes(i);
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.h 132 unsigned getAttributeID(llvm::AttributeSet PAL) const {
133 if (PAL.isEmpty()) return 0; // Null maps to zero.
134 AttributeMapType::const_iterator I = AttributeMap.find(PAL);
139 unsigned getAttributeGroupID(llvm::AttributeSet PAL) const {
140 if (PAL.isEmpty()) return 0; // Null maps to zero.
141 AttributeGroupMapType::const_iterator I = AttributeGroupMap.find(PAL);
190 void EnumerateAttributes(llvm::AttributeSet PAL);
ValueEnumerator.cpp 434 void ValueEnumerator::EnumerateAttributes(AttributeSet PAL) {
435 if (PAL.isEmpty()) return; // null is always 0.
438 unsigned &Entry = AttributeMap[PAL];
441 Attribute.push_back(PAL);
446 for (unsigned i = 0, e = PAL.getNumSlots(); i != e; ++i) {
447 AttributeSet AS = PAL.getSlotAttributes(i);
  /external/llvm/bindings/go/llvm/
IRBindings.cpp 26 const AttributeSet PAL = Func->getAttributes();
29 PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex,
37 const AttributeSet PAL = Func->getAttributes();
38 return PAL.Raw(AttributeSet::FunctionIndex);
43 const AttributeSet PAL = Func->getAttributes();
46 PAL.removeAttributes(Func->getContext(), AttributeSet::FunctionIndex,
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
ValueEnumerator.h 97 unsigned getAttributeID(const AttrListPtr &PAL) const {
98 if (PAL.isEmpty()) return 0; // Null maps to zero.
99 AttributeMapType::const_iterator I = AttributeMap.find(PAL.getRawPointer());
145 void EnumerateAttributes(const AttrListPtr &PAL);
ValueEnumerator.cpp 386 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) {
387 if (PAL.isEmpty()) return; // null is always 0.
389 unsigned &Entry = AttributeMap[PAL.getRawPointer()];
392 Attributes.push_back(PAL);
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 169 unsigned getAttributeID(AttributeSet PAL) const {
170 if (PAL.isEmpty()) return 0; // Null maps to zero.
171 AttributeMapType::const_iterator I = AttributeMap.find(PAL);
176 unsigned getAttributeGroupID(AttributeSet PAL) const {
177 if (PAL.isEmpty()) return 0; // Null maps to zero.
178 AttributeGroupMapType::const_iterator I = AttributeGroupMap.find(PAL);
286 void EnumerateAttributes(AttributeSet PAL);
ValueEnumerator.cpp 887 void ValueEnumerator::EnumerateAttributes(AttributeSet PAL) {
888 if (PAL.isEmpty()) return; // null is always 0.
891 unsigned &Entry = AttributeMap[PAL];
894 Attribute.push_back(PAL);
899 for (unsigned i = 0, e = PAL.getNumSlots(); i != e; ++i) {
900 AttributeSet AS = PAL.getSlotAttributes(i);
    [all...]
  /external/llvm/lib/IR/
Function.cpp 370 AttributeSet PAL = getAttributes();
371 PAL = PAL.addAttribute(getContext(), i, Kind);
372 setAttributes(PAL);
376 AttributeSet PAL = getAttributes();
377 PAL = PAL.addAttribute(getContext(), i, Attr);
378 setAttributes(PAL);
382 AttributeSet PAL = getAttributes();
383 PAL = PAL.addAttributes(getContext(), i, Attrs)
    [all...]
Instructions.cpp 348 AttributeSet PAL = getAttributes();
349 PAL = PAL.addAttribute(getContext(), i, Kind);
350 setAttributes(PAL);
354 AttributeSet PAL = getAttributes();
355 PAL = PAL.addAttribute(getContext(), i, Kind, Value);
356 setAttributes(PAL);
360 AttributeSet PAL = getAttributes();
361 PAL = PAL.addAttribute(getContext(), i, Attr)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Function.cpp 245 AttrListPtr PAL = getAttributes();
246 PAL = PAL.addAttr(i, attr);
247 setAttributes(PAL);
251 AttrListPtr PAL = getAttributes();
252 PAL = PAL.removeAttr(i, attr);
253 setAttributes(PAL);
Attributes.cpp 188 AttributeListImpl *PAL =
193 if (!PAL) {
194 PAL = new AttributeListImpl(Attrs, NumAttrs);
195 AttributesLists->InsertNode(PAL, InsertPos);
199 return AttrListPtr(PAL);
346 dbgs() << "PAL[ ";
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 169 AttributeSet PAL = CS.getAttributes();
170 if (!PAL.isEmpty() && PAL.getSlotIndex(PAL.getNumSlots() - 1) > NumArgs) {
172 for (unsigned i = 0; PAL.getSlotIndex(i) <= NumArgs; ++i)
173 AttributesVec.push_back(PAL.getSlotAttributes(i));
174 if (PAL.hasAttributes(AttributeSet::FunctionIndex))
176 PAL.getFnAttributes()));
177 PAL = AttributeSet::get(Fn.getContext(), AttributesVec);
188 cast<InvokeInst>(New)->setAttributes(PAL);
    [all...]
ArgumentPromotion.cpp 664 const AttributeSet &PAL = F->getAttributes();
667 if (PAL.hasAttributes(AttributeSet::ReturnIndex))
669 PAL.getRetAttributes()));
684 AttributeSet attrs = PAL.getParamAttributes(ArgIndex);
745 if (PAL.hasAttributes(AttributeSet::FunctionIndex))
747 PAL.getFnAttributes()));
    [all...]
  /external/python/cpython2/Lib/plat-irix5/
GET.py 20 PAL = 9
SV.py 63 PAL = 1
  /external/python/cpython2/Lib/plat-irix6/
GET.py 20 PAL = 9
SV.py 63 PAL = 1
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DeadArgumentElimination.cpp 234 AttrListPtr PAL = CS.getAttributes();
235 if (!PAL.isEmpty() && PAL.getSlot(PAL.getNumSlots() - 1).Index > NumArgs) {
237 for (unsigned i = 0; PAL.getSlot(i).Index <= NumArgs; ++i)
238 AttributesVec.push_back(PAL.getSlot(i));
239 if (Attributes FnAttrs = PAL.getFnAttributes())
241 PAL = AttrListPtr::get(AttributesVec.begin(), AttributesVec.end());
249 cast<InvokeInst>(New)->setAttributes(PAL);
253 cast<CallInst>(New)->setAttributes(PAL);
    [all...]
PruneEH.cpp 149 const AttrListPtr &PAL = F->getAttributes();
150 const AttrListPtr &NPAL = PAL.addAttr(~0, NewAttributes);
151 if (PAL != NPAL) {
  /external/swiftshader/third_party/LLVM/lib/Target/CBackend/
CBackend.cpp 159 const AttrListPtr &PAL = AttrListPtr());
165 const AttrListPtr &PAL,
377 const AttrListPtr &PAL,
392 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
397 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
409 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str());
468 bool IgnoreName, const AttrListPtr &PAL) {
484 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
491 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
503 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str())
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CallSite.h 183 void setAttributes(const AttrListPtr &PAL) {
184 CALLSITE_DELEGATE_SETTER(setAttributes(PAL));

Completed in 6685 milliseconds

1 2 3