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

  /src/external/apache2/llvm/dist/llvm/lib/IR/
AttributeImpl.h 308 bool hasFnAttribute(Attribute::AttrKind Kind) const {
Attributes.cpp 1580 bool AttributeList::hasFnAttribute(Attribute::AttrKind Kind) const {
1581 return pImpl && pImpl->hasFnAttribute(Kind);
1584 bool AttributeList::hasFnAttribute(StringRef Kind) const {
2161 if (!Callee.hasFnAttribute(Attribute::AlwaysInline)) {
2178 if (Callee.hasFnAttribute(Attribute::StackProtectReq)) {
2181 } else if (Callee.hasFnAttribute(Attribute::StackProtectStrong) &&
2182 !Caller.hasFnAttribute(Attribute::StackProtectReq)) {
2185 } else if (Callee.hasFnAttribute(Attribute::StackProtect) &&
2186 !Caller.hasFnAttribute(Attribute::StackProtectReq) &&
2187 !Caller.hasFnAttribute(Attribute::StackProtectStrong)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Function.h 284 return hasFnAttribute("coroutine.presplit");
355 bool hasFnAttribute(Attribute::AttrKind Kind) const {
356 return AttributeSets.hasFnAttribute(Kind);
360 bool hasFnAttribute(StringRef Kind) const {
361 return AttributeSets.hasFnAttribute(Kind);
376 if (!hasFnAttribute(Attribute::StackAlignment))
386 if (!hasFnAttribute(Attribute::StackAlignment))
549 return hasFnAttribute(Attribute::ReadNone);
557 return doesNotAccessMemory() || hasFnAttribute(Attribute::ReadOnly);
565 return doesNotAccessMemory() || hasFnAttribute(Attribute::WriteOnly)
    [all...]

Completed in 17 milliseconds