Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DRecordStreamer.cpp153 bool IsDefined = false; in flushSymverDirectives()
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()
158 bool IsDefined = false; flushSymverDirectives() local
H A DWasmObjectFile.cpp731 bool IsDefined = (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0; in parseLinkingSectionSymtab() local
737 IsDefined != isDefinedFunctionIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
740 if (IsDefined) { in parseLinkingSectionSymtab()
763 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
766 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
770 if (IsDefined) { in parseLinkingSectionSymtab()
793 IsDefined != isDefinedTableNumber(Info.ElementIndex)) in parseLinkingSectionSymtab()
796 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
800 if (IsDefined) { in parseLinkingSectionSymtab()
822 if (IsDefined) { in parseLinkingSectionSymtab()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupBWInsts.cpp251 bool IsDefined = false; in getSuperRegDestIfDead() local
257 IsDefined = true; in getSuperRegDestIfDead()
268 if (!IsDefined) in getSuperRegDestIfDead()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h116 Addressable(orc::ExecutorAddr Address, bool IsDefined) in Addressable() argument
117 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
120 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
121 assert(!(IsDefined && IsAbsolute) && in Addressable()
136 bool isDefined() const { return static_cast<bool>(IsDefined); } in isDefined()
141 assert(!IsDefined && "Cannot change the Absolute flag on a defined block"); in setAbsolute()
146 uint64_t IsDefined : 1; variable
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.h304 bool IsDefined; member
H A DTGLexer.cpp794 PrepIncludeStack.back().back() = {Kind, !IfdefEntry.IsDefined, in lexPreprocessor()
1039 [](const PreprocessorControlDesc &I) { return I.IsDefined; }); in prepIsProcessingEnabled()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h145 bool IsDefined() const;
H A DTypeSystem.h163 virtual bool IsDefined(lldb::opaque_compiler_type_t type) = 0;
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp254 bool CompilerType::IsDefined() const { in IsDefined() function in CompilerType
257 return type_system_sp->IsDefined(m_type); in IsDefined()
H A DType.cpp729 if (!m_compiler_type.IsDefined()) { in ResolveCompilerType()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp5064 bool IsDefined = false; in parseDirectiveErrorIfdef() local
5067 IsDefined = in parseDirectiveErrorIfdef()
5069 if (!IsDefined) { in parseDirectiveErrorIfdef()
5075 IsDefined = true; in parseDirectiveErrorIfdef()
5077 IsDefined = true; in parseDirectiveErrorIfdef()
5080 IsDefined = (Sym && !Sym->isUndefined()); in parseDirectiveErrorIfdef()
5092 if (IsDefined == ExpectDefined) in parseDirectiveErrorIfdef()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp1752 bool IsDefined = false; member
1761 bool IsDefined = false; member
7878 Op.IsDefined = true; in parseSendMsgBody()
7889 Stream.IsDefined = true; in parseSendMsgBody()
7921 if (Strict && (msgRequiresOp(Msg.Val, getSTI()) != Op.IsDefined)) { in validateSendMsg()
7922 if (Op.IsDefined) { in validateSendMsg()
7937 Stream.IsDefined) { in validateSendMsg()
8315 if ((*I)->IsDefined) in parseStructuredOpFields()
8322 (*I)->IsDefined = true; in parseStructuredOpFields()
/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.h1903 uint64_t IsDefined : 1;
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterp.cpp910 bool IsDefined = F->isDefined(); in CheckCallable() local
911 if (!IsDefined && !IsExtern && DiagDecl->isConstexpr() && in CheckCallable()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h655 bool IsDefined(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp3485 bool TypeSystemClang::IsDefined(lldb::opaque_compiler_type_t type) { in IsDefined() function in TypeSystemClang
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp4479 bool IsDefined = CurFD->getDefinition() != nullptr; in emitMultiVersionFunctions() local
4487 if (TVA->isDefaultVersion() && IsDefined) in emitMultiVersionFunctions()
4497 if (TC->isDefaultVersion(I) && IsDefined) in emitMultiVersionFunctions()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp311 if (pcm_type.IsDefined()) in ParseTypeFromClangModule()