Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
652 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
655 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
659 if (IsDefined) { in parseLinkingSectionSymtab()
684 IsDefined != isDefinedTableNumber(Info.ElementIndex)) in parseLinkingSectionSymtab()
691 if (IsDefined) { in parseLinkingSectionSymtab()
715 if (IsDefined) { in parseLinkingSectionSymtab()
748 IsDefined != isDefinedTagIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86FixupBWInsts.cpp261 bool IsDefined = false; in getSuperRegDestIfDead() local
269 IsDefined = true; in getSuperRegDestIfDead()
280 if (!IsDefined) in getSuperRegDestIfDead()
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestClangASTImporter.cpp106 EXPECT_FALSE(imported.IsDefined()); in TEST_F()
114 EXPECT_TRUE(imported.IsDefined()); in TEST_F()
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h107 Addressable(orc::ExecutorAddr 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
/llvm-project-15.0.7/llvm/lib/TableGen/
H A DTGLexer.h194 bool IsDefined; member
H A DTGLexer.cpp756 {Kind, !IfdefEntry.IsDefined, SMLoc::getFromPointer(TokStart)}); in lexPreprocessor()
1021 if (!I.IsDefined) in prepIsProcessingEnabled()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompilerType.cpp201 bool CompilerType::IsDefined() const { in IsDefined() function in CompilerType
203 return m_type_system->IsDefined(m_type); in IsDefined()
H A DType.cpp603 if (!m_compiler_type.IsDefined()) { in ResolveCompilerType()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h99 bool IsDefined() const;
H A DTypeSystem.h149 virtual bool IsDefined(lldb::opaque_compiler_type_t type) = 0;
/llvm-project-15.0.7/clang-tools-extra/modularize/
H A DPreprocessorTracker.cpp1366 clang::PPCallbacks::ConditionValueKind IsDefined = in Ifdef() local
1370 IsDefined, PP.getSpelling(MacroNameTok), in Ifdef()
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DMasmParser.cpp6542 bool IsDefined = false; in parseDirectiveErrorIfdef() local
6545 IsDefined = (getTargetParser().tryParseRegister(RegNo, StartLoc, EndLoc) == in parseDirectiveErrorIfdef()
6547 if (!IsDefined) { in parseDirectiveErrorIfdef()
6553 IsDefined = true; in parseDirectiveErrorIfdef()
6555 IsDefined = true; in parseDirectiveErrorIfdef()
6558 IsDefined = (Sym && !Sym->isUndefined(false)); in parseDirectiveErrorIfdef()
6570 if (IsDefined == ExpectDefined) in parseDirectiveErrorIfdef()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclObjC.h457 bool isDefined() const { return ObjCMethodDeclBits.IsDefined; } in isDefined()
458 void setDefined(bool isDefined) { ObjCMethodDeclBits.IsDefined = isDefined; } in setDefined()
H A DDeclBase.h1719 uint64_t IsDefined : 1;
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h565 bool IsDefined(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp3448 bool TypeSystemClang::IsDefined(lldb::opaque_compiler_type_t type) { in IsDefined() function in TypeSystemClang
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp1595 bool IsDefined = false; member
6787 Op.IsDefined = true; in parseSendMsgBody()
6797 Stream.IsDefined = true; in parseSendMsgBody()
6829 if (Strict && (msgRequiresOp(Msg.Id, getSTI()) != Op.IsDefined)) { in validateSendMsg()
6830 if (Op.IsDefined) { in validateSendMsg()
6842 Stream.IsDefined) { in validateSendMsg()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp196 if (pcm_type.IsDefined()) in ParseTypeFromClangModule()