Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCFG.cpp173 const Loop *Outer = nullptr; in isPotentiallyReachableFromMany() local
175 Outer = getOutermostLoop(LI, BB); in isPotentiallyReachableFromMany()
180 if (LoopsWithHoles.count(Outer)) in isPotentiallyReachableFromMany()
181 Outer = nullptr; in isPotentiallyReachableFromMany()
182 if (StopLoop && Outer == StopLoop) in isPotentiallyReachableFromMany()
192 if (Outer) { in isPotentiallyReachableFromMany()
196 Outer->getExitBlocks(Worklist); in isPotentiallyReachableFromMany()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaInternal.h252 std::map<unsigned, SpecifierInfoList>::iterator Outer; variable
259 Outer(Set.DistanceMap.begin()), in iterator()
260 Inner(!IsAtEnd ? Outer->second.begin() : OuterBack->second.end()) { in iterator()
266 if (Inner == Outer->second.end() && Outer != OuterBack) {
267 ++Outer;
268 Inner = Outer->second.begin();
H A DTemplate.h405 LocalInstantiationScope *Outer; variable
429 : SemaRef(SemaRef), Outer(SemaRef.CurrentInstantiationScope), in SemaRef()
452 SemaRef.CurrentInstantiationScope = Outer; in Exit()
468 newScope->Outer = nullptr; in cloneScopes()
469 if (Outer) in cloneScopes()
470 newScope->Outer = Outer->cloneScopes(Outermost); in cloneScopes()
501 LocalInstantiationScope *Out = Scope->Outer; in deleteScopes()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/union/
H A Dtst.UnionInside.d53 union Outer { union
59 union Outer O;
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/struct/
H A Derr.D_DECL_INCOMPLETE.order2.d55 struct Outer { struct
61 struct Outer O; argument
H A Dtst.StructInside.d54 struct Outer { struct
60 struct Outer O; argument
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DQualTypeNames.cpp272 const auto *Outer = dyn_cast_or_null<NamedDecl>(DC); in createNestedNameSpecifierForScopeOf() local
274 if (Outer && !(OuterNS && OuterNS->isAnonymousNamespace())) { in createNestedNameSpecifierForScopeOf()
290 Outer = dyn_cast<NamedDecl>(Decl); in createNestedNameSpecifierForScopeOf()
298 } else if (const auto *TD = dyn_cast<TagDecl>(Outer)) { in createNestedNameSpecifierForScopeOf()
301 } else if (isa<TranslationUnitDecl>(Outer)) { in createNestedNameSpecifierForScopeOf()
H A DMangle.cpp37 StringRef Outer, in mangleFunctionBlock() argument
42 Out << "__" << Outer << "_block_invoke"; in mangleFunctionBlock()
44 Out << "__" << Outer << "_block_invoke_" << discriminator+1; in mangleFunctionBlock()
H A DItaniumMangle.cpp435 CXXNameMangler(CXXNameMangler &Outer, raw_ostream &Out_) in CXXNameMangler() argument
436 : Context(Outer.Context), Out(Out_), Structor(Outer.Structor), in CXXNameMangler()
437 StructorType(Outer.StructorType), SeqID(Outer.SeqID), in CXXNameMangler()
438 FunctionTypeDepth(Outer.FunctionTypeDepth), AbiTagsRoot(AbiTags), in CXXNameMangler()
439 Substitutions(Outer.Substitutions), in CXXNameMangler()
440 ModuleSubstitutions(Outer.ModuleSubstitutions) {} in CXXNameMangler()
442 CXXNameMangler(CXXNameMangler &Outer, llvm::raw_null_ostream &Out_) in CXXNameMangler() argument
443 : CXXNameMangler(Outer, (raw_ostream &)Out_) { in CXXNameMangler()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSupport.cpp130 StringRef Outer = in getInnerComponent() local
137 return std::make_tuple(Outer, Inner); in getInnerComponent()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopInfo.h485 auto Contains = [](const Loop *Outer, const Loop *Inner) { in movementPreservesLCSSAForm()
486 return !Outer || Outer->contains(Inner); in movementPreservesLCSSAForm()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp243 LoopInterchangeLegality(Loop *Outer, Loop *Inner, ScalarEvolution *SE, in LoopInterchangeLegality() argument
245 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), ORE(ORE) {} in LoopInterchangeLegality()
270 bool tightlyNested(Loop *Outer, Loop *Inner);
301 LoopInterchangeProfitability(Loop *Outer, Loop *Inner, ScalarEvolution *SE, in LoopInterchangeProfitability() argument
303 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), ORE(ORE) {} in LoopInterchangeProfitability()
334 LoopInterchangeTransform(Loop *Outer, Loop *Inner, ScalarEvolution *SE, in LoopInterchangeTransform() argument
337 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), LI(LI), DT(DT), LIL(LIL) {} in LoopInterchangeTransform()
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp280 void getBlockMacroRanges(CastExpr *E, SourceRange &Outer, SourceRange &Inner) { in getBlockMacroRanges() argument
289 Outer = MacroRange.getAsRange(); in getBlockMacroRanges()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp320 CHRScope *Outer,
1132 CHRScope *Outer, in splitScope() argument
1137 if (Outer) { in splitScope()
1160 if (Outer) { in splitScope()
1161 CHR_DEBUG(dbgs() << "Outer " << *Outer << "\n"); in splitScope()
1254 if (!Outer) in splitScope()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h395 Outer = 0x03, enumerator
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp4214 Current = Current->Outer) { in findInstantiationOf()
4272 while (Current->CombineWithOuterScope && Current->Outer) { in InstantiatedLocal()
4273 Current = Current->Outer; in InstantiatedLocal()
4297 Current && Current->CombineWithOuterScope; Current = Current->Outer) in MakeInstantiatedLocalArgPack()
4338 Current = Current->Outer) { in getPartiallySubstitutedPack()
H A DSemaTemplateDeduction.cpp699 DeducedPack *Outer = nullptr; member
833 Pack.Outer = Info.PendingDeducedPacks[Pack.Index]; in finishConstruction()
858 Info.PendingDeducedPacks[Pack.Index] = Pack.Outer; in ~PackDeductionScope()
945 if (Pack.Outer) { in finish()
946 if (Pack.Outer->DeferredDeduction.isNull()) { in finish()
949 Pack.Outer->DeferredDeduction = NewPack; in finish()
952 Loc = &Pack.Outer->DeferredDeduction; in finish()
H A DSemaCodeComplete.cpp5413 ConceptInfo *Outer; member in __anon28081b510b11::ConceptInfo::ValidVisitor
5424 ValidVisitor(ConceptInfo *Outer, const TemplateTypeParmType *T) in ValidVisitor() argument
5425 : Outer(Outer), T(T) { in ValidVisitor()
5482 auto R = Outer->Results.try_emplace(M.Name); in addResult()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicsPowerPC.td1614 // MMA Reduced-Precision: Outer Product Intrinsic Definitions.
1649 // MMA Reduced-Precision: bfloat16 Outer Product Intrinsic Definitions.
1656 // MMA Reduced-Precision: Missing Integer-based Outer Product Operations.
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp1019 void diaDumpChildren(PDBSymbol &Outer, PdbSymbolIdField Ids, in diaDumpChildren() argument
1021 OuterT *ConcreteOuter = dyn_cast<OuterT>(&Outer); in diaDumpChildren()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h716 Value *A, Value *B, Instruction &Outer,
H A DInstCombineSelect.cpp1860 Value *B, Instruction &Outer, in foldSPFofSPF() argument
1863 if (Outer.getType() != Inner->getType()) in foldSPFofSPF()
1871 return replaceInstUsesWith(Outer, Inner); in foldSPFofSPF()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1670 if (const auto *Outer = dyn_cast_if_present<AttributedStmt>(S)) in ParseIfStatement() local
1671 S = Outer->getSubStmt(); in ParseIfStatement()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp230 IO.enumCase(Kind, "Outer", VFTableSlotKind::Outer); in enumeration()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp442 static bool IsChainDependent(SDNode *Outer, SDNode *Inner, in IsChainDependent() argument
445 SDNode *N = Outer; in IsChainDependent()

12