Home
last modified time | relevance | path

Searched refs:IsDefined (Results 1 – 17 of 17) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DRecordStreamer.cpp158 bool IsDefined = false; in flushSymverDirectives() local
179 IsDefined = true; in flushSymverDirectives()
188 if (Attr == MCSA_Invalid || !IsDefined) { in flushSymverDirectives()
206 IsDefined = IsDefined || !GV->isDeclarationForLinker(); in flushSymverDirectives()
217 const char *Separator = IsDefined ? "@@" : "@"; in flushSymverDirectives()
225 if (IsDefined) in flushSymverDirectives()
H A DWasmObjectFile.cpp618 bool IsDefined = (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0; in parseLinkingSectionSymtab() local
624 IsDefined != isDefinedFunctionIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
627 if (IsDefined) { in parseLinkingSectionSymtab()
650 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
653 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
657 if (IsDefined) { in parseLinkingSectionSymtab()
680 IsDefined != isDefinedTableNumber(Info.ElementIndex)) in parseLinkingSectionSymtab()
683 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
687 if (IsDefined) { in parseLinkingSectionSymtab()
709 if (IsDefined) { in parseLinkingSectionSymtab()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86FixupBWInsts.cpp261 bool IsDefined = false; in getSuperRegDestIfDead() local
269 IsDefined = true; in getSuperRegDestIfDead()
280 if (!IsDefined) in getSuperRegDestIfDead()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h109 Addressable(orc::ExecutorAddr Address, bool IsDefined) in Addressable() argument
110 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
113 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
114 assert(!(IsDefined && IsAbsolute) && in Addressable()
129 bool isDefined() const { return static_cast<bool>(IsDefined); } in isDefined()
134 assert(!IsDefined && "Cannot change the Absolute flag on a defined block"); in setAbsolute()
139 uint64_t IsDefined : 1; variable
/openbsd-src/gnu/llvm/llvm/lib/TableGen/
H A DTGLexer.h195 bool IsDefined; member
H A DTGLexer.cpp763 {Kind, !IfdefEntry.IsDefined, SMLoc::getFromPointer(TokStart)}); in lexPreprocessor()
1028 if (!I.IsDefined) in prepIsProcessingEnabled()
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DCompilerType.cpp232 bool CompilerType::IsDefined() const { in IsDefined() function in CompilerType
235 return type_system_sp->IsDefined(m_type); in IsDefined()
H A DType.cpp615 if (!m_compiler_type.IsDefined()) { in ResolveCompilerType()
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DCompilerType.h151 bool IsDefined() const;
H A DTypeSystem.h156 virtual bool IsDefined(lldb::opaque_compiler_type_t type) = 0;
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DMasmParser.cpp6558 bool IsDefined = false; in parseDirectiveErrorIfdef() local
6561 IsDefined = (getTargetParser().tryParseRegister(Reg, StartLoc, EndLoc) == in parseDirectiveErrorIfdef()
6563 if (!IsDefined) { in parseDirectiveErrorIfdef()
6569 IsDefined = true; in parseDirectiveErrorIfdef()
6571 IsDefined = true; in parseDirectiveErrorIfdef()
6574 IsDefined = (Sym && !Sym->isUndefined(false)); in parseDirectiveErrorIfdef()
6586 if (IsDefined == ExpectDefined) in parseDirectiveErrorIfdef()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclObjC.h454 bool isDefined() const { return ObjCMethodDeclBits.IsDefined; } in isDefined()
455 void setDefined(bool isDefined) { ObjCMethodDeclBits.IsDefined = isDefined; } in setDefined()
H A DDeclBase.h1738 uint64_t IsDefined : 1;
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h579 bool IsDefined(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp3487 bool TypeSystemClang::IsDefined(lldb::opaque_compiler_type_t type) { in IsDefined() function in TypeSystemClang
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp1608 bool IsDefined = false; member
6904 Op.IsDefined = true; in parseSendMsgBody()
6914 Stream.IsDefined = true; in parseSendMsgBody()
6946 if (Strict && (msgRequiresOp(Msg.Id, getSTI()) != Op.IsDefined)) { in validateSendMsg()
6947 if (Op.IsDefined) { in validateSendMsg()
6959 Stream.IsDefined) { in validateSendMsg()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp197 if (pcm_type.IsDefined()) in ParseTypeFromClangModule()