Home
last modified time | relevance | path

Searched refs:PAL (Results 1 – 25 of 44) sorted by relevance

12

/external/llvm/lib/IR/
DFunction.cpp370 AttributeSet PAL = getAttributes(); in addAttribute() local
371 PAL = PAL.addAttribute(getContext(), i, Kind); in addAttribute()
372 setAttributes(PAL); in addAttribute()
376 AttributeSet PAL = getAttributes(); in addAttribute() local
377 PAL = PAL.addAttribute(getContext(), i, Attr); in addAttribute()
378 setAttributes(PAL); in addAttribute()
382 AttributeSet PAL = getAttributes(); in addAttributes() local
383 PAL = PAL.addAttributes(getContext(), i, Attrs); in addAttributes()
384 setAttributes(PAL); in addAttributes()
388 AttributeSet PAL = getAttributes(); in removeAttribute() local
[all …]
DInstructions.cpp348 AttributeSet PAL = getAttributes(); in addAttribute() local
349 PAL = PAL.addAttribute(getContext(), i, Kind); in addAttribute()
350 setAttributes(PAL); in addAttribute()
354 AttributeSet PAL = getAttributes(); in addAttribute() local
355 PAL = PAL.addAttribute(getContext(), i, Kind, Value); in addAttribute()
356 setAttributes(PAL); in addAttribute()
360 AttributeSet PAL = getAttributes(); in addAttribute() local
361 PAL = PAL.addAttribute(getContext(), i, Attr); in addAttribute()
362 setAttributes(PAL); in addAttribute()
366 AttributeSet PAL = getAttributes(); in removeAttribute() local
[all …]
/external/llvm/bindings/go/llvm/
DIRBindings.cpp26 const AttributeSet PAL = Func->getAttributes(); in LLVMAddFunctionAttr2() local
29 PAL.addAttributes(Func->getContext(), AttributeSet::FunctionIndex, in LLVMAddFunctionAttr2()
37 const AttributeSet PAL = Func->getAttributes(); in LLVMGetFunctionAttr2() local
38 return PAL.Raw(AttributeSet::FunctionIndex); in LLVMGetFunctionAttr2()
43 const AttributeSet PAL = Func->getAttributes(); in LLVMRemoveFunctionAttr2() local
46 PAL.removeAttributes(Func->getContext(), AttributeSet::FunctionIndex, in LLVMRemoveFunctionAttr2()
/external/llvm/lib/Bitcode/Writer/
DValueEnumerator.h169 unsigned getAttributeID(AttributeSet PAL) const { in getAttributeID() argument
170 if (PAL.isEmpty()) return 0; // Null maps to zero. in getAttributeID()
171 AttributeMapType::const_iterator I = AttributeMap.find(PAL); in getAttributeID()
176 unsigned getAttributeGroupID(AttributeSet PAL) const { in getAttributeGroupID() argument
177 if (PAL.isEmpty()) return 0; // Null maps to zero. in getAttributeGroupID()
178 AttributeGroupMapType::const_iterator I = AttributeGroupMap.find(PAL); in getAttributeGroupID()
286 void EnumerateAttributes(AttributeSet PAL);
DValueEnumerator.cpp887 void ValueEnumerator::EnumerateAttributes(AttributeSet PAL) { in EnumerateAttributes() argument
888 if (PAL.isEmpty()) return; // null is always 0. in EnumerateAttributes()
891 unsigned &Entry = AttributeMap[PAL]; in EnumerateAttributes()
894 Attribute.push_back(PAL); in EnumerateAttributes()
899 for (unsigned i = 0, e = PAL.getNumSlots(); i != e; ++i) { in EnumerateAttributes()
900 AttributeSet AS = PAL.getSlotAttributes(i); in EnumerateAttributes()
/external/llvm/lib/Transforms/IPO/
DDeadArgumentElimination.cpp169 AttributeSet PAL = CS.getAttributes(); in DeleteDeadVarargs() local
170 if (!PAL.isEmpty() && PAL.getSlotIndex(PAL.getNumSlots() - 1) > NumArgs) { in DeleteDeadVarargs()
172 for (unsigned i = 0; PAL.getSlotIndex(i) <= NumArgs; ++i) in DeleteDeadVarargs()
173 AttributesVec.push_back(PAL.getSlotAttributes(i)); in DeleteDeadVarargs()
174 if (PAL.hasAttributes(AttributeSet::FunctionIndex)) in DeleteDeadVarargs()
176 PAL.getFnAttributes())); in DeleteDeadVarargs()
177 PAL = AttributeSet::get(Fn.getContext(), AttributesVec); in DeleteDeadVarargs()
188 cast<InvokeInst>(New)->setAttributes(PAL); in DeleteDeadVarargs()
192 cast<CallInst>(New)->setAttributes(PAL); in DeleteDeadVarargs()
685 const AttributeSet &PAL = F->getAttributes(); in RemoveDeadStuffFromFunction() local
[all …]
DArgumentPromotion.cpp664 const AttributeSet &PAL = F->getAttributes(); in DoPromotion() local
667 if (PAL.hasAttributes(AttributeSet::ReturnIndex)) in DoPromotion()
669 PAL.getRetAttributes())); in DoPromotion()
684 AttributeSet attrs = PAL.getParamAttributes(ArgIndex); in DoPromotion()
745 if (PAL.hasAttributes(AttributeSet::FunctionIndex)) in DoPromotion()
747 PAL.getFnAttributes())); in DoPromotion()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DFunction.cpp245 AttrListPtr PAL = getAttributes(); in addAttribute() local
246 PAL = PAL.addAttr(i, attr); in addAttribute()
247 setAttributes(PAL); in addAttribute()
251 AttrListPtr PAL = getAttributes(); in removeAttribute() local
252 PAL = PAL.removeAttr(i, attr); in removeAttribute()
253 setAttributes(PAL); in removeAttribute()
DAttributes.cpp188 AttributeListImpl *PAL = in get() local
193 if (!PAL) { in get()
194 PAL = new AttributeListImpl(Attrs, NumAttrs); in get()
195 AttributesLists->InsertNode(PAL, InsertPos); in get()
199 return AttrListPtr(PAL); in get()
DAsmWriter.cpp1798 const AttrListPtr &PAL = CI->getAttributes(); in printInstruction() local
1800 if (PAL.getRetAttributes() != Attribute::None) in printInstruction()
1801 Out << ' ' << Attribute::getAsString(PAL.getRetAttributes()); in printInstruction()
1821 writeParamOperand(CI->getArgOperand(op), PAL.getParamAttributes(op + 1)); in printInstruction()
1824 if (PAL.getFnAttributes() != Attribute::None) in printInstruction()
1825 Out << ' ' << Attribute::getAsString(PAL.getFnAttributes()); in printInstruction()
1831 const AttrListPtr &PAL = II->getAttributes(); in printInstruction() local
1850 if (PAL.getRetAttributes() != Attribute::None) in printInstruction()
1851 Out << ' ' << Attribute::getAsString(PAL.getRetAttributes()); in printInstruction()
1871 writeParamOperand(II->getArgOperand(op), PAL.getParamAttributes(op + 1)); in printInstruction()
[all …]
DInstructions.cpp328 AttrListPtr PAL = getAttributes(); in addAttribute() local
329 PAL = PAL.addAttr(i, attr); in addAttribute()
330 setAttributes(PAL); in addAttribute()
334 AttrListPtr PAL = getAttributes(); in removeAttribute() local
335 PAL = PAL.removeAttr(i, attr); in removeAttribute()
336 setAttributes(PAL); in removeAttribute()
568 AttrListPtr PAL = getAttributes(); in addAttribute() local
569 PAL = PAL.addAttr(i, attr); in addAttribute()
570 setAttributes(PAL); in addAttribute()
574 AttrListPtr PAL = getAttributes(); in removeAttribute() local
[all …]
/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
DValueEnumerator.h97 unsigned getAttributeID(const AttrListPtr &PAL) const { in getAttributeID() argument
98 if (PAL.isEmpty()) return 0; // Null maps to zero. in getAttributeID()
99 AttributeMapType::const_iterator I = AttributeMap.find(PAL.getRawPointer()); in getAttributeID()
145 void EnumerateAttributes(const AttrListPtr &PAL);
DValueEnumerator.cpp386 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) { in EnumerateAttributes() argument
387 if (PAL.isEmpty()) return; // null is always 0. in EnumerateAttributes()
389 unsigned &Entry = AttributeMap[PAL.getRawPointer()]; in EnumerateAttributes()
392 Attributes.push_back(PAL); in EnumerateAttributes()
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DDeadArgumentElimination.cpp234 AttrListPtr PAL = CS.getAttributes(); in DeleteDeadVarargs() local
235 if (!PAL.isEmpty() && PAL.getSlot(PAL.getNumSlots() - 1).Index > NumArgs) { in DeleteDeadVarargs()
237 for (unsigned i = 0; PAL.getSlot(i).Index <= NumArgs; ++i) in DeleteDeadVarargs()
238 AttributesVec.push_back(PAL.getSlot(i)); in DeleteDeadVarargs()
239 if (Attributes FnAttrs = PAL.getFnAttributes()) in DeleteDeadVarargs()
241 PAL = AttrListPtr::get(AttributesVec.begin(), AttributesVec.end()); in DeleteDeadVarargs()
249 cast<InvokeInst>(New)->setAttributes(PAL); in DeleteDeadVarargs()
253 cast<CallInst>(New)->setAttributes(PAL); in DeleteDeadVarargs()
654 const AttrListPtr &PAL = F->getAttributes(); in RemoveDeadStuffFromFunction() local
657 Attributes RAttrs = PAL.getRetAttributes(); in RemoveDeadStuffFromFunction()
[all …]
DPruneEH.cpp149 const AttrListPtr &PAL = F->getAttributes(); in runOnSCC() local
150 const AttrListPtr &NPAL = PAL.addAttr(~0, NewAttributes); in runOnSCC()
151 if (PAL != NPAL) { in runOnSCC()
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
DCBackend.cpp159 const AttrListPtr &PAL = AttrListPtr());
165 const AttrListPtr &PAL,
377 const AttrListPtr &PAL, in printStructReturnPointerFunctionType() argument
392 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) { in printStructReturnPointerFunctionType()
397 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), ""); in printStructReturnPointerFunctionType()
409 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str()); in printStructReturnPointerFunctionType()
468 bool IgnoreName, const AttrListPtr &PAL) { in printType() argument
484 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) { in printType()
491 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), ""); in printType()
503 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str()); in printType()
[all …]
/external/python/cpython2/Lib/plat-irix5/
DGET.py20 PAL = 9 variable
DSV.py63 PAL = 1 variable
/external/python/cpython2/Lib/plat-irix6/
DGET.py20 PAL = 9 variable
DSV.py63 PAL = 1 variable
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DCallSite.h183 void setAttributes(const AttrListPtr &PAL) { in setAttributes() argument
184 CALLSITE_DELEGATE_SETTER(setAttributes(PAL)); in setAttributes()
/external/autotest/server/site_tests/enterprise_CFM_AutoZoomSanity/
Dcontrol.partners19 This test bypasses servo check and is used by third party vendor PAL Acoustics.
/external/autotest/server/site_tests/enterprise_CFM_MeetAppSanity/
Dcontrol.partners21 This test bypasses servo check and is used by third party vendor PAL Acoustics.
/external/autotest/server/site_tests/enterprise_CFM_RebootStress/
Dcontrol.partners20 This test bypasses servo check and is used by third party vendor PAL Acoustics.
/external/autotest/server/site_tests/enterprise_CFM_Sanity/
Dcontrol.partners21 This test bypasses servo check and is used by third party vendor PAL Acoustics.

12