Searched refs:PAL (Results 1 - 20 of 20) sorted by relevance

/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h101 unsigned getAttributeID(const AttrListPtr &PAL) const {
102 if (PAL.isEmpty()) return 0; // Null maps to zero.
103 AttributeMapType::const_iterator I = AttributeMap.find(PAL.getRawPointer());
149 void EnumerateAttributes(const AttrListPtr &PAL);
H A DValueEnumerator.cpp420 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) { argument
421 if (PAL.isEmpty()) return; // null is always 0.
423 unsigned &Entry = AttributeMap[PAL.getRawPointer()];
426 Attributes.push_back(PAL);
/external/llvm/lib/VMCore/
H A DAttributes.cpp191 AttributeListImpl *PAL = local
196 if (!PAL) {
197 PAL = new AttributeListImpl(Attrs);
198 AttributesLists->InsertNode(PAL, InsertPos);
202 return AttrListPtr(PAL);
349 dbgs() << "PAL[ ";
H A DFunction.cpp246 AttrListPtr PAL = getAttributes(); local
247 PAL = PAL.addAttr(i, attr);
248 setAttributes(PAL);
252 AttrListPtr PAL = getAttributes(); local
253 PAL = PAL.removeAttr(i, attr);
254 setAttributes(PAL);
H A DAsmWriter.cpp1854 const AttrListPtr &PAL = CI->getAttributes(); local
1856 if (PAL.getRetAttributes() != Attribute::None)
1857 Out << ' ' << Attribute::getAsString(PAL.getRetAttributes());
1877 writeParamOperand(CI->getArgOperand(op), PAL.getParamAttributes(op + 1));
1880 if (PAL.getFnAttributes() != Attribute::None)
1881 Out << ' ' << Attribute::getAsString(PAL.getFnAttributes());
1887 const AttrListPtr &PAL = II->getAttributes(); local
1906 if (PAL.getRetAttributes() != Attribute::None)
1907 Out << ' ' << Attribute::getAsString(PAL.getRetAttributes());
1927 writeParamOperand(II->getArgOperand(op), PAL
[all...]
H A DInstructions.cpp334 AttrListPtr PAL = getAttributes(); local
335 PAL = PAL.addAttr(i, attr);
336 setAttributes(PAL);
340 AttrListPtr PAL = getAttributes(); local
341 PAL = PAL.removeAttr(i, attr);
342 setAttributes(PAL);
574 AttrListPtr PAL = getAttributes(); local
575 PAL
580 AttrListPtr PAL = getAttributes(); local
[all...]
H A DCore.cpp1370 const AttrListPtr PAL = Func->getAttributes(); local
1371 const AttrListPtr PALnew = PAL.addAttr(~0U, Attributes(PA));
1377 const AttrListPtr PAL = Func->getAttributes(); local
1378 const AttrListPtr PALnew = PAL.removeAttr(~0U, Attributes(PA));
1384 const AttrListPtr PAL = Func->getAttributes(); local
1385 Attributes attr = PAL.getFnAttributes();
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp234 AttrListPtr PAL = CS.getAttributes(); local
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);
249 cast<InvokeInst>(New)->setAttributes(PAL);
253 cast<CallInst>(New)->setAttributes(PAL);
654 const AttrListPtr &PAL = F->getAttributes(); local
[all...]
H A DPruneEH.cpp148 const AttrListPtr &PAL = F->getAttributes(); local
149 const AttrListPtr &NPAL = PAL.addAttr(~0, NewAttributes);
150 if (PAL != NPAL) {
H A DArgumentPromotion.cpp517 const AttrListPtr &PAL = F->getAttributes(); local
520 if (Attributes attrs = PAL.getRetAttributes())
537 if (Attributes attrs = PAL.getParamAttributes(ArgIndex))
590 if (Attributes attrs = PAL.getFnAttributes())
/external/llvm/include/llvm/Support/
H A DCallSite.h183 void setAttributes(const AttrListPtr &PAL) { argument
184 CALLSITE_DELEGATE_SETTER(setAttributes(PAL));
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios.c340 modeinfo.number &= ~(VGA|PAL);
341 modeinfo.number |= XBIOS_oldvmode & (VGA|PAL);
355 modeinfo.number &= ~(VGA|PAL);
356 modeinfo.number |= XBIOS_oldvmode & (VGA|PAL);
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp144 void printAttributes(const AttrListPtr &PAL, const std::string &name);
467 void CppWriter::printAttributes(const AttrListPtr &PAL, argument
471 if (!PAL.isEmpty()) {
475 for (unsigned i = 0; i < PAL.getNumSlots(); ++i) {
476 unsigned index = PAL.getSlot(i).Index;
477 Attributes attrs = PAL.getSlot(i).Attrs;
/external/clang/lib/CodeGen/
H A DCGCall.cpp925 AttributeListType &PAL,
990 PAL.push_back(llvm::AttributeWithIndex::get(Index, SRETAttrs));
1004 PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
1036 PAL.push_back(llvm::AttributeWithIndex::get(Index + I, Attrs));
1068 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attrs));
1072 PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
923 ConstructAttributeList(const CGFunctionInfo &FI, const Decl *TargetDecl, AttributeListType &PAL, unsigned &CallingConv) argument
H A DCodeGenModule.h810 /// \param PAL [out] - On return, the attribute list to use.
814 AttributeListType &PAL,
/external/llvm/lib/AsmParser/
H A DLLParser.cpp2741 AttrListPtr PAL = AttrListPtr::get(Attrs);
2743 if (PAL.paramHasAttr(1, Attribute::StructRet) && !RetType->isVoidTy())
2796 Fn->setAttributes(PAL);
3288 AttrListPtr PAL = AttrListPtr::get(Attrs);
3292 II->setAttributes(PAL);
3684 AttrListPtr PAL = AttrListPtr::get(Attrs);
3689 CI->setAttributes(PAL);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1425 const AttrListPtr &PAL = F->getAttributes(); local
1459 if (PAL.paramHasAttr(paramIndex+1, Attribute::ByVal) == false) {
1524 // <a> = PAL.getparamalignment
1526 unsigned align = PAL.getParamAlignment(paramIndex+1);
H A DNVPTXISelLowering.cpp922 const AttrListPtr &PAL = F->getAttributes(); local
968 if (PAL.paramHasAttr(i+1, Attribute::ByVal) == false) {
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2363 AttrListPtr PAL = getAttributes(Record[0]);
2405 cast<InvokeInst>(I)->setAttributes(PAL);
2620 AttrListPtr PAL = getAttributes(Record[0]);
2662 cast<CallInst>(I)->setAttributes(PAL);
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 2446 milliseconds