HomeSort by: relevance | last modified time | path
    Searched refs:IsSimple (Results 1 - 22 of 22) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
DOTGraphTraits.h 30 bool IsSimple;
33 bool isSimple() {
34 return IsSimple;
38 explicit DefaultDOTGraphTraits(bool simple=false) : IsSimple (simple) {}
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DDGPrinter.h 40 DOTGraphTraits(bool IsSimple = false) : DefaultDOTGraphTraits(IsSimple) {}
DOTGraphTraitsPass.h 29 typename AnalysisT, bool IsSimple, typename GraphT = AnalysisT *,
56 ViewGraph(Graph, Name, IsSimple, Title);
71 typename AnalysisT, bool IsSimple, typename GraphT = AnalysisT *,
105 WriteGraph(File, Graph, IsSimple, Title);
123 typename AnalysisT, bool IsSimple, typename GraphT = AnalysisT *,
134 ViewGraph(Graph, Name, IsSimple, Title);
149 typename AnalysisT, bool IsSimple, typename GraphT = AnalysisT *,
167 WriteGraph(File, Graph, IsSimple, Title);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TailDuplicator.h 79 bool shouldTailDuplicate(bool IsSimple, MachineBasicBlock &TailBB);
92 bool IsSimple, MachineBasicBlock *MBB,
120 bool tailDuplicate(bool IsSimple,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmtAsm.cpp 241 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
277 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
346 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
368 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
469 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
483 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs,
489 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
922 bool IsSimple = (NumOutputs != 0 || NumInputs != 0);
934 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple,
SemaConcept.cpp 1033 Expr *E, bool IsSimple, SourceLocation NoexceptLoc,
1036 Requirement(IsSimple ? RK_Simple : RK_Compound, Status == SS_Dependent,
1043 assert((!IsSimple || (Req.isEmpty() && NoexceptLoc.isInvalid())) &&
1051 SubstitutionDiagnostic *ExprSubstDiag, bool IsSimple,
1053 Requirement(IsSimple ? RK_Simple : RK_Compound, Req.isDependent(),
1057 assert((!IsSimple || (Req.isEmpty() && NoexceptLoc.isInvalid())) &&
SemaExprCXX.cpp 8567 return BuildExprRequirement(E, /*IsSimple=*/true,
8604 return BuildExprRequirement(E, /*IsSimple=*/false, NoexceptLoc,
8636 return BuildExprRequirement(E, /*IsSimple=*/false, NoexceptLoc, {});
8644 E, /*IsSimple=*/false, NoexceptLoc,
8650 Expr *E, bool IsSimple, SourceLocation NoexceptLoc,
8687 return new (Context) concepts::ExprRequirement(E, IsSimple, NoexceptLoc,
8695 bool IsSimple, SourceLocation NoexceptLoc,
8698 IsSimple, NoexceptLoc,
TreeTransform.h 1426 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
1433 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs,
3383 concepts::Requirement::SubstitutionDiagnostic *SubstDiag, bool IsSimple,
3386 return SemaRef.BuildExprRequirement(SubstDiag, IsSimple, NoexceptLoc,
3391 RebuildExprRequirement(Expr *E, bool IsSimple, SourceLocation NoexceptLoc,
3393 return SemaRef.BuildExprRequirement(E, IsSimple, NoexceptLoc,
7666 return getDerived().RebuildGCCAsmStmt(S->getAsmLoc(), S->isSimple(),
12327 return getDerived().RebuildExprRequirement(E, Req->isSimple(),
12332 Req->isSimple(), Req->getNoexceptLoc(), std::move(*TransRetReq));
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TailDuplicator.cpp 151 /// \p IsSimple - return value of isSimpleBB
159 bool IsSimple, MachineBasicBlock *MBB,
170 if (!tailDuplicate(IsSimple, MBB, ForcedLayoutPred,
283 bool IsSimple = isSimpleBB(MBB);
285 if (!shouldTailDuplicate(IsSimple, *MBB))
288 MadeChange |= tailDuplicateAndUpdate(IsSimple, MBB, nullptr);
551 bool TailDuplicator::shouldTailDuplicate(bool IsSimple,
671 if (IsSimple)
813 /// \p IsSimple result of isSimpleBB
821 bool TailDuplicator::tailDuplicate(bool IsSimple, MachineBasicBlock *TailBB
    [all...]
MachineBlockPlacement.cpp 753 bool IsSimple = TailDup.isSimpleBB(BB);
757 return TailDup.shouldTailDuplicate(IsSimple, *BB);
3067 bool IsSimple = TailDup.isSimpleBB(BB);
3078 TailDup.tailDuplicateAndUpdate(IsSimple, BB, LPred, &DuplicatedPreds,
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCDwarf.cpp 1683 if (!Frame.IsSimple) {
1789 unsigned LSDAEncoding, bool IsSignalFrame, bool IsSimple,
1793 IsSimple(IsSimple), RAReg(RAReg), IsBKeyFrame(IsBKeyFrame) {}
1799 IsSimple(Frame.IsSimple), RAReg(Frame.RAReg),
1810 IsSignalFrame, IsSimple, RAReg) <
1813 Other.IsSimple, Other.RAReg);
1820 bool IsSimple;
1836 Key.IsSignalFrame, Key.IsSimple, Key.RAReg, Key.IsBKeyFrame))
    [all...]
MCStreamer.cpp 434 void MCStreamer::emitCFIStartProc(bool IsSimple, SMLoc Loc) {
440 Frame.IsSimple = IsSimple;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprConcepts.h 342 /// \param IsSimple whether this was a simple requirement in source.
348 Expr *E, bool IsSimple, SourceLocation NoexceptLoc,
356 /// \param IsSimple whether this was a simple requirement in source.
361 ExprRequirement(SubstitutionDiagnostic *E, bool IsSimple,
364 bool isSimple() const { return getKind() == RK_Simple; }
Stmt.h 2822 bool IsSimple;
2834 AsmStmt(StmtClass SC, SourceLocation asmloc, bool issimple, bool isvolatile,
2836 : Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile),
2847 bool isSimple() const { return IsSimple; }
2848 void setSimple(bool V) { IsSimple = V; }
2986 GCCAsmStmt(const ASTContext &C, SourceLocation asmloc, bool issimple,
3210 SourceLocation lbraceloc, bool issimple, bool isvolatile,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ModuleManager.cpp 515 explicit DOTGraphTraits(bool IsSimple = false)
516 : DefaultDOTGraphTraits(IsSimple) {}
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86LoadValueInjectionLoadHardening.cpp 201 DOTGraphTraits(bool IsSimple = false) : DefaultDOTGraphTraits(IsSimple) {}
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCDwarf.h 632 bool IsSimple = false;
MCStreamer.h 977 void emitCFIStartProc(bool IsSimple, SMLoc Loc = SMLoc());
  /src/external/apache2/llvm/dist/clang/lib/Format/
UnwrappedLineParser.cpp 2592 bool IsSimple = true;
2598 IsSimple = false;
2607 if (IsSimple) {
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSA.cpp 2269 DOTGraphTraits(bool IsSimple = false) : DefaultDOTGraphTraits(IsSimple) {}
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 212 // The isSimple call is much quicker than hasDefault - check this first.
213 bool IsSimple = isSimple();
214 bool VTSIsSimple = VTS.isSimple();
215 if (IsSimple && VTSIsSimple)
219 bool HaveDefault = IsSimple || hasDefault();
1807 if (Constraint.VVT.isSimple())
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 4771 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,

Completed in 102 milliseconds