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

  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 97 unsigned getAttributeID(const AttrListPtr &PAL) const {
98 if (PAL.isEmpty()) return 0; // Null maps to zero.
99 AttributeMapType::const_iterator I = AttributeMap.find(PAL.getRawPointer());
145 void EnumerateAttributes(const AttrListPtr &PAL);
ValueEnumerator.cpp 386 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) {
387 if (PAL.isEmpty()) return; // null is always 0.
389 unsigned &Entry = AttributeMap[PAL.getRawPointer()];
392 Attributes.push_back(PAL);
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 97 unsigned getAttributeID(const AttrListPtr &PAL) const {
98 if (PAL.isEmpty()) return 0; // Null maps to zero.
99 AttributeMapType::const_iterator I = AttributeMap.find(PAL.getRawPointer());
145 void EnumerateAttributes(const AttrListPtr &PAL);
ValueEnumerator.cpp 386 void ValueEnumerator::EnumerateAttributes(const AttrListPtr &PAL) {
387 if (PAL.isEmpty()) return; // null is always 0.
389 unsigned &Entry = AttributeMap[PAL.getRawPointer()];
392 Attributes.push_back(PAL);
  /external/llvm/lib/VMCore/
Function.cpp 245 AttrListPtr PAL = getAttributes();
246 PAL = PAL.addAttr(i, attr);
247 setAttributes(PAL);
251 AttrListPtr PAL = getAttributes();
252 PAL = PAL.removeAttr(i, attr);
253 setAttributes(PAL);
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[ ";
AsmWriter.cpp     [all...]
Instructions.cpp 328 AttrListPtr PAL = getAttributes();
329 PAL = PAL.addAttr(i, attr);
330 setAttributes(PAL);
334 AttrListPtr PAL = getAttributes();
335 PAL = PAL.removeAttr(i, attr);
336 setAttributes(PAL);
568 AttrListPtr PAL = getAttributes();
569 PAL = PAL.addAttr(i, attr)
    [all...]
Core.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
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...]
PruneEH.cpp 149 const AttrListPtr &PAL = F->getAttributes();
150 const AttrListPtr &NPAL = PAL.addAttr(~0, NewAttributes);
151 if (PAL != NPAL) {
ArgumentPromotion.cpp 520 const AttrListPtr &PAL = F->getAttributes();
523 if (Attributes attrs = PAL.getRetAttributes())
540 if (Attributes attrs = PAL.getParamAttributes(ArgIndex))
593 if (Attributes attrs = PAL.getFnAttributes())
    [all...]
  /external/llvm/lib/Target/CBackend/
CBackend.cpp 159 const AttrListPtr &PAL = AttrListPtr());
165 const AttrListPtr &PAL,
377 const AttrListPtr &PAL,
392 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
397 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
409 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str());
468 bool IgnoreName, const AttrListPtr &PAL) {
484 if (PAL.paramHasAttr(Idx, Attribute::ByVal)) {
491 /*isSigned=*/PAL.paramHasAttr(Idx, Attribute::SExt), "");
503 /*isSigned=*/PAL.paramHasAttr(0, Attribute::SExt), FunctionInnards.str())
    [all...]
  /external/llvm/include/llvm/Support/
CallSite.h 183 void setAttributes(const AttrListPtr &PAL) {
184 CALLSITE_DELEGATE_SETTER(setAttributes(PAL));
  /external/qemu/distrib/sdl-1.2.12/src/video/xbios/
SDL_xbios.c 394 /* Keep vga/rvb, and pal/ntsc bits */
400 newvmode &= ~(VGA|PAL);
401 newvmode |= XBIOS_oldvmode & (VGA|PAL);
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 142 void printAttributes(const AttrListPtr &PAL, const std::string &name);
435 void CppWriter::printAttributes(const AttrListPtr &PAL,
439 if (!PAL.isEmpty()) {
443 for (unsigned i = 0; i < PAL.getNumSlots(); ++i) {
444 unsigned index = PAL.getSlot(i).Index;
445 Attributes attrs = PAL.getSlot(i).Attrs;
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 720 AttributeListType &PAL,
782 PAL.push_back(llvm::AttributeWithIndex::get(Index,
795 PAL.push_back(llvm::AttributeWithIndex::get(0, RetAttrs));
863 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
867 PAL.push_back(llvm::AttributeWithIndex::get(~0, FuncAttrs));
    [all...]
CodeGenModule.h 727 /// \param PAL [out] - On return, the attribute list to use.
731 AttributeListType &PAL,
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]

Completed in 501 milliseconds