Home
last modified time | relevance | path

Searched refs:Ctxt (Results 1 – 25 of 25) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinkerCompileUnit.cpp
H A DDWARFLinker.cpp
H A DDWARFLinkerDeclContext.cpp
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinkerCompileUnit.cpp25 llvm::errs() << " Ctxt: " << formatv("{0:x}", Ctxt) << '\n'; in dump()
139 DeclContext *Ctxt, PatchLocation Attr) { in noteForwardReference() argument
140 ForwardDIEReferences.emplace_back(Die, RefUnit, Ctxt, Attr); in noteForwardReference()
148 DeclContext *Ctxt; in fixupForwardReferences() local
149 std::tie(RefDie, RefUnit, Ctxt, Attr) = Ref; in fixupForwardReferences()
150 if (Ctxt && Ctxt->hasCanonicalDIE()) { in fixupForwardReferences()
151 assert(Ctxt->getCanonicalDIEOffset() && in fixupForwardReferences()
153 Attr.set(Ctxt->getCanonicalDIEOffset()); in fixupForwardReferences()
H A DDWARFLinker.cpp282 Info.Prune &= Info.Ctxt && Info.Ctxt->getCanonicalDIEOffset(); in updatePruning()
284 Info.Prune &= Info.Ctxt && Info.Ctxt->getCanonicalDIEOffset() > 0 && in updatePruning()
285 Info.Ctxt->getCanonicalDIEOffset() <= ModulesEndOffset; in updatePruning()
360 Info.Ctxt = in analyzeContextInfo()
362 if (Info.Ctxt) in analyzeContextInfo()
363 Info.Ctxt->setDefinedInClangModule(Info.InModuleScope); in analyzeContextInfo()
365 Info.Ctxt = Current.Context = nullptr; in analyzeContextInfo()
723 if (!Info.Ctxt || (Die.getTag() == dwarf::DW_TAG_namespace)) in isODRCanonicalCandidate()
729 return !Info.Incomplete && Info.Ctxt != CU.getInfo(Info.ParentIdx).Ctxt; in isODRCanonicalCandidate()
737 !Info.Ctxt->hasCanonicalDIE()) in markODRCanonicalDie()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStackAddrEscapeChecker.cpp256 CheckerContext &Ctxt; member in FindStackRegionsSymbolVisitor
262 CheckerContext &Ctxt, in FindStackRegionsSymbolVisitor() argument
264 : Ctxt(Ctxt), PoppedStackFrame(Ctxt.getStackFrame()), in FindStackRegionsSymbolVisitor()
280 const auto *SSR = MR->getMemorySpaceAs<StackSpaceRegion>(Ctxt.getState()); in SaveIfEscapes()
293 SVal Val = Ctxt.getState()->getSVal(Var.getCapturedRegion()); in VisitBlockDataRegionCaptures()
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h
H A DDWARFLinkerCompileUnit.h
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinkerDeclContext.h174 static unsigned getHashValue(const DeclContext *Ctxt) { in getHashValue()
175 return Ctxt->QualifiedNameHash; in getHashValue()
H A DDWARFLinkerCompileUnit.h73 DeclContext *Ctxt; member
201 DeclContext *Ctxt, PatchLocation Attr);
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DYAMLTraits.cpp37 IO::IO(void *Context) : Ctxt(Context) {} in IO()
42 return Ctxt; in getContext()
46 Ctxt = Context; in setContext()
57 Input::Input(StringRef InputContent, void *Ctxt, in Input() argument
59 : IO(Ctxt), Strm(new Stream(InputContent, SrcMgr, false, &EC)) { in Input()
65 Input::Input(MemoryBufferRef Input, void *Ctxt, in Input() argument
67 : IO(Ctxt), Strm(new Stream(Input, SrcMgr, false, &EC)) { in Input()
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DBugDriver.cpp93 LLVMContext &Ctxt) { in parseInputFile() argument
95 std::unique_ptr<Module> Result = parseIRFile(Filename, Err, Ctxt); in parseInputFile()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackendDarwin.h37 const MCContext *Ctxt) const override;
H A DARMAsmBackend.cpp1180 const MCDwarfFrameInfo *FI, const MCContext *Ctxt) const { in generateCompactUnwindEncoding()
1190 !Ctxt->emitCompactUnwindNonCanonical()) in generateCompactUnwindEncoding()
/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackDocumentYAML.cpp174 static void output(const ScalarDocNode &S, void *Ctxt, raw_ostream &OS, in output()
180 static StringRef input(StringRef Str, StringRef Tag, void *Ctxt, in input()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAsmBackend.h225 const MCContext *Ctxt) const { in generateCompactUnwindEncoding() argument
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp727 void *Ctxt) { in setDiagnosticHandler() argument
729 this->DiagContext = Ctxt; in setDiagnosticHandler()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp589 const MCContext *Ctxt) const override { in generateCompactUnwindEncoding()
594 !Ctxt->emitCompactUnwindNonCanonical()) in generateCompactUnwindEncoding()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp539 DWARFContext *Ctxt = S->Context.get(); in getDWOContext() local
540 return std::shared_ptr<DWARFContext>(std::move(S), Ctxt); in getDWOContext()
546 DWARFContext *Ctxt = S->Context.get(); in getDWOContext() local
547 return std::shared_ptr<DWARFContext>(std::move(S), Ctxt); in getDWOContext()
589 auto *Ctxt = S->Context.get(); in getDWOContext() local
590 return std::shared_ptr<DWARFContext>(std::move(S), Ctxt); in getDWOContext()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRPrinter.cpp114 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) { in output()
118 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) { in input()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp1336 const MCContext *Ctxt) const override { in generateCompactUnwindEncoding()
1340 !Ctxt->emitCompactUnwindNonCanonical()) in generateCompactUnwindEncoding()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp1509 LLVMContext &Ctxt = *DAG.getContext(); in SplitVecRes_CMP() local
1524 EVT SplitResVT = N->getValueType(0).getHalfNumVectorElementsVT(Ctxt); in SplitVecRes_CMP()
4520 LLVMContext &Ctxt = *DAG.getContext(); in SplitVecOp_CMP() local
4530 EVT::getVectorVT(Ctxt, ResVT.getVectorElementType(), SplitOpEC); in SplitVecOp_CMP()
5023 LLVMContext &Ctxt = *DAG.getContext(); in WidenVecRes_CMP() local
5035 EVT WidenResVT = TLI.getTypeToTransformTo(Ctxt, N->getValueType(0)); in WidenVecRes_CMP()
H A DDAGCombiner.cpp20320 LLVMContext &Ctxt = *DAG->getContext(); in getLoadedType() local
20321 return EVT::getIntegerVT(Ctxt, getLoadedSize() * 8); in getLoadedType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2665 auto *Ctxt = cast<llvm::DICompositeType>(DContext); in emitVTableSymbol() local
2674 Ctxt, SymbolName, Unit, /*LineNumber=*/0, VTy, Flags, in emitVTableSymbol()
5618 auto *Ctxt = cast<llvm::DICompositeType>(getDeclContextDescriptor(D)); in getOrCreateStaticDataMemberDeclarationOrNull() local
5619 return CreateRecordStaticField(D, Ctxt, cast<RecordDecl>(DC)); in getOrCreateStaticDataMemberDeclarationOrNull()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp7734 for (DeclContext *Ctxt = DC; Ctxt; Ctxt = Ctxt->getParent()) { in ActOnVariableDeclarator() local
7735 if (Ctxt->isFunctionOrMethod()) { in ActOnVariableDeclarator()
7736 FunctionOrMethod = Ctxt; in ActOnVariableDeclarator()
7739 const CXXRecordDecl *ParentDecl = dyn_cast<CXXRecordDecl>(Ctxt); in ActOnVariableDeclarator()