Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DJumpDiagnostics.cpp52 unsigned ParentScope; member
67 : ParentScope(parentScope), InDiag(InDiag), OutDiag(OutDiag), Loc(L) {} in GotoScope()
82 void BuildScopeInformation(Decl *D, unsigned &ParentScope);
84 unsigned &ParentScope);
85 void BuildScopeInformation(CompoundLiteralExpr *CLE, unsigned &ParentScope);
130 assert(Scopes[B].ParentScope < B); in GetDeepestCommonScope()
131 B = Scopes[B].ParentScope; in GetDeepestCommonScope()
133 assert(Scopes[A].ParentScope < A); in GetDeepestCommonScope()
134 A = Scopes[A].ParentScope; in GetDeepestCommonScope()
233 void JumpScopeChecker::BuildScopeInformation(Decl *D, unsigned &ParentScope) { in BuildScopeInformation() argument
[all …]
H A DSemaDecl.cpp13946 Scope *ParentScope = FnBodyScope->getParent(); in ActOnStartOfFunctionDef() local
13958 ParentScope, D, TemplateParameterLists, Bases); in ActOnStartOfFunctionDef()
13961 Decl *DP = HandleDeclarator(ParentScope, D, TemplateParameterLists); in ActOnStartOfFunctionDef()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DVarBypassDetector.cpp25 unsigned ParentScope = 0; in Init() local
26 AlwaysBypassed = !BuildScopeInformation(Body, ParentScope); in Init()
35 unsigned &ParentScope) { in BuildScopeInformation() argument
38 Scopes.push_back({ParentScope, VD}); in BuildScopeInformation()
39 ParentScope = Scopes.size() - 1; in BuildScopeInformation()
44 return BuildScopeInformation(Init, ParentScope); in BuildScopeInformation()
59 unsigned &ParentScope = in BuildScopeInformation() local
71 if (!BuildScopeInformation(Init, ParentScope)) in BuildScopeInformation()
76 if (!BuildScopeInformation(Var, ParentScope)) in BuildScopeInformation()
83 FromScopes.push_back({S, ParentScope}); in BuildScopeInformation()
[all …]
H A DVarBypassDetector.h62 bool BuildScopeInformation(const Decl *D, unsigned &ParentScope);
H A DCGStmt.cpp641 if (innermostScope != EHScopeStack::stable_end() && ParentScope) { in rescopeLabels()
642 ParentScope->Labels.append(Labels.begin(), Labels.end()); in rescopeLabels()
H A DCodeGenFunction.h896 LexicalScope *ParentScope;
904 : RunCleanupsScope(CGF), Range(Range), ParentScope(CGF.CurLexicalScope) {
932 CGF.CurLexicalScope = ParentScope;
/netbsd-src/sys/external/bsd/acpica/dist/parser/
H A Dpsobject.c352 ACPI_PARSE_OBJECT *ParentScope; in AcpiPsCreateOp() local
434 ParentScope = AcpiPsGetParentScope (&(WalkState->ParserState)); in AcpiPsCreateOp()
435 AcpiPsAppendArg (ParentScope, Op); in AcpiPsCreateOp()
437 if (ParentScope) in AcpiPsCreateOp()
439 OpInfo = AcpiPsGetOpcodeInfo (ParentScope->Common.AmlOpcode); in AcpiPsCreateOp()
443 if (ParentScope->Common.ArgListLength > ArgumentCount) in AcpiPsCreateOp()
453 else if ((ParentScope->Common.AmlOpcode == AML_INCREMENT_OP) || in AcpiPsCreateOp()
454 (ParentScope->Common.AmlOpcode == AML_DECREMENT_OP)) in AcpiPsCreateOp()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeInlineSiteSymbol.cpp84 TypeIndex ParentScope = FRecord.getParentScope(); in getName() local
85 if (!ParentScope.isNoneType()) { in getName()
86 QualifiedName.append(std::string(Ids.getTypeName(ParentScope))); in getName()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h613 FuncIdRecord(TypeIndex ParentScope, TypeIndex FunctionType, StringRef Name) in FuncIdRecord() argument
614 : TypeRecord(TypeRecordKind::FuncId), ParentScope(ParentScope), in FuncIdRecord()
617 TypeIndex getParentScope() const { return ParentScope; } in getParentScope()
621 TypeIndex ParentScope; variable
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
H A Ddebuginfo_ocaml.c252 llvm_dibuild_create_module_native(value Builder, LLVMMetadataRef ParentScope, in llvm_dibuild_create_module_native() argument
256 DIBuilder_val(Builder), ParentScope, String_val(Name), in llvm_dibuild_create_module_native()
275 LLVMMetadataRef ParentScope, in llvm_dibuild_create_namespace() argument
278 DIBuilder_val(Builder), ParentScope, String_val(Name), in llvm_dibuild_create_namespace()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DDebugInfo.h298 LLVMDIBuilderCreateModule(LLVMDIBuilderRef Builder, LLVMMetadataRef ParentScope,
315 LLVMMetadataRef ParentScope,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DDebugInfo.cpp905 LLVMDIBuilderCreateModule(LLVMDIBuilderRef Builder, LLVMMetadataRef ParentScope, in LLVMDIBuilderCreateModule() argument
911 unwrapDI<DIScope>(ParentScope), StringRef(Name, NameLen), in LLVMDIBuilderCreateModule()
918 LLVMMetadataRef ParentScope, in LLVMDIBuilderCreateNameSpace() argument
922 unwrapDI<DIScope>(ParentScope), StringRef(Name, NameLen), ExportSymbols)); in LLVMDIBuilderCreateNameSpace()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParser.cpp1229 Scope *ParentScope = getCurScope()->getParent(); in ParseFunctionDefinition() local
1232 Decl *DP = Actions.HandleDeclarator(ParentScope, D, in ParseFunctionDefinition()
1260 Scope *ParentScope = getCurScope()->getParent(); in ParseFunctionDefinition() local
1263 Decl *FuncDecl = Actions.HandleDeclarator(ParentScope, D, in ParseFunctionDefinition()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp427 Func.FunctionType, Func.ParentScope); in visitKnownRecord()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp553 error(IO.mapInteger(Record.ParentScope, "ParentScope")); in visitKnownRecord()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp569 IO.mapRequired("ParentScope", Record.ParentScope); in map()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp405 TypeIndex ParentScope = getScopeIndex(Scope); in getFuncIdForSubprogram() local
406 FuncIdRecord FuncId(ParentScope, getTypeIndex(SP->getType()), DisplayName); in getFuncIdForSubprogram()