Searched refs:getFlags (Results 1 - 25 of 170) sorted by relevance

1234567

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_flags.h26 Flags *getFlags();
H A Dscudo_flags.cpp22 static Flags ScudoFlags; // Use via getFlags().
57 Flags *f = getFlags();
126 Flags *getFlags() { function in namespace:__scudo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSymbolELF.cpp60 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STB_Shift);
119 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STT_Shift);
149 uint32_t OtherFlags = getFlags() & ~(0x3 << ELF_STV_Shift);
162 uint32_t OtherFlags = getFlags() & ~(0x7 << ELF_STO_Shift);
172 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_WeakrefUsedInReloc_Shift);
177 return getFlags() & (0x1 << ELF_WeakrefUsedInReloc_Shift);
181 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_IsSignature_Shift);
186 return getFlags() & (0x1 << ELF_IsSignature_Shift);
190 uint32_t OtherFlags = getFlags() & ~(0x1 << ELF_BindingSet_Shift);
195 return getFlags()
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolMachO.h66 return getFlags() & SF_NoDeadStrip;
73 return getFlags() & SF_WeakReference;
80 return getFlags() & SF_WeakDefinition;
87 return getFlags() & SF_SymbolResolver;
98 return getFlags() & SF_AltEntry;
103 bool isCold() const { return getFlags() & SF_Cold; }
114 uint16_t Flags = getFlags();
H A DMCSymbolCOFF.h41 return (getFlags() & SF_ClassMask) >> SF_ClassShift;
48 return getFlags() & SF_WeakExternal;
55 return getFlags() & SF_SafeSEH;
H A DMCSymbolWasm.h52 return getFlags() & wasm::WASM_SYMBOL_EXPORTED;
59 return getFlags() & wasm::WASM_SYMBOL_NO_STRIP;
H A DMCSectionELF.h72 unsigned getFlags() const { return Flags; } function in class:llvm::final
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h219 /// getFlags - Return the flags for this scope.
220 unsigned getFlags() const { return Flags; } function in class:clang::Scope
337 bool isFunctionScope() const { return (getFlags() & Scope::FnScope); }
341 return (getFlags() & Scope::ClassScope);
359 if (S->getFlags() & ObjCMethodScope)
370 if (S->getFlags() & ObjCMethodScope)
379 return getFlags() & Scope::TemplateParamScope;
385 return getFlags() & Scope::FunctionPrototypeScope;
391 return getFlags() & Scope::FunctionDeclarationScope;
396 return getFlags()
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DJITSymbol.cpp42 if (Symbol.getFlags() & object::BasicSymbolRef::SF_Weak)
44 if (Symbol.getFlags() & object::BasicSymbolRef::SF_Common)
46 if (Symbol.getFlags() & object::BasicSymbolRef::SF_Exported)
62 if (Symbol.getFlags() & object::BasicSymbolRef::SF_Thumb)
77 Result[Symbol] = JITEvaluatedSymbol(*AddrOrErr, Sym.getFlags());
89 Result[Symbol] = JITEvaluatedSymbol(*AddrOrErr, Sym.getFlags());
119 if (!Sym.getFlags().isStrong())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DTapiFile.cpp28 static uint32_t getFlags(const Symbol *Sym) { function
50 Symbols.emplace_back(StringRef(), Symbol->getName(), getFlags(Symbol));
56 getFlags(Symbol));
59 getFlags(Symbol));
61 getFlags(Symbol));
66 getFlags(Symbol));
70 getFlags(Symbol));
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dflags.h31 Flags *getFlags();
H A Dflags.cpp16 Flags *getFlags() { function in namespace:scudo
63 Flags *F = getFlags();
H A Dcombined.h141 Options.MayReturnNull = getFlags()->may_return_null;
142 Options.ZeroContents = getFlags()->zero_contents;
143 Options.DeallocTypeMismatch = getFlags()->dealloc_type_mismatch;
144 Options.DeleteSizeMismatch = getFlags()->delete_size_mismatch;
146 static_cast<u32>(getFlags()->quarantine_max_chunk_size);
149 Primary.initLinkerInitialized(getFlags()->release_to_os_interval_ms);
153 static_cast<uptr>(getFlags()->quarantine_size_kb << 10),
154 static_cast<uptr>(getFlags()->thread_local_quarantine_size_kb << 10));
158 Opt.Enabled = getFlags()->GWP_ASAN_Enabled;
163 Opt.PerfectlyRightAlign = getFlags()
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStream.h56 virtual BinaryStreamFlags getFlags() const { return BSF_None; } function in class:llvm::BinaryStream
86 BinaryStreamFlags getFlags() const override { return BSF_Write; }
90 if (!(getFlags() & BSF_Append))
H A DWin64EH.h104 uint8_t getFlags() const { function in struct:llvm::Win64EH::UnwindInfo
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DScope.cpp45 Flags |= parent->getFlags() & OpenMPSimdDirectiveScope;
78 else if ((flags & ClassScope) && getParent()->getFlags() == DeclScope)
139 unsigned Flags = getFlags();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DRTDyldObjectLinkingLayer.cpp119 if (!(Sym.getFlags() & object::BasicSymbolRef::SF_Global)) {
174 if (Sym.getFlags() & object::BasicSymbolRef::SF_Undefined)
193 I->second.setFlags(I->second.getFlags() | JITSymbolFlags::Weak);
205 auto Flags = KV.second.getFlags();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFELFObjectWriter.cpp61 unsigned Flags = SectionELF->getFlags();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFLiveness.cpp118 if (RefA.Addr->getFlags() & NodeAttrs::Undef)
142 if (TA.Addr->getFlags() & NodeAttrs::PhiRef)
161 bool IsPhi = TA.Addr->getFlags() & NodeAttrs::PhiRef;
253 uint16_t Flags = DA.Addr->getFlags();
261 return DA.Addr->getFlags() & NodeAttrs::Dead;
284 if (!(DA.Addr->getFlags() & NodeAttrs::PhiRef))
301 if (!(DA.Addr->getFlags() & NodeAttrs::PhiRef))
348 if (!(R.Addr->getFlags() & NodeAttrs::Clobbering))
390 bool IsDead = DefA.Addr->getFlags() & NodeAttrs::Dead;
394 if (!(UA.Addr->getFlags()
[all...]
H A DMIRVRegNamerUtils.cpp105 SmallVector<unsigned, 16> MIOperands = {MI.getOpcode(), MI.getFlags()};
110 MIOperands.push_back((unsigned)Op->getFlags());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DSymbolicFile.h132 uint32_t getFlags() const;
199 inline uint32_t BasicSymbolRef::getFlags() const { function in class:llvm::object::BasicSymbolRef
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/
H A DSymbol.h68 SymbolFlags getFlags() const { return Flags; } function in class:llvm::MachO::Symbol
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h209 Flags getFlags() const { return FlagVals; } function in class:llvm::MachineMemOperand
307 LHS.getFlags() == RHS.getFlags() &&
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp520 if (getFlags().hasNoUnsignedWrap())
523 if (getFlags().hasNoSignedWrap())
526 if (getFlags().hasExact())
529 if (getFlags().hasNoNaNs())
532 if (getFlags().hasNoInfs())
535 if (getFlags().hasNoSignedZeros())
538 if (getFlags().hasAllowReciprocal())
541 if (getFlags().hasAllowContract())
544 if (getFlags().hasApproximateFuncs())
547 if (getFlags()
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp493 outs() << " Flags: " << static_cast<int>(UI->getFlags());
494 if (UI->getFlags()) {
495 if (UI->getFlags() & UNW_ExceptionHandler)
497 if (UI->getFlags() & UNW_TerminateHandler)
499 if (UI->getFlags() & UNW_ChainInfo)
513 if (UI->getFlags() & (UNW_ExceptionHandler | UNW_TerminateHandler)) {
515 } else if (UI->getFlags() & UNW_ChainInfo) {

Completed in 130 milliseconds

1234567