| /openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/ |
| H A D | DeadArgumentElimination.cpp | 185 AttributeList PAL = CB->getAttributes(); in deleteDeadVarargs() local 186 if (!PAL.isEmpty()) { in deleteDeadVarargs() 189 ArgAttrs.push_back(PAL.getParamAttrs(ArgNo)); in deleteDeadVarargs() 190 PAL = AttributeList::get(F.getContext(), PAL.getFnAttrs(), in deleteDeadVarargs() 191 PAL.getRetAttrs(), ArgAttrs); in deleteDeadVarargs() 207 NewCB->setAttributes(PAL); in deleteDeadVarargs() 737 const AttributeList &PAL = F->getAttributes(); in removeDeadStuffFromFunction() local 751 ArgAttrVec.push_back(PAL.getParamAttrs(ArgI)); in removeDeadStuffFromFunction() 752 HasLiveReturnedArg |= PAL.hasParamAttr(ArgI, Attribute::Returned); in removeDeadStuffFromFunction() 827 AttrBuilder RAttrs(F->getContext(), PAL.getRetAttrs()); in removeDeadStuffFromFunction() [all …]
|
| H A D | ArgumentPromotion.cpp | 161 AttributeList PAL = F->getAttributes(); in doPromotion() local 170 ArgAttrVec.push_back(PAL.getParamAttrs(ArgNo)); in doPromotion() 211 NF->setAttributes(AttributeList::get(F->getContext(), PAL.getFnAttrs(), in doPromotion() 212 PAL.getRetAttrs(), ArgAttrVec)); in doPromotion()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/DirectX/DXILWriter/ |
| H A D | DXILValueEnumerator.h | 174 unsigned getAttributeListID(AttributeList PAL) const { in getAttributeListID() argument 175 if (PAL.isEmpty()) in getAttributeListID() 177 AttributeListMapType::const_iterator I = AttributeListMap.find(PAL); in getAttributeListID() 299 void EnumerateAttributes(AttributeList PAL);
|
| H A D | DXILValueEnumerator.cpp | 996 void ValueEnumerator::EnumerateAttributes(AttributeList PAL) { in EnumerateAttributes() argument 997 if (PAL.isEmpty()) in EnumerateAttributes() 1001 unsigned &Entry = AttributeListMap[PAL]; in EnumerateAttributes() 1004 AttributeLists.push_back(PAL); in EnumerateAttributes() 1009 for (unsigned i : PAL.indexes()) { in EnumerateAttributes() 1010 AttributeSet AS = PAL.getAttributes(i); in EnumerateAttributes()
|
| /openbsd-src/gnu/llvm/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.h | 175 unsigned getAttributeListID(AttributeList PAL) const { in getAttributeListID() argument 176 if (PAL.isEmpty()) return 0; // Null maps to zero. in getAttributeListID() 177 AttributeListMapType::const_iterator I = AttributeListMap.find(PAL); in getAttributeListID() 297 void EnumerateAttributes(AttributeList PAL);
|
| H A D | ValueEnumerator.cpp | 992 void ValueEnumerator::EnumerateAttributes(AttributeList PAL) { in EnumerateAttributes() argument 993 if (PAL.isEmpty()) return; // null is always 0. in EnumerateAttributes() 996 unsigned &Entry = AttributeListMap[PAL]; in EnumerateAttributes() 999 AttributeLists.push_back(PAL); in EnumerateAttributes() 1004 for (unsigned i : PAL.indexes()) { in EnumerateAttributes() 1005 AttributeSet AS = PAL.getAttributes(i); in EnumerateAttributes()
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | Lint.cpp | 230 AttributeList PAL = I.getAttributes(); in visitCallBase() local 235 if (PAL.hasParamAttr(ArgNo, Attribute::ByVal)) in visitCallBase() 263 const AttributeList &PAL = CI->getAttributes(); in visitCallBase() local 268 if (PAL.hasParamAttr(ArgNo++, Attribute::ByVal)) in visitCallBase()
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | riff | 13 >8 string PAL \b, palette 191 >8 string PAL \b, palette
|
| H A D | animation | 347 >>4 belong&0xFFFFFF00 0x30024000 \b, PAL Capture 351 >>>5 beshort&0x0FFF 0x0240 \b PAL 355 >>>7 byte&0xF0 0x80 \b, PAL 4:3 367 >>>5 beshort&0x0FFF 0x0120 \b PAL 371 >>>7 byte&0xF0 0x80 \b, PAL 4:3 373 >>>5 beshort&0x0FFF 0x0240 \b PAL 625 379 >>>5 beshort&0x0FFF 0x0240 \b PAL 625 385 >>>5 beshort&0x0FFF 0x0240 \b PAL 625 822 >3 byte &0x80 (PAL)
|
| H A D | console | 215 >>0x15 byte &0x2 \b, PAL standard
|
| H A D | audio | 336 >122 byte&0x2 =1 dual PAL/NTSC 337 >122 byte&0x1 =1 PAL
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | AsmWriter.cpp | 4224 const AttributeList &PAL = CI->getAttributes(); in printInstruction() local 4226 if (PAL.hasRetAttrs()) in printInstruction() 4227 Out << ' ' << PAL.getAsString(AttributeList::ReturnIndex); in printInstruction() 4243 writeParamOperand(CI->getArgOperand(op), PAL.getParamAttrs(op)); in printInstruction() 4257 if (PAL.hasFnAttrs()) in printInstruction() 4258 Out << " #" << Machine.getAttributeGroupSlot(PAL.getFnAttrs()); in printInstruction() 4265 const AttributeList &PAL = II->getAttributes(); in printInstruction() local 4273 if (PAL.hasRetAttrs()) in printInstruction() 4274 Out << ' ' << PAL.getAsString(AttributeList::ReturnIndex); in printInstruction() 4291 writeParamOperand(II->getArgOperand(op), PAL.getParamAttrs(op)); in printInstruction() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXAsmPrinter.cpp | 1453 const AttributeList &PAL = F->getAttributes(); in emitFunctionParamList() local 1512 auto getOptimalAlignForParam = [TLI, &DL, &PAL, F, in emitFunctionParamList() 1515 MaybeAlign ParamAlign = PAL.getParamAlignment(paramIndex); in emitFunctionParamList() 1519 if (!PAL.hasParamAttr(paramIndex, Attribute::ByVal)) { in emitFunctionParamList() 1607 Type *ETy = PAL.getParamByValType(paramIndex); in emitFunctionParamList() 1619 F, ETy, PAL.getParamAlignment(paramIndex).valueOrOne(), DL); in emitFunctionParamList()
|
| H A D | NVPTXISelLowering.cpp | 2641 const AttributeList &PAL = F->getAttributes(); in LowerFormalArguments() local 2708 if (!PAL.hasParamAttr(i, Attribute::ByVal)) { in LowerFormalArguments()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/XCore/ |
| H A D | XCoreFrameLowering.cpp | 240 const AttributeList &PAL = MF.getFunction().getAttributes(); in emitPrologue() local 241 if (PAL.hasAttrSomewhere(Attribute::Nest)) in emitPrologue()
|
| /openbsd-src/gnu/usr.bin/perl/t/re/ |
| H A D | re_tests | 1165 /^(?<PAL>(?<CHAR>.)((?&PAL)|.?)\k<CHAR>)$/ madamimadam y $& madamimadam 1166 /^(?<PAL>(?<CHAR>.)((?&PAL)|.?)\k<CHAR>)$/ madamiamadam n - - 1367 /^(?P<PAL>(?P<CHAR>.)((?P>PAL)|.?)(?P=CHAR))$/ madamimadam y $& madamimadam 1368 /^(?P<PAL>(?P<CHAR>.)((?P>PAL)|.?)(?P=CHAR))$/ madamiamadam n - -
|
| /openbsd-src/gnu/llvm/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 5978 AttributeList PAL = in parseFunctionHeader() local 5982 if (PAL.hasParamAttr(0, Attribute::StructRet) && !RetType->isVoidTy()) in parseFunctionHeader() 6048 Fn->setAttributes(PAL); in parseFunctionHeader() 6739 AttributeList PAL = in parseInvoke() local 6746 II->setAttributes(PAL); in parseInvoke() 7052 AttributeList PAL = in parseCallBr() local 7060 CBI->setAttributes(PAL); in parseCallBr() 7447 AttributeList PAL = in parseCall() local 7462 CI->setAttributes(PAL); in parseCall()
|
| /openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 5512 AttributeList PAL = getAttributes(Record[OpNum++]); in parseFunctionBody() local 5583 cast<InvokeInst>(I)->setAttributes(PAL); in parseFunctionBody() 5604 AttributeList PAL = getAttributes(Record[OpNum++]); in parseFunctionBody() local 5740 cast<CallBrInst>(I)->setAttributes(PAL); in parseFunctionBody() 6313 AttributeList PAL = getAttributes(Record[OpNum++]); in parseFunctionBody() local 6400 cast<CallInst>(I)->setAttributes(PAL); in parseFunctionBody()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CodeGenModule.cpp | 1739 llvm::AttributeList PAL; in SetLLVMFunctionAttributes() local 1740 ConstructAttributeList(F->getName(), Info, GD, PAL, CallingConv, in SetLLVMFunctionAttributes() 1742 F->setAttributes(PAL); in SetLLVMFunctionAttributes()
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | AMDGPUUsage.rst | 84 - AMD's PAL runtime using the *pal-amdhsa* loader on 87 ``amdpal`` Graphic shaders and compute kernels executed on AMD's PAL 1104 * ``ELFABIVERSION_AMDGPU_PAL`` is used to specify the version of AMD PAL 13893 …"amdpal.version" sequence of Required PAL code object metadata (major, minor) version. The … 14129 PAL abstracts this functionality by exposing a set of 128 *user data 14133 data registers*, and PAL is responsible for implementing that mapping, 14181 …0x1000000A EsGsLdsSize Indicates that PAL will program this user-SGPR to contain the amoun… 14229 or more hardware shader stages. In that case, the PAL runtime expects 14235 managed by the PAL runtime in GPU-accessible memory that can be made
|
| /openbsd-src/gnu/usr.bin/binutils/opcodes/ |
| H A D | ChangeLog-0203 | 745 PAL entry points.
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/ |
| H A D | ChangeLog-0203 | 745 PAL entry points.
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/doc/ |
| H A D | extend.texi | 5147 PAL calls, but when invoked with @option{-mtls-kernel}, they invoke
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrFormats.td | 12045 let Acq = 0b1, Rel = 0b1 in def PAL : BaseRCWOPPEncoding<prefix # "pal">;
|
| /openbsd-src/gnu/gcc/gcc/doc/ |
| H A D | extend.texi | 6253 PAL calls, but when invoked with @option{-mtls-kernel}, they invoke
|