HomeSort by relevance Sort by last modified time
    Searched defs:PAL (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 148 const AttrListPtr &PAL = F->getAttributes();
149 const AttrListPtr &NPAL = PAL.addAttr(~0, NewAttributes);
150 if (PAL != NPAL) {
ArgumentPromotion.cpp 518 const AttrListPtr &PAL = F->getAttributes();
521 if (Attributes attrs = PAL.getRetAttributes())
538 if (Attributes attrs = PAL.getParamAttributes(ArgIndex))
593 if (Attributes attrs = PAL.getFnAttributes())
    [all...]
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...]
  /external/llvm/lib/VMCore/
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[ ";
Function.cpp 244 AttrListPtr PAL = getAttributes();
245 PAL = PAL.addAttr(i, attr);
246 setAttributes(PAL);
250 AttrListPtr PAL = getAttributes();
251 PAL = PAL.removeAttr(i, attr);
252 setAttributes(PAL);
AsmWriter.cpp     [all...]
Instructions.cpp 246 AttrListPtr PAL = getAttributes();
247 PAL = PAL.addAttr(i, attr);
248 setAttributes(PAL);
252 AttrListPtr PAL = getAttributes();
253 PAL = PAL.removeAttr(i, attr);
254 setAttributes(PAL);
486 AttrListPtr PAL = getAttributes();
487 PAL = PAL.addAttr(i, attr)
    [all...]
Core.cpp     [all...]
  /external/llvm/lib/Target/CBackend/
CBackend.cpp 169 const AttrListPtr &PAL = AttrListPtr());
175 const AttrListPtr &PAL,
385 const AttrListPtr &PAL,
400 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
405 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
417 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str());
476 bool IgnoreName, const AttrListPtr &PAL) {
492 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
499 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
511 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str())
    [all...]

Completed in 705 milliseconds