Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDOTGraphTraitsPass.h35 bool IsSimple) { in viewGraphForFunction() argument
38 ViewGraph(Graph, Name, IsSimple, in viewGraphForFunction()
42 template <typename AnalysisT, bool IsSimple,
47 : PassInfoMixin<DOTGraphTraitsViewer<AnalysisT, IsSimple, GraphT,
68 viewGraphForFunction(F, Graph, Name, IsSimple); in run()
106 bool IsSimple) { in printGraphForFunction() argument
118 WriteGraph(File, Graph, IsSimple, in printGraphForFunction()
125 template <typename AnalysisT, bool IsSimple,
130 : PassInfoMixin<DOTGraphTraitsPrinter<AnalysisT, IsSimple, GraphT,
152 printGraphForFunction(F, Graph, Name, IsSimple); in run()
[all …]
H A DDDGPrinter.h42 DOTGraphTraits(bool IsSimple = false) : DefaultDOTGraphTraits(IsSimple) {}
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DDOTGraphTraits.h30 bool IsSimple;
34 return IsSimple; in isSimple()
38 explicit DefaultDOTGraphTraits(bool simple=false) : IsSimple (simple) {} in IsSimple() function
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTailDuplicator.h78 bool shouldTailDuplicate(bool IsSimple, MachineBasicBlock &TailBB);
91 bool IsSimple, MachineBasicBlock *MBB,
118 bool tailDuplicate(bool IsSimple,
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTailDuplicator.cpp167 bool IsSimple, MachineBasicBlock *MBB, in tailDuplicateAndUpdate() argument
178 if (!tailDuplicate(IsSimple, MBB, ForcedLayoutPred, in tailDuplicateAndUpdate()
292 bool IsSimple = isSimpleBB(&MBB); in tailDuplicateBlocks() local
294 if (!shouldTailDuplicate(IsSimple, MBB)) in tailDuplicateBlocks()
297 MadeChange |= tailDuplicateAndUpdate(IsSimple, &MBB, nullptr); in tailDuplicateBlocks()
565 bool TailDuplicator::shouldTailDuplicate(bool IsSimple, in shouldTailDuplicate() argument
693 if (IsSimple) in shouldTailDuplicate()
845 bool TailDuplicator::tailDuplicate(bool IsSimple, MachineBasicBlock *TailBB, in tailDuplicate() argument
858 if (IsSimple) in tailDuplicate()
H A DMachineBlockPlacement.cpp789 bool IsSimple = TailDup.isSimpleBB(BB); in shouldTailDuplicate() local
793 return TailDup.shouldTailDuplicate(IsSimple, *BB); in shouldTailDuplicate()
3190 bool IsSimple = TailDup.isSimpleBB(BB); in maybeTailDuplicateBlock() local
3201 TailDup.tailDuplicateAndUpdate(IsSimple, BB, LPred, &DuplicatedPreds, in maybeTailDuplicateBlock()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp243 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in ActOnGCCAsmStmt() argument
280 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
349 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
371 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
478 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
492 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, in ActOnGCCAsmStmt()
498 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
940 bool IsSimple = (NumOutputs != 0 || NumInputs != 0); in ActOnMSAsmStmt() local
963 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple, in ActOnMSAsmStmt()
H A DSemaConcept.cpp1888 Expr *E, bool IsSimple, SourceLocation NoexceptLoc, in ExprRequirement() argument
1891 Requirement(IsSimple ? RK_Simple : RK_Compound, Status == SS_Dependent, in ExprRequirement()
1898 assert((!IsSimple || (Req.isEmpty() && NoexceptLoc.isInvalid())) && in ExprRequirement()
1906 SubstitutionDiagnostic *ExprSubstDiag, bool IsSimple, in ExprRequirement() argument
1908 Requirement(IsSimple ? RK_Simple : RK_Compound, Req.isDependent(), in ExprRequirement()
1912 assert((!IsSimple || (Req.isEmpty() && NoexceptLoc.isInvalid())) && in ExprRequirement()
H A DSemaExprCXX.cpp9291 Expr *E, bool IsSimple, SourceLocation NoexceptLoc, in BuildExprRequirement() argument
9329 IsSimple, NoexceptLoc, ReturnTypeRequirement); in BuildExprRequirement()
9336 return new (Context) concepts::ExprRequirement(E, IsSimple, NoexceptLoc, in BuildExprRequirement()
9344 bool IsSimple, SourceLocation NoexceptLoc, in BuildExprRequirement() argument
9347 IsSimple, NoexceptLoc, in BuildExprRequirement()
H A DTreeTransform.h1518 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in RebuildGCCAsmStmt() argument
1525 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, in RebuildGCCAsmStmt()
3706 concepts::Requirement::SubstitutionDiagnostic *SubstDiag, bool IsSimple, in RebuildExprRequirement() argument
3709 return SemaRef.BuildExprRequirement(SubstDiag, IsSimple, NoexceptLoc, in RebuildExprRequirement()
3714 RebuildExprRequirement(Expr *E, bool IsSimple, SourceLocation NoexceptLoc, in RebuildExprRequirement() argument
3716 return SemaRef.BuildExprRequirement(E, IsSimple, NoexceptLoc, in RebuildExprRequirement()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DBlockCoverageInference.cpp300 DOTGraphTraits(bool IsSimple = false) : DefaultDOTGraphTraits(IsSimple) {} in DOTGraphTraits()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp1688 if (!Frame.IsSimple) { in EmitCIE()
1789 IsSimple(Frame.IsSimple), RAReg(Frame.RAReg), in CIEKey()
1801 IsSignalFrame, IsSimple, RAReg, IsBKeyFrame, in operator <()
1805 Other.IsSimple, Other.RAReg, Other.IsBKeyFrame, in operator <()
1813 IsSignalFrame == Other.IsSignalFrame && IsSimple == Other.IsSimple && in operator ==()
1823 bool IsSimple = false; member
H A DMCStreamer.cpp438 void MCStreamer::emitCFIStartProc(bool IsSimple, SMLoc Loc) { in emitCFIStartProc() argument
445 Frame.IsSimple = IsSimple; in emitCFIStartProc()
H A DMCAsmStreamer.cpp1957 if (Frame.IsSimple) in emitCFIStartProcImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp200 DOTGraphTraits(bool IsSimple = false) : DefaultDOTGraphTraits(IsSimple) {} in DOTGraphTraits()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp794 bool IsSimple = isa<LoadInst>(Inst) ? cast<LoadInst>(Inst)->isSimple() in tryPromoteAllocaToVector() local
796 if (!IsSimple) in tryPromoteAllocaToVector()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCDwarf.h741 bool IsSimple = false; member
H A DMCStreamer.h997 void emitCFIStartProc(bool IsSimple, SMLoc Loc = SMLoc());
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h3113 bool IsSimple;
3127 : Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile),
3138 bool isSimple() const { return IsSimple; }
3139 void setSimple(bool V) { IsSimple = V; }
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp2320 DOTGraphTraits(bool IsSimple = false) : DefaultDOTGraphTraits(IsSimple) {} in DOTGraphTraits()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp3934 bool IsSimple = true; in parseJavaEnumBody() local
3940 IsSimple = false; in parseJavaEnumBody()
3949 if (IsSimple) { in parseJavaEnumBody()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp208 bool IsSimple = isSimple(); in operator ==() local
210 if (IsSimple && VTSIsSimple) in operator ==()
214 bool HaveDefault = IsSimple || hasDefault(); in operator ==()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp2372 DOTGraphTraits(bool IsSimple = false) : DefaultDOTGraphTraits(IsSimple) {} in DOTGraphTraits()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10956 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp4090 DOTGraphTraits(bool IsSimple = false) : DefaultDOTGraphTraits(IsSimple) {} in DOTGraphTraits()