Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCFG.cpp190 const Loop *Outer = nullptr; in isReachableImpl() local
192 Outer = getOutermostLoop(LI, BB); in isReachableImpl()
197 if (LoopsWithHoles.count(Outer)) in isReachableImpl()
198 Outer = nullptr; in isReachableImpl()
199 if (StopLoops.contains(Outer)) in isReachableImpl()
209 if (Outer) { in isReachableImpl()
213 Outer->getExitBlocks(Worklist); in isReachableImpl()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaInternal.h248 std::map<unsigned, SpecifierInfoList>::iterator Outer; variable
255 Outer(Set.DistanceMap.begin()), in iterator()
256 Inner(!IsAtEnd ? Outer->second.begin() : OuterBack->second.end()) { in iterator()
262 if (Inner == Outer->second.end() && Outer != OuterBack) {
263 ++Outer;
264 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.cpp273 const auto *Outer = dyn_cast<NamedDecl>(DC); in createNestedNameSpecifierForScopeOf() local
275 if (Outer && !(OuterNS && OuterNS->isAnonymousNamespace())) { in createNestedNameSpecifierForScopeOf()
291 Outer = dyn_cast<NamedDecl>(Decl); in createNestedNameSpecifierForScopeOf()
299 } else if (const auto *TD = dyn_cast<TagDecl>(Outer)) { in createNestedNameSpecifierForScopeOf()
302 } 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.cpp434 CXXNameMangler(CXXNameMangler &Outer, raw_ostream &Out_) in CXXNameMangler() argument
435 : Context(Outer.Context), Out(Out_), Structor(Outer.Structor), in CXXNameMangler()
436 StructorType(Outer.StructorType), SeqID(Outer.SeqID), in CXXNameMangler()
437 FunctionTypeDepth(Outer.FunctionTypeDepth), AbiTagsRoot(AbiTags), in CXXNameMangler()
438 Substitutions(Outer.Substitutions), in CXXNameMangler()
439 ModuleSubstitutions(Outer.ModuleSubstitutions) {} in CXXNameMangler()
441 CXXNameMangler(CXXNameMangler &Outer, llvm::raw_null_ostream &Out_) in CXXNameMangler() argument
442 : 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.h490 auto Contains = [](const Loop *Outer, const Loop *Inner) { in movementPreservesLCSSAForm()
491 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.cpp321 CHRScope *Outer,
1133 CHRScope *Outer, in splitScope() argument
1138 if (Outer) { in splitScope()
1161 if (Outer) { in splitScope()
1162 CHR_DEBUG(dbgs() << "Outer " << *Outer << "\n"); in splitScope()
1255 if (!Outer) in splitScope()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h402 Outer = 0x03, enumerator
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp4357 Current = Current->Outer) { in findInstantiationOf()
4415 while (Current->CombineWithOuterScope && Current->Outer) { in InstantiatedLocal()
4416 Current = Current->Outer; in InstantiatedLocal()
4440 Current && Current->CombineWithOuterScope; Current = Current->Outer) in MakeInstantiatedLocalArgPack()
4481 Current = Current->Outer) { in getPartiallySubstitutedPack()
H A DSemaTemplateDeduction.cpp826 DeducedPack *Outer = nullptr; member
961 Pack.Outer = Info.PendingDeducedPacks[Pack.Index]; in finishConstruction()
986 Info.PendingDeducedPacks[Pack.Index] = Pack.Outer; in ~PackDeductionScope()
1090 if (Pack.Outer) { in finish()
1091 if (Pack.Outer->DeferredDeduction.isNull()) { in finish()
1094 Pack.Outer->DeferredDeduction = NewPack; in finish()
1097 Loc = &Pack.Outer->DeferredDeduction; in finish()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4809 const Container *Outer = nullptr;
4814 FunctionEffectIterator(const Container &O, size_t I) : Outer(&O), Idx(I) {}
4828 assert(Outer != nullptr && "invalid FunctionEffectIterator");
4829 bool HasConds = !Outer->Conditions.empty();
4830 return FunctionEffectWithCondition{Outer->Effects[Idx],
4831 HasConds ? Outer->Conditions[Idx]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicsPowerPC.td1634 // MMA Reduced-Precision: Outer Product Intrinsic Definitions.
1669 // MMA Reduced-Precision: bfloat16 Outer Product Intrinsic Definitions.
1676 // 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,
1021 OuterT *ConcreteOuter = dyn_cast<OuterT>(&Outer); in diaDumpChildren() argument
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h738 Value *A, Value *B, Instruction &Outer,
H A DInstCombineSelect.cpp2004 Value *B, Instruction &Outer, in foldSPFofSPF() argument
2007 if (Outer.getType() != Inner->getType()) in foldSPFofSPF()
2015 return replaceInstUsesWith(Outer, Inner); in foldSPFofSPF()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1685 if (const auto *Outer = dyn_cast_if_present<AttributedStmt>(S)) in ParseIfStatement() local
1686 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