HomeSort by: relevance | last modified time | path
    Searched defs:PAL (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 240 const AttributeList &PAL = MF.getFunction().getAttributes();
241 if (PAL.hasAttrSomewhere(Attribute::Nest))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 187 AttributeList PAL = CB->getAttributes();
188 if (!PAL.isEmpty()) {
191 ArgAttrs.push_back(PAL.getParamAttributes(ArgNo));
192 PAL = AttributeList::get(Fn.getContext(), PAL.getFnAttributes(),
193 PAL.getRetAttributes(), ArgAttrs);
209 NewCB->setAttributes(PAL);
750 const AttributeList &PAL = F->getAttributes();
764 ArgAttrVec.push_back(PAL.getParamAttributes(ArgI));
765 HasLiveReturnedArg |= PAL.hasParamAttribute(ArgI, Attribute::Returned)
    [all...]
ArgumentPromotion.cpp 135 AttributeList PAL = F->getAttributes();
152 ArgAttrVec.push_back(PAL.getParamAttributes(ArgNo));
235 NF->setAttributes(AttributeList::get(F->getContext(), PAL.getFnAttributes(),
236 PAL.getRetAttributes(), ArgAttrVec));
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
InstrTypes.h 1494 AttributeList PAL = getAttributes();
1495 PAL = PAL.addAttribute(getContext(), i, Kind);
1496 setAttributes(PAL);
1501 AttributeList PAL = getAttributes();
1502 PAL = PAL.addAttribute(getContext(), i, Attr);
1503 setAttributes(PAL);
1509 AttributeList PAL = getAttributes();
1510 PAL = PAL.addParamAttribute(getContext(), ArgNo, Kind)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
Lint.cpp 233 AttributeList PAL = I.getAttributes();
238 if (PAL.hasParamAttribute(ArgNo, Attribute::ByVal))
266 const AttributeList &PAL = CI->getAttributes();
271 if (PAL.hasParamAttribute(ArgNo++, Attribute::ByVal))
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Function.cpp 534 AttributeList PAL = getAttributes();
535 PAL = PAL.addAttribute(getContext(), i, Kind);
536 setAttributes(PAL);
540 AttributeList PAL = getAttributes();
541 PAL = PAL.addAttribute(getContext(), i, Attr);
542 setAttributes(PAL);
546 AttributeList PAL = getAttributes();
547 PAL = PAL.addAttributes(getContext(), i, Attrs)
    [all...]
AsmWriter.cpp 4141 const AttributeList &PAL = CI->getAttributes();
4143 if (PAL.hasAttributes(AttributeList::ReturnIndex))
4144 Out << ' ' << PAL.getAsString(AttributeList::ReturnIndex);
4161 writeParamOperand(CI->getArgOperand(op), PAL.getParamAttributes(op));
4172 if (PAL.hasAttributes(AttributeList::FunctionIndex))
4173 Out << " #" << Machine.getAttributeGroupSlot(PAL.getFnAttributes());
4180 const AttributeList &PAL = II->getAttributes();
4188 if (PAL.hasAttributes(AttributeList::ReturnIndex))
4189 Out << ' ' << PAL.getAsString(AttributeList::ReturnIndex);
4206 writeParamOperand(II->getArgOperand(op), PAL.getParamAttributes(op))
    [all...]
  /src/sys/arch/amiga/dev/
grf_rhreg.h 98 unsigned char * PAL; /* points to 16*3 byte RGB-palette data */
164 "C" void RZ3LoadPalette (unsigned char * pal, unsigned char firstcol, unsigned char colors);
258 void RZ3LoadPalette(unsigned char * pal, unsigned char firstcol, unsigned char colors);
261 * Loads the palette-registers. "pal" points to an array of unsigned char
690 void RZ3LoadPalette(struct grf_softc *gp, unsigned char *pal,
grf_rtreg.h 103 unsigned char * PAL; /* points to 16*3 byte RGB-palette data */
287 void LoadPalette(unsigned char * pal, unsigned char firstcol,
290 Loads the palette-registers. "pal" points to an array of unsigned char
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 1401 const AttributeList &PAL = F->getAttributes();
1460 if (!PAL.hasParamAttribute(paramIndex, Attribute::ByVal)) {
1463 // <a> = PAL.getparamalignment
1466 PAL.getParamAlignment(paramIndex), Ty);
1548 // <a> = PAL.getparamalignment
1551 DL.getValueOrABITypeAlignment(PAL.getParamAlignment(paramIndex), ETy);
NVPTXISelLowering.cpp 2453 const AttributeList &PAL = F->getAttributes();
2533 if (!PAL.hasParamAttribute(i, Attribute::ByVal)) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.cpp 1484 llvm::AttributeList PAL;
1485 ConstructAttributeList(F->getName(), Info, GD, PAL, CallingConv,
1487 F->setAttributes(PAL);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 4670 AttributeList PAL = getAttributes(Record[OpNum++]);
4736 cast<InvokeInst>(I)->setAttributes(PAL);
4753 AttributeList PAL = getAttributes(Record[OpNum++]);
4823 cast<CallBrInst>(I)->setAttributes(PAL);
5307 AttributeList PAL = getAttributes(Record[OpNum++]);
5389 cast<CallInst>(I)->setAttributes(PAL);

Completed in 179 milliseconds