| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | Scope.h | 241 unsigned getFlags() const { return Flags; } in getFlags() function 384 bool isFunctionScope() const { return getFlags() & Scope::FnScope; } in isFunctionScope() 387 bool isClassScope() const { return getFlags() & Scope::ClassScope; } in isClassScope() 392 return getFlags() & Scope::ClassInheritanceScope; in isClassInheritanceScope() 410 if (S->getFlags() & ObjCMethodScope) in isInObjcMethodScope() 421 if (S->getFlags() & ObjCMethodScope) in isInObjcMethodOuterScope() 430 return getFlags() & Scope::TemplateParamScope; in isTemplateParamScope() 436 return getFlags() & Scope::FunctionPrototypeScope; in isFunctionPrototypeScope() 442 return getFlags() & Scope::FunctionDeclarationScope; in isFunctionDeclarationScope() 447 return getFlags() & Scope::AtCatchScope; in isAtCatchScope() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | MCSymbolELF.cpp | 62 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STB_Shift); in setBinding() 121 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STT_Shift); in setType() 151 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STV_Shift); in setVisibility() 164 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STO_Shift); in setOther() 174 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_WeakrefUsedInReloc_Shift); in setIsWeakrefUsedInReloc() 179 return getFlags() & (0x1 << ELF_WeakrefUsedInReloc_Shift); in isWeakrefUsedInReloc() 183 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_IsSignature_Shift); in setIsSignature() 188 return getFlags() & (0x1 << ELF_IsSignature_Shift); in isSignature() 192 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_BindingSet_Shift); in setIsBindingSet() 197 return getFlags() & (0x1 << ELF_BindingSet_Shift); in isBindingSet() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MC/ |
| H A D | MCSymbolMachO.h | 66 return getFlags() & SF_NoDeadStrip; in isNoDeadStrip() 73 return getFlags() & SF_WeakReference; in isWeakReference() 80 return getFlags() & SF_WeakDefinition; in isWeakDefinition() 87 return getFlags() & SF_SymbolResolver; in isSymbolResolver() 98 return getFlags() & SF_AltEntry; in isAltEntry() 103 bool isCold() const { return getFlags() & SF_Cold; } in isCold() 114 uint16_t Flags = getFlags(); in getEncodedFlags()
|
| H A D | MCSymbolCOFF.h | 41 return (getFlags() & SF_ClassMask) >> SF_ClassShift; in getClass() 48 return getFlags() & SF_WeakExternal; in isWeakExternal() 55 return getFlags() & SF_SafeSEH; in isSafeSEH()
|
| H A D | MCSymbolWasm.h | 56 return getFlags() & wasm::WASM_SYMBOL_EXPORTED; in isExported() 63 return getFlags() & wasm::WASM_SYMBOL_NO_STRIP; in isNoStrip() 69 bool isTLS() const { return getFlags() & wasm::WASM_SYMBOL_TLS; } in isTLS()
|
| /openbsd-src/gnu/llvm/llvm/lib/Object/ |
| H A D | TapiFile.cpp | 27 static uint32_t getFlags(const Symbol *Sym) { in getFlags() function 49 Symbols.emplace_back(StringRef(), Symbol->getName(), getFlags(Symbol)); in TapiFile() 54 getFlags(Symbol)); in TapiFile() 57 getFlags(Symbol)); in TapiFile() 59 getFlags(Symbol)); in TapiFile() 64 getFlags(Symbol)); in TapiFile() 68 getFlags(Symbol)); in TapiFile()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | JITSymbol.cpp | 70 Expected<uint32_t> SymbolFlagsOrErr = Symbol.getFlags(); in fromObjectSymbol() 95 Expected<uint32_t> SymbolFlagsOrErr = Symbol.getFlags(); in fromObjectSymbol() 115 Result[Symbol] = JITEvaluatedSymbol(*AddrOrErr, Sym.getFlags()); in lookup() 127 Result[Symbol] = JITEvaluatedSymbol(*AddrOrErr, Sym.getFlags()); in lookup() 157 if (!Sym.getFlags().isStrong()) in getResponsibilitySet()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | BinaryStream.h | 56 virtual BinaryStreamFlags getFlags() const { return BSF_None; } in getFlags() function 86 BinaryStreamFlags getFlags() const override { return BSF_Write; } in getFlags() function 90 if (!(getFlags() & BSF_Append)) in checkOffsetForWrite()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | Scope.cpp | 45 Flags |= parent->getFlags() & OpenMPSimdDirectiveScope; in setFlags() 47 if (parent->getFlags() & OpenMPOrderClauseScope) in setFlags() 81 else if ((flags & ClassScope) && getParent()->getFlags() == DeclScope) in setFlags() 194 unsigned Flags = getFlags(); in dumpImpl()
|
| /openbsd-src/gnu/llvm/lld/MachO/ |
| H A D | MarkLive.cpp | 174 if (!(isec->getFlags() & S_ATTR_LIVE_SUPPORT) || isec->live) in markTransitively() 263 if (isec->getFlags() & S_ATTR_NO_DEAD_STRIP) { in markLive() 269 if (sectionType(isec->getFlags()) == S_MOD_INIT_FUNC_POINTERS || in markLive() 270 sectionType(isec->getFlags()) == S_MOD_TERM_FUNC_POINTERS) { in markLive() 272 sectionType(isec->getFlags()) != S_MOD_INIT_FUNC_POINTERS); in markLive()
|
| H A D | InputSection.cpp | 42 return isZeroFill(getFlags()) ? 0 : getSize(); in getFileSize() 199 if (isThreadLocalVariables(getFlags()) && isa<Defined>(referentSym)) { in writeTo() 272 switch (sectionType(getFlags())) { in WordLiteralInputSection() 292 switch (sectionType(getFlags())) { in getOffset() 305 uint32_t type = sectionType(isec->getFlags()); in isCodeSection() 309 uint32_t attr = isec->getFlags() & SECTION_ATTRIBUTES_USR; in isCodeSection()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | RDFLiveness.cpp | 120 if (RefA.Addr->getFlags() & NodeAttrs::Undef) in getAllReachingDefs() 144 if (TA.Addr->getFlags() & NodeAttrs::PhiRef) in getAllReachingDefs() 179 bool IsPhi = TA.Addr->getFlags() & NodeAttrs::PhiRef; in getAllReachingDefs() 292 uint16_t Flags = DA.Addr->getFlags(); in getAllReachingDefs() 300 return DA.Addr->getFlags() & NodeAttrs::Dead; in getAllReachingDefs() 323 if (!(DA.Addr->getFlags() & NodeAttrs::PhiRef)) in getAllReachingDefsRecImpl() 340 if (!(DA.Addr->getFlags() & NodeAttrs::PhiRef)) in getAllReachingDefsRecImpl() 386 if (!(R.Addr->getFlags() & NodeAttrs::Clobbering)) in getNearestAliasedRef() 428 bool IsDead = DefA.Addr->getFlags() & NodeAttrs::Dead; in getAllReachedUses() 432 if (!(UA.Addr->getFlags() & NodeAttrs::Undef)) { in getAllReachedUses() [all …]
|
| H A D | MachineOperand.cpp | 1102 ID.AddInteger(getFlags()); in Profile() 1109 assert(MMO->getFlags() == getFlags() && "Flags mismatch!"); in refineAlignment() 1144 if (getFlags() & MachineMemOperand::MOTargetFlag1) in print() 1147 if (getFlags() & MachineMemOperand::MOTargetFlag2) in print() 1150 if (getFlags() & MachineMemOperand::MOTargetFlag3) in print() 1154 if (getFlags() & MachineMemOperand::MOTargetFlag1) in print() 1156 if (getFlags() & MachineMemOperand::MOTargetFlag2) in print() 1158 if (getFlags() & MachineMemOperand::MOTargetFlag3) in print()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPostLegalizerCombiner.cpp | 117 B.buildInstr(Opc, {MI.getOperand(0)}, {X, Y}, MI.getFlags()); in applySelectFCmpToFMinToFMaxLegacy() 195 {SrcReg}, MI.getFlags()); in applyUCharToFloat() 198 {SrcReg}, MI.getFlags()); in applyUCharToFloat() 199 B.buildFPTrunc(DstReg, Cvt0, MI.getFlags()); in applyUCharToFloat() 231 .setMIFlags(MI.getFlags()); in matchRcpSqrtToRsq() 241 .setMIFlags(MI.getFlags()); in matchRcpSqrtToRsq() 291 B.buildInstr(NewOpc, {MI.getOperand(0)}, {CvtSrc}, MI.getFlags()); in applyCvtF32UByteN()
|
| H A D | GCNCreateVOPD.cpp | 73 .setMIFlags(FirstMI->getFlags() | SecondMI->getFlags()); in doReplace()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/ |
| H A D | combined.h | 151 RssChecker.init(scudo::getFlags()->soft_rss_limit_mb, in init() 152 scudo::getFlags()->hard_rss_limit_mb); in init() 155 if (getFlags()->may_return_null) in init() 157 if (getFlags()->zero_contents) in init() 159 else if (getFlags()->pattern_fill_contents) in init() 161 if (getFlags()->dealloc_type_mismatch) in init() 163 if (getFlags()->delete_size_mismatch) in init() 171 static_cast<u32>(getFlags()->quarantine_max_chunk_size); in init() 174 const s32 ReleaseToOsIntervalMs = getFlags()->release_to_os_interval_ms; in init() 178 static_cast<uptr>(getFlags()->quarantine_size_kb << 10), in init() [all …]
|
| H A D | flags.cpp | 17 Flags *getFlags() { in getFlags() function 64 Flags *F = getFlags(); in initFlags()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 740 DIFlags getFlags() const { return Flags; } in getFlags() function 756 return (getFlags() & FlagAccessibility) == FlagPrivate; in isPrivate() 759 return (getFlags() & FlagAccessibility) == FlagProtected; in isProtected() 762 return (getFlags() & FlagAccessibility) == FlagPublic; in isPublic() 764 bool isForwardDecl() const { return getFlags() & FlagFwdDecl; } in isForwardDecl() 765 bool isAppleBlockExtension() const { return getFlags() & FlagAppleBlock; } in isAppleBlockExtension() 766 bool isVirtual() const { return getFlags() & FlagVirtual; } in isVirtual() 767 bool isArtificial() const { return getFlags() & FlagArtificial; } in isArtificial() 768 bool isObjectPointer() const { return getFlags() & FlagObjectPointer; } in isObjectPointer() 770 return getFlags() & FlagObjcClassComplete; in isObjcClassComplete() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/ |
| H A D | ObjectFileInterface.cpp | 46 Expected<uint32_t> SymFlagsOrErr = Sym.getFlags(); in getMachOObjectFileSymbolInfo() 103 Expected<uint32_t> SymFlagsOrErr = Sym.getFlags(); in getELFObjectFileSymbolInfo() 158 Expected<uint32_t> SymFlagsOrErr = Sym.getFlags(); in getCOFFObjectFileSymbolInfo() 239 Expected<uint32_t> SymFlagsOrErr = Sym.getFlags(); in getGenericObjectFileSymbolInfo()
|
| H A D | RTDyldObjectLinkingLayer.cpp | 124 Expected<uint32_t> SymFlagsOrErr = Sym.getFlags(); in emit() 240 uint32_t SymFlags = cantFail(Sym.getFlags()); in onObjLoad() 260 I->second.setFlags(I->second.getFlags() | JITSymbolFlags::Weak); in onObjLoad() 265 uint32_t SymFlags = cantFail(Sym.getFlags()); in onObjLoad() 312 auto Flags = KV.second.getFlags(); in onObjLoad()
|
| H A D | Core.cpp | 182 if (Sym.getFlags().hasMaterializationSideEffectsOnly()) in notifySymbolMetRequiredState() 294 Flags[KV.first] = KV.second.getFlags(); in extractFlags() 868 if (Symbols[Name].getFlags().hasError()) in addDependencies() 903 if (OtherSymEntry.getFlags().hasError()) { in addDependencies() 927 Symbols[Name].setFlags(Symbols[Name].getFlags() | in addDependencies() 957 assert(!KV.second.getFlags().hasError() && in resolve() 970 if (SymI->second.getFlags().hasError()) in resolve() 973 auto Flags = KV.second.getFlags(); in resolve() 976 (SymI->second.getFlags() & ~JITSymbolFlags::Common) && in resolve() 1001 JITSymbolFlags ResolvedFlags = ResolvedSym.getFlags(); in resolve() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGDumper.cpp | 573 if (getFlags().hasNoUnsignedWrap()) in print_details() 576 if (getFlags().hasNoSignedWrap()) in print_details() 579 if (getFlags().hasExact()) in print_details() 582 if (getFlags().hasNoNaNs()) in print_details() 585 if (getFlags().hasNoInfs()) in print_details() 588 if (getFlags().hasNoSignedZeros()) in print_details() 591 if (getFlags().hasAllowReciprocal()) in print_details() 594 if (getFlags().hasAllowContract()) in print_details() 597 if (getFlags().hasApproximateFuncs()) in print_details() 600 if (getFlags().hasAllowReassociation()) in print_details() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | MachineMemOperand.h | 219 Flags getFlags() const { return FlagVals; } in getFlags() function 343 LHS.getFlags() == RHS.getFlags() &&
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/ |
| H A D | JITSymbol.h | 254 JITSymbolFlags getFlags() const { return Flags; } in getFlags() function 285 : CachedAddr(Sym.getAddress()), Flags(Sym.getFlags()) {} in JITSymbol() 354 JITSymbolFlags getFlags() const { return Flags; } in getFlags() function
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonOptAddrMode.cpp | 182 if (UA.Addr->getFlags() & NodeAttrs::PhiRef) in canRemoveAddasl() 192 if ((OffsetRegDN.Addr->getFlags() & NodeAttrs::PhiRef) && in canRemoveAddasl() 263 if (UA.Addr->getFlags() & NodeAttrs::PhiRef) { in getAllRealUses() 306 if (UA.Addr->getFlags() & NodeAttrs::PhiRef) in isSafeToExtLR() 325 if ((LRExtRegDN.Addr->getFlags() & NodeAttrs::PhiRef) && in isSafeToExtLR() 468 assert(!(UseN.Addr->getFlags() & NodeAttrs::PhiRef) && in processAddUses() 693 assert(!(UseUN.Addr->getFlags() & NodeAttrs::PhiRef) && in changeAddAsl() 822 assert(!(UseN.Addr->getFlags() & NodeAttrs::PhiRef) && in processBlock()
|