OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hasParamAttribute
(Results
1 - 20
of
20
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUAliasAnalysis.cpp
165
if (F->
hasParamAttribute
(ArgNo, Attribute::NoAlias) &&
166
(F->
hasParamAttribute
(ArgNo, Attribute::ReadNone) ||
167
F->
hasParamAttribute
(ArgNo, Attribute::ReadOnly))) {
/src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp
648
if (Attrs.
hasParamAttribute
(I, Attribute::ByVal) ||
649
Attrs.
hasParamAttribute
(I, Attribute::SwiftSelf) ||
650
Attrs.
hasParamAttribute
(I, Attribute::SwiftError) ||
651
Attrs.
hasParamAttribute
(I, Attribute::InAlloca) ||
652
Attrs.
hasParamAttribute
(I, Attribute::Nest))
832
if (Attrs.
hasParamAttribute
(I, Attribute::ByVal) ||
833
Attrs.
hasParamAttribute
(I, Attribute::SwiftSelf) ||
834
Attrs.
hasParamAttribute
(I, Attribute::SwiftError) ||
835
Attrs.
hasParamAttribute
(I, Attribute::InAlloca) ||
836
Attrs.
hasParamAttribute
(I, Attribute::Nest)
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Function.h
449
bool
hasParamAttribute
(unsigned ArgNo, Attribute::AttrKind Kind) const {
450
return getAttributes().
hasParamAttribute
(ArgNo, Kind);
695
return AttributeSets.
hasParamAttribute
(0, Attribute::StructRet) ||
696
AttributeSets.
hasParamAttribute
(1, Attribute::StructRet);
Attributes.h
657
bool
hasParamAttribute
(unsigned ArgNo, Attribute::AttrKind Kind) const;
/src/external/apache2/llvm/dist/llvm/lib/IR/
Function.cpp
94
if (getParent()->
hasParamAttribute
(getArgNo(), Attribute::NonNull) &&
96
getParent()->
hasParamAttribute
(getArgNo(), Attribute::NoUndef)))
117
return getParent()->
hasParamAttribute
(getArgNo(), Attribute::SwiftSelf);
121
return getParent()->
hasParamAttribute
(getArgNo(), Attribute::SwiftError);
138
return Attrs.
hasParamAttribute
(getArgNo(), Attribute::ByVal) ||
139
Attrs.
hasParamAttribute
(getArgNo(), Attribute::InAlloca) ||
140
Attrs.
hasParamAttribute
(getArgNo(), Attribute::Preallocated);
147
return Attrs.
hasParamAttribute
(getArgNo(), Attribute::ByVal) ||
148
Attrs.
hasParamAttribute
(getArgNo(), Attribute::StructRet) ||
149
Attrs.
hasParamAttribute
(getArgNo(), Attribute::InAlloca) |
[
all
...]
Verifier.cpp
2440
Assert(F.arg_empty() || Attrs.
hasParamAttribute
(0, Attribute::ByVal),
2460
Assert(!Attrs.
hasParamAttribute
(i, Attribute::ByVal),
2462
Assert(!Attrs.
hasParamAttribute
(i, Attribute::Preallocated),
2464
Assert(!Attrs.
hasParamAttribute
(i, Attribute::InAlloca),
2467
if (Attrs.
hasParamAttribute
(i, Attribute::ByRef)) {
2508
if (Attrs.
hasParamAttribute
(i, Attribute::SwiftError)) {
3197
if (Attrs.
hasParamAttribute
(i, Attribute::ImmArg)) {
3200
Assert(Callee && Callee->
hasParamAttribute
(i, Attribute::ImmArg),
3229
if (Attrs.
hasParamAttribute
(Idx, Attribute::Nest))
3231
if (Attrs.
hasParamAttribute
(Idx, Attribute::Returned)
[
all
...]
Attributes.cpp
1588
bool AttributeList::
hasParamAttribute
(unsigned ArgNo,
Instructions.cpp
342
if (Attrs.
hasParamAttribute
(ArgNo, Kind))
345
return F->getAttributes().
hasParamAttribute
(ArgNo, Kind);
AutoUpgrade.cpp
4374
!F.arg_empty() && !F.
hasParamAttribute
(0, Attribute::ByVal)) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp
107
if (F.
hasParamAttribute
(ArgNo, Attribute::NoCapture))
115
if (F.
hasParamAttribute
(ArgNo, Attribute::NoAlias))
123
if (F.
hasParamAttribute
(ArgNo, Attribute::ReadOnly))
131
if (F.
hasParamAttribute
(ArgNo, Attribute::WriteOnly))
139
if (F.
hasParamAttribute
(ArgNo, Attribute::SExt))
159
if (!F.
hasParamAttribute
(ArgNo, Attribute::NoUndef)) {
169
if (F.
hasParamAttribute
(ArgNo, Attribute::NoUndef))
181
if (F.
hasParamAttribute
(ArgNo, Attribute::Returned))
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
Lint.cpp
238
if (PAL.
hasParamAttribute
(ArgNo, Attribute::ByVal))
271
if (PAL.
hasParamAttribute
(ArgNo++, Attribute::ByVal))
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Utils/
AMDGPUBaseInfo.cpp
1806
return F->getAttributes().
hasParamAttribute
(A->getArgNo(), Attribute::InReg) ||
1807
F->getAttributes().
hasParamAttribute
(A->getArgNo(), Attribute::ByVal);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp
765
HasLiveReturnedArg |= PAL.
hasParamAttribute
(ArgI, Attribute::Returned);
AttributorAttributes.cpp
4175
if (F.
hasParamAttribute
(u, Attribute::Returned)) {
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp
111
IsSExt = Attrs.
hasParamAttribute
(ArgIdx, Attribute::SExt);
112
IsZExt = Attrs.
hasParamAttribute
(ArgIdx, Attribute::ZExt);
113
IsInReg = Attrs.
hasParamAttribute
(ArgIdx, Attribute::InReg);
114
IsSRet = Attrs.
hasParamAttribute
(ArgIdx, Attribute::StructRet);
115
IsNest = Attrs.
hasParamAttribute
(ArgIdx, Attribute::Nest);
116
IsReturned = Attrs.
hasParamAttribute
(ArgIdx, Attribute::Returned);
117
IsSwiftSelf = Attrs.
hasParamAttribute
(ArgIdx, Attribute::SwiftSelf);
118
IsSwiftAsync = Attrs.
hasParamAttribute
(ArgIdx, Attribute::SwiftAsync);
119
IsSwiftError = Attrs.
hasParamAttribute
(ArgIdx, Attribute::SwiftError);
122
IsByVal = Attrs.
hasParamAttribute
(ArgIdx, Attribute::ByVal)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp
2560
if (CallerPAL.
hasParamAttribute
(i, Attribute::SwiftError))
2565
if (ParamTy != ActTy && CallerPAL.
hasParamAttribute
(i, Attribute::ByVal)) {
2635
if (CallerPAL.
hasParamAttribute
(i, Attribute::ByVal)) {
/src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp
1460
if (!PAL.
hasParamAttribute
(paramIndex, Attribute::ByVal)) {
NVPTXISelLowering.cpp
2533
if (!PAL.
hasParamAttribute
(i, Attribute::ByVal)) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroSplit.cpp
1239
if (Attrs.
hasParamAttribute
(0, AK))
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp
3373
if (!Func->
hasParamAttribute
(i, Kind))
Completed in 92 milliseconds
Indexes created Tue Feb 24 01:34:59 UTC 2026