Home
last modified time | relevance | path

Searched refs:IsDefined (Results 1 – 18 of 18) 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.cpp721 bool IsDefined = (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0; in parseLinkingSectionSymtab() local
727 IsDefined != isDefinedFunctionIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
730 if (IsDefined) { in parseLinkingSectionSymtab()
753 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
756 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
760 if (IsDefined) { in parseLinkingSectionSymtab()
783 IsDefined != isDefinedTableNumber(Info.ElementIndex)) in parseLinkingSectionSymtab()
786 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
790 if (IsDefined) { in parseLinkingSectionSymtab()
812 if (IsDefined) { in parseLinkingSectionSymtab()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupBWInsts.cpp252 bool IsDefined = false; in getSuperRegDestIfDead() local
258 IsDefined = true; in getSuperRegDestIfDead()
269 if (!IsDefined) in getSuperRegDestIfDead()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h115 Addressable(orc::ExecutorAddr Address, bool IsDefined) in Addressable() argument
116 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {} in Addressable()
119 : Address(Address), IsDefined(false), IsAbsolute(true) { in Addressable()
120 assert(!(IsDefined && IsAbsolute) && in Addressable()
135 bool isDefined() const { return static_cast<bool>(IsDefined); } in isDefined()
140 assert(!IsDefined && "Cannot change the Absolute flag on a defined block"); in setAbsolute()
145 uint64_t IsDefined : 1; variable
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.h302 bool IsDefined; member
H A DTGLexer.cpp778 {Kind, !IfdefEntry.IsDefined, SMLoc::getFromPointer(TokStart)}); in lexPreprocessor()
1039 if (!I.IsDefined) in prepIsProcessingEnabled()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h144 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.cpp252 bool CompilerType::IsDefined() const { in IsDefined() function in CompilerType
255 return type_system_sp->IsDefined(m_type); in IsDefined()
H A DType.cpp714 if (!m_compiler_type.IsDefined()) { in ResolveCompilerType()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp6527 bool IsDefined = false; in parseDirectiveErrorIfdef() local
6530 IsDefined = in parseDirectiveErrorIfdef()
6532 if (!IsDefined) { in parseDirectiveErrorIfdef()
6538 IsDefined = true; in parseDirectiveErrorIfdef()
6540 IsDefined = true; in parseDirectiveErrorIfdef()
6543 IsDefined = (Sym && !Sym->isUndefined(false)); in parseDirectiveErrorIfdef()
6555 if (IsDefined == ExpectDefined) in parseDirectiveErrorIfdef()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp1679 bool IsDefined = false; member
1688 bool IsDefined = false; member
7453 Op.IsDefined = true; in parseSendMsgBody()
7464 Stream.IsDefined = true; in parseSendMsgBody()
7496 if (Strict && (msgRequiresOp(Msg.Val, getSTI()) != Op.IsDefined)) { in validateSendMsg()
7497 if (Op.IsDefined) { in validateSendMsg()
7512 Stream.IsDefined) { in validateSendMsg()
7891 if ((*I)->IsDefined) in parseStructuredOpFields()
7898 (*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.h1879 uint64_t IsDefined : 1;
/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.cpp3442 bool TypeSystemClang::IsDefined(lldb::opaque_compiler_type_t type) { in IsDefined() function in TypeSystemClang
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp4233 bool IsDefined = CurFD->doesThisDeclarationHaveABody(); in emitMultiVersionFunctions() local
4240 if (TVA->isDefaultVersion() && IsDefined) in emitMultiVersionFunctions()
4246 if (IsDefined) in emitMultiVersionFunctions()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp218 if (pcm_type.IsDefined()) in ParseTypeFromClangModule()