Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DRecordStreamer.cpp153 bool IsDefined = false; in flushSymverDirectives() local
174 IsDefined = true; in flushSymverDirectives()
183 if (Attr == MCSA_Invalid || !IsDefined) { in flushSymverDirectives()
201 IsDefined = IsDefined || !GV->isDeclarationForLinker(); in flushSymverDirectives()
212 const char *Separator = IsDefined ? "@@" : "@"; in flushSymverDirectives()
220 if (IsDefined) in flushSymverDirectives()
H A DWasmObjectFile.cpp637 bool IsDefined = (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0; in parseLinkingSectionSymtab() local
643 IsDefined != isDefinedFunctionIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
646 if (IsDefined) { in parseLinkingSectionSymtab()
669 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
672 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
676 if (IsDefined) { in parseLinkingSectionSymtab()
699 IsDefined != isDefinedTableNumber(Info.ElementIndex)) in parseLinkingSectionSymtab()
706 if (IsDefined) { in parseLinkingSectionSymtab()
728 if (IsDefined) { in parseLinkingSectionSymtab()
765 IsDefined != isDefinedTagIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupBWInsts.cpp259 bool IsDefined = false; in getSuperRegDestIfDead() local
267 IsDefined = true; in getSuperRegDestIfDead()
278 if (!IsDefined) in getSuperRegDestIfDead()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h114 Addressable(orc::ExecutorAddr Address, bool IsDefined) in Addressable() argument
115 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
118 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
119 assert(!(IsDefined && IsAbsolute) && in Addressable()
134 bool isDefined() const { return static_cast<bool>(IsDefined); } in isDefined()
139 assert(!IsDefined && "Cannot change the Absolute flag on a defined block"); in setAbsolute()
144 uint64_t IsDefined : 1; variable
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.h301 bool IsDefined; member
H A DTGLexer.cpp777 {Kind, !IfdefEntry.IsDefined, SMLoc::getFromPointer(TokStart)}); in lexPreprocessor()
1042 if (!I.IsDefined) in prepIsProcessingEnabled()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h144 bool IsDefined() const;
H A DTypeSystem.h158 virtual bool IsDefined(lldb::opaque_compiler_type_t type) = 0;
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp231 bool CompilerType::IsDefined() const { in IsDefined() function in CompilerType
234 return type_system_sp->IsDefined(m_type); in IsDefined()
H A DType.cpp699 if (!m_compiler_type.IsDefined()) { in ResolveCompilerType()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp6526 bool IsDefined = false; in parseDirectiveErrorIfdef() local
6529 IsDefined = in parseDirectiveErrorIfdef()
6531 if (!IsDefined) { in parseDirectiveErrorIfdef()
6537 IsDefined = true; in parseDirectiveErrorIfdef()
6539 IsDefined = true; in parseDirectiveErrorIfdef()
6542 IsDefined = (Sym && !Sym->isUndefined(false)); in parseDirectiveErrorIfdef()
6554 if (IsDefined == ExpectDefined) in parseDirectiveErrorIfdef()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h452 bool isDefined() const { return ObjCMethodDeclBits.IsDefined; } in isDefined()
453 void setDefined(bool isDefined) { ObjCMethodDeclBits.IsDefined = isDefined; } in setDefined()
H A DDeclBase.h1869 uint64_t IsDefined : 1;
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h648 bool IsDefined(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp3405 bool TypeSystemClang::IsDefined(lldb::opaque_compiler_type_t type) { in IsDefined() function in TypeSystemClang
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp1668 bool IsDefined = false; member
7226 Op.IsDefined = true; in parseSendMsgBody()
7236 Stream.IsDefined = true; in parseSendMsgBody()
7268 if (Strict && (msgRequiresOp(Msg.Id, getSTI()) != Op.IsDefined)) { in validateSendMsg()
7269 if (Op.IsDefined) { in validateSendMsg()
7281 Stream.IsDefined) { in validateSendMsg()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp216 if (pcm_type.IsDefined()) in ParseTypeFromClangModule()