Searched refs:IsSimple (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DDOTGraphTraits.h30 bool IsSimple; member in struct:llvm::DefaultDOTGraphTraits
34 return IsSimple;
38 explicit DefaultDOTGraphTraits(bool simple=false) : IsSimple (simple) {}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDOTGraphTraitsPass.h31 typename AnalysisT, bool IsSimple, typename GraphT = AnalysisT *,
58 ViewGraph(Graph, Name, IsSimple, Title);
73 typename AnalysisT, bool IsSimple, typename GraphT = AnalysisT *,
107 WriteGraph(File, Graph, IsSimple, Title);
125 typename AnalysisT, bool IsSimple, typename GraphT = AnalysisT *,
136 ViewGraph(Graph, Name, IsSimple, Title);
151 typename AnalysisT, bool IsSimple, typename GraphT = AnalysisT *,
169 WriteGraph(File, Graph, IsSimple, Title);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTailDuplicator.h78 bool shouldTailDuplicate(bool IsSimple, MachineBasicBlock &TailBB);
90 bool IsSimple, MachineBasicBlock *MBB,
117 bool tailDuplicate(bool IsSimple,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTailDuplicator.cpp151 /// \p IsSimple - return value of isSimpleBB
159 bool IsSimple, MachineBasicBlock *MBB,
169 if (!tailDuplicate(IsSimple, MBB, ForcedLayoutPred, TDBBs, Copies))
281 bool IsSimple = isSimpleBB(MBB); local
283 if (!shouldTailDuplicate(IsSimple, *MBB))
286 MadeChange |= tailDuplicateAndUpdate(IsSimple, MBB, nullptr);
549 bool TailDuplicator::shouldTailDuplicate(bool IsSimple, argument
659 if (IsSimple)
796 /// \p IsSimple result of isSimpleBB
804 bool TailDuplicator::tailDuplicate(bool IsSimple, MachineBasicBloc argument
158 tailDuplicateAndUpdate( bool IsSimple, MachineBasicBlock *MBB, MachineBasicBlock *ForcedLayoutPred, SmallVectorImpl<MachineBasicBlock*> *DuplicatedPreds, function_ref<void(MachineBasicBlock *)> *RemovalCallback) argument
[all...]
H A DMachineBlockPlacement.cpp718 bool IsSimple = TailDup.isSimpleBB(BB); local
722 return TailDup.shouldTailDuplicate(IsSimple, *BB);
3014 bool IsSimple = TailDup.isSimpleBB(BB); local
3015 TailDup.tailDuplicateAndUpdate(IsSimple, BB, LPred,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp241 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, argument
277 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
338 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
360 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
453 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
460 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
893 bool IsSimple = (NumOutputs != 0 || NumInputs != 0);
896 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple,
H A DSemaConcept.cpp995 Expr *E, bool IsSimple, SourceLocation NoexceptLoc,
998 Requirement(IsSimple ? RK_Simple : RK_Compound, Status == SS_Dependent,
1005 assert((!IsSimple || (Req.isEmpty() && NoexceptLoc.isInvalid())) &&
1013 SubstitutionDiagnostic *ExprSubstDiag, bool IsSimple,
1015 Requirement(IsSimple ? RK_Simple : RK_Compound, Req.isDependent(),
1019 assert((!IsSimple || (Req.isEmpty() && NoexceptLoc.isInvalid())) &&
H A DSemaExprCXX.cpp8334 return BuildExprRequirement(E, /*IsSimple=*/true,
8371 return BuildExprRequirement(E, /*IsSimple=*/false, NoexceptLoc,
8402 return BuildExprRequirement(E, /*IsSimple=*/false, NoexceptLoc, {});
8410 E, /*IsSimple=*/false, NoexceptLoc,
8416 Expr *E, bool IsSimple, SourceLocation NoexceptLoc,
8453 return new (Context) concepts::ExprRequirement(E, IsSimple, NoexceptLoc,
8461 bool IsSimple, SourceLocation NoexceptLoc,
8464 IsSimple, NoexceptLoc,
H A DTreeTransform.h1393 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, argument
1400 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs,
3113 concepts::Requirement::SubstitutionDiagnostic *SubstDiag, bool IsSimple,
3116 return SemaRef.BuildExprRequirement(SubstDiag, IsSimple, NoexceptLoc,
3121 RebuildExprRequirement(Expr *E, bool IsSimple, SourceLocation NoexceptLoc, argument
3123 return SemaRef.BuildExprRequirement(E, IsSimple, NoexceptLoc,
3112 RebuildExprRequirement( concepts::Requirement::SubstitutionDiagnostic *SubstDiag, bool IsSimple, SourceLocation NoexceptLoc, concepts::ExprRequirement::ReturnTypeRequirement Ret) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp1661 if (!Frame.IsSimple) {
1760 unsigned LSDAEncoding, bool IsSignalFrame, bool IsSimple,
1764 IsSimple(IsSimple), RAReg(RAReg), IsBKeyFrame(IsBKeyFrame) {}
1770 IsSimple(Frame.IsSimple), RAReg(Frame.RAReg),
1781 IsSignalFrame, IsSimple, RAReg) <
1784 Other.IsSimple, Other.RAReg);
1791 bool IsSimple; member in struct:__anon1926::CIEKey
1807 Key.IsSignalFrame, Key.IsSimple, Ke
1759 CIEKey(const MCSymbol *Personality, unsigned PersonalityEncoding, unsigned LSDAEncoding, bool IsSignalFrame, bool IsSimple, unsigned RAReg, bool IsBKeyFrame) argument
[all...]
H A DMCStreamer.cpp422 void MCStreamer::EmitCFIStartProc(bool IsSimple, SMLoc Loc) { argument
428 Frame.IsSimple = IsSimple;
H A DMCAsmStreamer.cpp1526 if (Frame.IsSimple)
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExprConcepts.h337 /// \param IsSimple whether this was a simple requirement in source.
343 Expr *E, bool IsSimple, SourceLocation NoexceptLoc,
351 /// \param IsSimple whether this was a simple requirement in source.
356 ExprRequirement(SubstitutionDiagnostic *E, bool IsSimple,
H A DStmt.h2742 bool IsSimple; member in class:clang::AsmStmt
2756 : Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile),
2767 bool isSimple() const { return IsSimple; }
2768 void setSimple(bool V) { IsSimple = V; }
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp487 explicit DOTGraphTraits(bool IsSimple = false)
488 : DefaultDOTGraphTraits(IsSimple) {}
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCDwarf.h619 bool IsSimple = false; member in struct:llvm::MCDwarfFrameInfo
H A DMCStreamer.h934 void EmitCFIStartProc(bool IsSimple, SMLoc Loc = SMLoc());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp2120 bool IsSimple = true; local
2126 IsSimple = false;
2135 if (IsSimple) {
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp218 bool IsSimple = isSimple(); local
220 if (IsSimple && VTSIsSimple)
224 bool HaveDefault = IsSimple || hasDefault();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4295 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,

Completed in 605 milliseconds