HomeSort by relevance Sort by last modified time
    Searched refs:STMT (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/clang/test/CoverageMapping/
macro-expressions.cpp 15 #define STMT(s) s
18 STMT(if (1));
19 STMT(while (1));
20 STMT(for (;;));
21 STMT(if) (1);
22 STMT(while) (1);
23 STMT(for) (;;);
25 STMT(if (1)
26 STMT(if (1)));
28 STMT(if (1)) 0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree-ssa-operands.h 36 /* This represents the USE operands of a stmt. */
70 #define USE_STMT(USE) (USE)->loc.stmt
95 extern bool verify_ssa_operands (gimple stmt);
129 gimple stmt; member in struct:ssa_operand_iterator_d
147 /* This macro executes a loop over the operands of STMT specified in FLAG,
150 #define FOR_EACH_SSA_TREE_OPERAND(TREEVAR, STMT, ITER, FLAGS) \
151 for (TREEVAR = op_iter_init_tree (&(ITER), STMT, FLAGS); \
155 /* This macro executes a loop over the operands of STMT specified in FLAG,
158 #define FOR_EACH_SSA_USE_OPERAND(USEVAR, STMT, ITER, FLAGS) \
159 for (USEVAR = op_iter_init_use (&(ITER), STMT, FLAGS);
    [all...]
  /external/clang/include/clang/AST/
ASTFwd.h 23 class Stmt;
24 #define STMT(DERIVED, BASE) class DERIVED;
StmtVisitor.h 1 //===--- StmtVisitor.h - Visitor for Stmt subclasses ------------*- C++ -*-===//
29 /// StmtVisitorBase - This class implements a simple visitor for Stmt
30 /// subclasses. Since Expr derives from Stmt, this also includes support for
40 RetTy Visit(PTR(Stmt) S) {
43 // optimizer (e.g. LLVM) will fold this comparison into the switch stmt
101 // Top switch stmt: dispatch to VisitFooStmt for each FooStmt.
103 default: llvm_unreachable("Unknown stmt kind!");
104 #define ABSTRACT_STMT(STMT)
105 #define STMT(CLASS, PARENT) \
106 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
ASTFwd.h 23 class Stmt;
24 #define STMT(DERIVED, BASE) class DERIVED;
StmtVisitor.h 1 //===--- StmtVisitor.h - Visitor for Stmt subclasses ------------*- C++ -*-===//
29 /// StmtVisitorBase - This class implements a simple visitor for Stmt
30 /// subclasses. Since Expr derives from Stmt, this also includes support for
40 RetTy Visit(PTR(Stmt) S) {
43 // optimizer (e.g. LLVM) will fold this comparison into the switch stmt
101 // Top switch stmt: dispatch to VisitFooStmt for each FooStmt.
103 default: llvm_unreachable("Unknown stmt kind!");
104 #define ABSTRACT_STMT(STMT)
105 #define STMT(CLASS, PARENT) \
106 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
ASTFwd.h 23 class Stmt;
24 #define STMT(DERIVED, BASE) class DERIVED;
StmtVisitor.h 1 //===--- StmtVisitor.h - Visitor for Stmt subclasses ------------*- C++ -*-===//
29 /// StmtVisitorBase - This class implements a simple visitor for Stmt
30 /// subclasses. Since Expr derives from Stmt, this also includes support for
40 RetTy Visit(PTR(Stmt) S) {
43 // optimizer (e.g. LLVM) will fold this comparison into the switch stmt
101 // Top switch stmt: dispatch to VisitFooStmt for each FooStmt.
103 default: llvm_unreachable("Unknown stmt kind!");
104 #define ABSTRACT_STMT(STMT)
105 #define STMT(CLASS, PARENT) \
106 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
ASTFwd.h 23 class Stmt;
24 #define STMT(DERIVED, BASE) class DERIVED;
StmtVisitor.h 1 //===--- StmtVisitor.h - Visitor for Stmt subclasses ------------*- C++ -*-===//
29 /// StmtVisitorBase - This class implements a simple visitor for Stmt
30 /// subclasses. Since Expr derives from Stmt, this also includes support for
40 RetTy Visit(PTR(Stmt) S) {
43 // optimizer (e.g. LLVM) will fold this comparison into the switch stmt
101 // Top switch stmt: dispatch to VisitFooStmt for each FooStmt.
103 default: llvm_unreachable("Unknown stmt kind!");
104 #define ABSTRACT_STMT(STMT)
105 #define STMT(CLASS, PARENT) \
106 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ASTFwd.h 23 class Stmt;
24 #define STMT(DERIVED, BASE) class DERIVED;
StmtNodes.inc 21 # define ASMSTMT(Type, Base) STMT(Type, Base)
23 ABSTRACT_STMT(ASMSTMT(AsmStmt, Stmt))
41 # define ATTRIBUTEDSTMT(Type, Base) STMT(Type, Base)
43 ATTRIBUTEDSTMT(AttributedStmt, Stmt)
47 # define BREAKSTMT(Type, Base) STMT(Type, Base)
49 BREAKSTMT(BreakStmt, Stmt)
53 # define CXXCATCHSTMT(Type, Base) STMT(Type, Base)
55 CXXCATCHSTMT(CXXCatchStmt, Stmt)
59 # define CXXFORRANGESTMT(Type, Base) STMT(Type, Base)
61 CXXFORRANGESTMT(CXXForRangeStmt, Stmt)
    [all...]
StmtVisitor.h 1 //===--- StmtVisitor.h - Visitor for Stmt subclasses ------------*- C++ -*-===//
29 /// StmtVisitorBase - This class implements a simple visitor for Stmt
30 /// subclasses. Since Expr derives from Stmt, this also includes support for
40 RetTy Visit(PTR(Stmt) S) {
43 // optimizer (e.g. LLVM) will fold this comparison into the switch stmt
101 // Top switch stmt: dispatch to VisitFooStmt for each FooStmt.
103 default: llvm_unreachable("Unknown stmt kind!");
104 #define ABSTRACT_STMT(STMT)
105 #define STMT(CLASS, PARENT) \
106 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
ASTFwd.h 23 class Stmt;
24 #define STMT(DERIVED, BASE) class DERIVED;
StmtVisitor.h 1 //===--- StmtVisitor.h - Visitor for Stmt subclasses ------------*- C++ -*-===//
29 /// StmtVisitorBase - This class implements a simple visitor for Stmt
30 /// subclasses. Since Expr derives from Stmt, this also includes support for
40 RetTy Visit(PTR(Stmt) S) {
43 // optimizer (e.g. LLVM) will fold this comparison into the switch stmt
101 // Top switch stmt: dispatch to VisitFooStmt for each FooStmt.
103 default: llvm_unreachable("Unknown stmt kind!");
104 #define ABSTRACT_STMT(STMT)
105 #define STMT(CLASS, PARENT) \
106 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
ASTFwd.h 23 class Stmt;
24 #define STMT(DERIVED, BASE) class DERIVED;
StmtVisitor.h 1 //===--- StmtVisitor.h - Visitor for Stmt subclasses ------------*- C++ -*-===//
29 /// StmtVisitorBase - This class implements a simple visitor for Stmt
30 /// subclasses. Since Expr derives from Stmt, this also includes support for
40 RetTy Visit(PTR(Stmt) S) {
43 // optimizer (e.g. LLVM) will fold this comparison into the switch stmt
101 // Top switch stmt: dispatch to VisitFooStmt for each FooStmt.
103 default: llvm_unreachable("Unknown stmt kind!");
104 #define ABSTRACT_STMT(STMT)
105 #define STMT(CLASS, PARENT) \
106 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
ASTFwd.h 23 class Stmt;
24 #define STMT(DERIVED, BASE) class DERIVED;
StmtVisitor.h 1 //===--- StmtVisitor.h - Visitor for Stmt subclasses ------------*- C++ -*-===//
29 /// StmtVisitorBase - This class implements a simple visitor for Stmt
30 /// subclasses. Since Expr derives from Stmt, this also includes support for
40 RetTy Visit(PTR(Stmt) S) {
43 // optimizer (e.g. LLVM) will fold this comparison into the switch stmt
101 // Top switch stmt: dispatch to VisitFooStmt for each FooStmt.
103 default: llvm_unreachable("Unknown stmt kind!");
104 #define ABSTRACT_STMT(STMT)
105 #define STMT(CLASS, PARENT) \
106 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ASTFwd.h 23 class Stmt;
24 #define STMT(DERIVED, BASE) class DERIVED;
StmtNodes.inc 21 # define ASMSTMT(Type, Base) STMT(Type, Base)
23 ABSTRACT_STMT(ASMSTMT(AsmStmt, Stmt))
41 # define ATTRIBUTEDSTMT(Type, Base) STMT(Type, Base)
43 ATTRIBUTEDSTMT(AttributedStmt, Stmt)
47 # define BREAKSTMT(Type, Base) STMT(Type, Base)
49 BREAKSTMT(BreakStmt, Stmt)
53 # define CXXCATCHSTMT(Type, Base) STMT(Type, Base)
55 CXXCATCHSTMT(CXXCatchStmt, Stmt)
59 # define CXXFORRANGESTMT(Type, Base) STMT(Type, Base)
61 CXXFORRANGESTMT(CXXForRangeStmt, Stmt)
    [all...]
StmtVisitor.h 1 //===--- StmtVisitor.h - Visitor for Stmt subclasses ------------*- C++ -*-===//
29 /// StmtVisitorBase - This class implements a simple visitor for Stmt
30 /// subclasses. Since Expr derives from Stmt, this also includes support for
40 RetTy Visit(PTR(Stmt) S) {
43 // optimizer (e.g. LLVM) will fold this comparison into the switch stmt
101 // Top switch stmt: dispatch to VisitFooStmt for each FooStmt.
103 default: llvm_unreachable("Unknown stmt kind!");
104 #define ABSTRACT_STMT(STMT)
105 #define STMT(CLASS, PARENT) \
106 case Stmt::CLASS ## Class: DISPATCH(CLASS, CLASS)
    [all...]
  /external/clang/lib/AST/
ASTTypeTraits.cpp 34 { NKI_None, "Stmt" },
35 #define STMT(DERIVED, BASE) { NKI_##BASE, #DERIVED },
87 ASTNodeKind ASTNodeKind::getFromNode(const Stmt &S) {
89 case Stmt::NoStmtClass: return NKI_None;
90 #define STMT(CLASS, PARENT) \
91 case Stmt::CLASS##Class: return ASTNodeKind(NKI_##CLASS);
95 llvm_unreachable("invalid stmt kind");
122 else if (const Stmt *S = get<Stmt>())
133 else if (const Stmt *S = get<Stmt>()
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
Checker.h 81 template <typename STMT>
84 static void _checkStmt(void *checker, const Stmt *S, CheckerContext &C) {
85 ((const CHECKER *)checker)->checkPreStmt(cast<STMT>(S), C);
88 static bool _handlesStmt(const Stmt *S) {
89 return isa<STMT>(S);
100 template <typename STMT>
103 static void _checkStmt(void *checker, const Stmt *S, CheckerContext &C) {
104 ((const CHECKER *)checker)->checkPostStmt(cast<STMT>(S), C);
107 static bool _handlesStmt(const Stmt *S) {
108 return isa<STMT>(S)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/
Checker.h 81 template <typename STMT>
84 static void _checkStmt(void *checker, const Stmt *S, CheckerContext &C) {
85 ((const CHECKER *)checker)->checkPreStmt(cast<STMT>(S), C);
88 static bool _handlesStmt(const Stmt *S) {
89 return isa<STMT>(S);
100 template <typename STMT>
103 static void _checkStmt(void *checker, const Stmt *S, CheckerContext &C) {
104 ((const CHECKER *)checker)->checkPostStmt(cast<STMT>(S), C);
107 static bool _handlesStmt(const Stmt *S) {
108 return isa<STMT>(S)
    [all...]

Completed in 791 milliseconds

1 2 3 4