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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DFunction.cpp400 AttributeList PAL = getAttributes(); local
401 PAL = PAL.addAttribute(getContext(), i, Kind);
402 setAttributes(PAL);
406 AttributeList PAL = getAttributes(); local
407 PAL = PAL.addAttribute(getContext(), i, Attr);
408 setAttributes(PAL);
412 AttributeList PAL = getAttributes(); local
413 PAL
418 AttributeList PAL = getAttributes(); local
424 AttributeList PAL = getAttributes(); local
430 AttributeList PAL = getAttributes(); local
436 AttributeList PAL = getAttributes(); local
442 AttributeList PAL = getAttributes(); local
448 AttributeList PAL = getAttributes(); local
454 AttributeList PAL = getAttributes(); local
460 AttributeList PAL = getAttributes(); local
466 AttributeList PAL = getAttributes(); local
472 AttributeList PAL = getAttributes(); local
478 AttributeList PAL = getAttributes(); local
484 AttributeList PAL = getAttributes(); local
491 AttributeList PAL = getAttributes(); local
[all...]
H A DAsmWriter.cpp3858 const AttributeList &PAL = CI->getAttributes(); local
3860 if (PAL.hasAttributes(AttributeList::ReturnIndex))
3861 Out << ' ' << PAL.getAsString(AttributeList::ReturnIndex);
3878 writeParamOperand(CI->getArgOperand(op), PAL.getParamAttributes(op));
3889 if (PAL.hasAttributes(AttributeList::FunctionIndex))
3890 Out << " #" << Machine.getAttributeGroupSlot(PAL.getFnAttributes());
3897 const AttributeList &PAL = II->getAttributes(); local
3905 if (PAL.hasAttributes(AttributeList::ReturnIndex))
3906 Out << ' ' << PAL.getAsString(AttributeList::ReturnIndex);
3923 writeParamOperand(II->getArgOperand(op), PAL
3940 const AttributeList &PAL = CBI->getAttributes(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstrTypes.h1402 AttributeList PAL = getAttributes(); local
1403 PAL = PAL.addAttribute(getContext(), i, Kind);
1404 setAttributes(PAL);
1409 AttributeList PAL = getAttributes(); local
1410 PAL = PAL.addAttribute(getContext(), i, Attr);
1411 setAttributes(PAL);
1417 AttributeList PAL = getAttributes();
1418 PAL
[all...]
H A DCallSite.h341 void setAttributes(AttributeList PAL) { argument
342 CALLSITE_DELEGATE_SETTER(setAttributes(PAL));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h176 unsigned getAttributeListID(AttributeList PAL) const {
177 if (PAL.isEmpty()) return 0; // Null maps to zero.
178 AttributeListMapType::const_iterator I = AttributeListMap.find(PAL);
295 void EnumerateAttributes(AttributeList PAL);
H A DValueEnumerator.cpp918 void ValueEnumerator::EnumerateAttributes(AttributeList PAL) { argument
919 if (PAL.isEmpty()) return; // null is always 0.
922 unsigned &Entry = AttributeListMap[PAL];
925 AttributeLists.push_back(PAL);
930 for (unsigned i = PAL.index_begin(), e = PAL.index_end(); i != e; ++i) {
931 AttributeSet AS = PAL.getAttributes(i);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp187 AttributeList PAL = CS.getAttributes(); local
188 if (!PAL.isEmpty()) {
191 ArgAttrs.push_back(PAL.getParamAttributes(ArgNo));
192 PAL = AttributeList::get(Fn.getContext(), PAL.getFnAttributes(),
193 PAL.getRetAttributes(), ArgAttrs);
209 NewCS.setAttributes(PAL);
745 const AttributeList &PAL = F->getAttributes(); local
759 ArgAttrVec.push_back(PAL.getParamAttributes(i));
760 HasLiveReturnedArg |= PAL
[all...]
H A DArgumentPromotion.cpp136 AttributeList PAL = F->getAttributes(); local
153 ArgAttrVec.push_back(PAL.getParamAttributes(ArgNo));
232 NF->setAttributes(AttributeList::get(F->getContext(), PAL.getFnAttributes(),
233 PAL.getRetAttributes(), ArgAttrVec));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp269 AttributeList PAL = CS.getAttributes(); local
275 if (PAL.hasParamAttribute(ArgNo, Attribute::ByVal))
303 const AttributeList &PAL = CI->getAttributes(); local
308 if (PAL.hasParamAttribute(ArgNo++, Attribute::ByVal))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp240 const AttributeList &PAL = MF.getFunction().getAttributes(); local
241 if (PAL.hasAttrSomewhere(Attribute::Nest))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1412 const AttributeList &PAL = F->getAttributes(); local
1471 if (!PAL.hasParamAttribute(paramIndex, Attribute::ByVal)) {
1474 // <a> = PAL.getparamalignment
1477 PAL.getParamAlignment(paramIndex), Ty);
1559 // <a> = PAL.getparamalignment
1562 DL.getValueOrABITypeAlignment(PAL.getParamAlignment(paramIndex), ETy);
H A DNVPTXISelLowering.cpp2472 const AttributeList &PAL = F->getAttributes(); local
2552 if (!PAL.hasParamAttribute(i, Attribute::ByVal)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp5433 AttributeList PAL =
5437 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
5499 Fn->setAttributes(PAL);
6125 AttributeList PAL =
6132 II->setAttributes(PAL);
6455 AttributeList PAL =
6463 CBI->setAttributes(PAL);
6863 AttributeList PAL =
6876 CI->setAttributes(PAL);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4474 AttributeList PAL = getAttributes(Record[OpNum++]); local
4540 cast<InvokeInst>(I)->setAttributes(PAL);
4557 AttributeList PAL = getAttributes(Record[OpNum++]); local
4627 cast<CallBrInst>(I)->setAttributes(PAL);
4996 AttributeList PAL = getAttributes(Record[OpNum++]); local
5078 cast<CallInst>(I)->setAttributes(PAL);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp1236 llvm::AttributeList PAL; local
1237 ConstructAttributeList(F->getName(), Info, GD, PAL, CallingConv, false);
1238 F->setAttributes(PAL);

Completed in 252 milliseconds