Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
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()
DWasmObjectFile.cpp536 bool IsDefined = (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0; in parseLinkingSectionSymtab() local
542 IsDefined != isDefinedFunctionIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
545 if (IsDefined) { in parseLinkingSectionSymtab()
570 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
573 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
577 if (IsDefined) { in parseLinkingSectionSymtab()
602 IsDefined != isDefinedTableNumber(Info.ElementIndex)) in parseLinkingSectionSymtab()
605 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
609 if (IsDefined) { in parseLinkingSectionSymtab()
633 if (IsDefined) { in parseLinkingSectionSymtab()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86FixupBWInsts.cpp261 bool IsDefined = false; in getSuperRegDestIfDead() local
269 IsDefined = true; in getSuperRegDestIfDead()
280 if (!IsDefined) in getSuperRegDestIfDead()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h107 Addressable(JITTargetAddress Address, bool IsDefined) in Addressable() argument
108 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
111 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
112 assert(!(IsDefined && IsAbsolute) && in Addressable()
127 bool isDefined() const { return static_cast<bool>(IsDefined); } in isDefined()
132 assert(!IsDefined && "Cannot change the Absolute flag on a defined block"); in setAbsolute()
137 uint64_t IsDefined : 1; variable
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
DTGLexer.h193 bool IsDefined; member
DTGLexer.cpp757 {Kind, !IfdefEntry.IsDefined, SMLoc::getFromPointer(TokStart)}); in lexPreprocessor()
1023 if (!I->IsDefined) in prepIsProcessingEnabled()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
DCompilerType.cpp201 bool CompilerType::IsDefined() const { in IsDefined() function in CompilerType
203 return m_type_system->IsDefined(m_type); in IsDefined()
DType.cpp604 if (!m_compiler_type.IsDefined()) { in ResolveCompilerType()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
DCompilerType.h99 bool IsDefined() const;
DTypeSystem.h150 virtual bool IsDefined(lldb::opaque_compiler_type_t type) = 0;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
DMasmParser.cpp6574 bool IsDefined = false; in parseDirectiveErrorIfdef() local
6577 IsDefined = (getTargetParser().tryParseRegister(RegNo, StartLoc, EndLoc) == in parseDirectiveErrorIfdef()
6579 if (!IsDefined) { in parseDirectiveErrorIfdef()
6585 IsDefined = true; in parseDirectiveErrorIfdef()
6587 IsDefined = true; in parseDirectiveErrorIfdef()
6590 IsDefined = (Sym && !Sym->isUndefined(false)); in parseDirectiveErrorIfdef()
6602 if (IsDefined == ExpectDefined) in parseDirectiveErrorIfdef()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DDeclObjC.h457 bool isDefined() const { return ObjCMethodDeclBits.IsDefined; } in isDefined()
458 void setDefined(bool isDefined) { ObjCMethodDeclBits.IsDefined = isDefined; } in setDefined()
DDeclBase.h1675 uint64_t IsDefined : 1;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
DAMDGPUAsmParser.cpp1500 bool IsDefined = false; member
6205 Op.IsDefined = true; in parseSendMsgBody()
6215 Stream.IsDefined = true; in parseSendMsgBody()
6240 if (Strict && (msgRequiresOp(Msg.Id) != Op.IsDefined)) { in validateSendMsg()
6241 if (Op.IsDefined) { in validateSendMsg()
6252 if (Strict && !msgSupportsStream(Msg.Id, Op.Id) && Stream.IsDefined) { in validateSendMsg()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.h573 bool IsDefined(lldb::opaque_compiler_type_t type) override;
DTypeSystemClang.cpp3424 bool TypeSystemClang::IsDefined(lldb::opaque_compiler_type_t type) { in IsDefined() function in TypeSystemClang
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp208 if (pcm_type.IsDefined()) in ParseTypeFromClangModule()