Home
last modified time | relevance | path

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

123

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dforeachvar.d257 case STMT.Exp: visitExp(s.isExpStatement()); break; in foreachExpAndVar()
258 case STMT.DtorExp: visitDtorExp(s.isDtorExpStatement()); break; in foreachExpAndVar()
259 case STMT.Compound: visitCompound(s.isCompoundStatement()); break; in foreachExpAndVar()
260 …case STMT.CompoundDeclaration: visitCompoundDeclaration(s.isCompoundDeclarationStatement()); break; in foreachExpAndVar()
261 case STMT.UnrolledLoop: visitUnrolledLoop(s.isUnrolledLoopStatement()); break; in foreachExpAndVar()
262 case STMT.Scope: visitScope(s.isScopeStatement()); break; in foreachExpAndVar()
263 case STMT.Do: visitDo(s.isDoStatement()); break; in foreachExpAndVar()
264 case STMT.For: visitFor(s.isForStatement()); break; in foreachExpAndVar()
265 case STMT.If: visitIf(s.isIfStatement()); break; in foreachExpAndVar()
266 case STMT.Switch: visitSwitch(s.isSwitchStatement()); break; in foreachExpAndVar()
[all …]
H A Dstatement.d79 const STMT stmt;
86 final extern (D) this(const ref Loc loc, STMT stmt) in this()
370 …inout(ErrorStatement) isErrorStatement() { return stmt == STMT.Error ? cast(type… in inout()
371 …inout(ScopeStatement) isScopeStatement() { return stmt == STMT.Scope ? cast(type… in isScopeStatement()
372 …inout(ExpStatement) isExpStatement() { return stmt == STMT.Exp ? cast(type… in isExpStatement()
373 …inout(CompoundStatement) isCompoundStatement() { return stmt == STMT.Compound ? cast(type… in isCompoundStatement()
374 …inout(ReturnStatement) isReturnStatement() { return stmt == STMT.Return ? cast(type… in isReturnStatement()
375 …inout(IfStatement) isIfStatement() { return stmt == STMT.If ? cast(type… in isIfStatement()
376 …inout(ConditionalStatement) isConditionalStatement() { return stmt == STMT.Conditional ? cast(type… in isConditionalStatement()
377 …inout(StaticForeachStatement) isStaticForeachStatement() { return stmt == STMT.StaticForeach ? cas… in isStaticForeachStatement()
[all …]
H A Dob.d801 case STMT.Exp: visitExp(s.isExpStatement()); break; in toObNodes()
802 case STMT.DtorExp: visitDtorExp(s.isDtorExpStatement()); break; in toObNodes()
803 case STMT.Compound: visitCompound(s.isCompoundStatement()); break; in toObNodes()
804 …case STMT.CompoundDeclaration: visitCompoundDeclaration(s.isCompoundDeclarationStatement()); break; in toObNodes()
805 case STMT.UnrolledLoop: visitUnrolledLoop(s.isUnrolledLoopStatement()); break; in toObNodes()
806 case STMT.Scope: visitScope(s.isScopeStatement()); break; in toObNodes()
807 case STMT.Do: visitDo(s.isDoStatement()); break; in toObNodes()
808 case STMT.For: visitFor(s.isForStatement()); break; in toObNodes()
809 case STMT.If: visitIf(s.isIfStatement()); break; in toObNodes()
810 case STMT.Switch: visitSwitch(s.isSwitchStatement()); break; in toObNodes()
[all …]
H A Dstatement.h62 typedef unsigned char STMT; typedef
110 STMT stmt;
H A Dstatementsem.d4610 case STMT.Compound: in flatten()
4611 case STMT.CompoundDeclaration: in flatten()
4614 case STMT.Exp: in flatten()
4615 case STMT.DtorExp: in flatten()
4648 case STMT.Forwarding: in flatten()
4679 case STMT.Conditional: in flatten()
4702 case STMT.StaticForeach: in flatten()
4720 case STMT.Debug: in flatten()
4732 case STMT.Label: in flatten()
4752 case STMT.Compile: in flatten()
H A Dastenums.d338 enum STMT : ubyte
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dssa-iterators.h82 #define FOR_EACH_IMM_USE_STMT(STMT, ITER, SSAVAR) \ argument
83 for ((STMT) = first_imm_use_stmt (&(ITER), (SSAVAR)); \
85 (void) ((STMT) = next_imm_use_stmt (&(ITER))))
168 #define FOR_EACH_SSA_TREE_OPERAND(TREEVAR, STMT, ITER, FLAGS) \ argument
169 for (TREEVAR = op_iter_init_tree (&(ITER), STMT, FLAGS); \
176 #define FOR_EACH_SSA_USE_OPERAND(USEVAR, STMT, ITER, FLAGS) \ argument
177 for (USEVAR = op_iter_init_use (&(ITER), STMT, FLAGS); \
184 #define FOR_EACH_SSA_DEF_OPERAND(DEFVAR, STMT, ITER, FLAGS) \ argument
185 for (DEFVAR = op_iter_init_def (&(ITER), STMT, FLAGS); \
192 #define FOR_EACH_PHI_ARG(USEVAR, STMT, ITER, FLAGS) \ argument
[all …]
H A Dinternal-fn.c3020 #define expand_unary_optab_fn(FN, STMT, OPTAB) \ argument
3021 expand_direct_optab_fn (FN, STMT, OPTAB, 1)
3023 #define expand_binary_optab_fn(FN, STMT, OPTAB) \ argument
3024 expand_direct_optab_fn (FN, STMT, OPTAB, 2)
3026 #define expand_ternary_optab_fn(FN, STMT, OPTAB) \ argument
3027 expand_direct_optab_fn (FN, STMT, OPTAB, 3)
3029 #define expand_cond_unary_optab_fn(FN, STMT, OPTAB) \ argument
3030 expand_direct_optab_fn (FN, STMT, OPTAB, 3)
3032 #define expand_cond_binary_optab_fn(FN, STMT, OPTAB) \ argument
3033 expand_direct_optab_fn (FN, STMT, OPTAB, 4)
[all …]
H A Dtimevar.def214 DEFTIMEVAR (TV_TREE_STMT_VERIFY , "tree STMT verifier")
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dssa-iterators.h98 #define FOR_EACH_IMM_USE_STMT(STMT, ITER, SSAVAR) \ argument
101 ((((STMT) = first_imm_use_stmt (&(ITER), (SSAVAR))), \
104 (void) ((STMT) = next_imm_use_stmt (&(ITER))))
171 #define FOR_EACH_SSA_TREE_OPERAND(TREEVAR, STMT, ITER, FLAGS) \ argument
172 for (TREEVAR = op_iter_init_tree (&(ITER), STMT, FLAGS); \
179 #define FOR_EACH_SSA_USE_OPERAND(USEVAR, STMT, ITER, FLAGS) \ argument
180 for (USEVAR = op_iter_init_use (&(ITER), STMT, FLAGS); \
187 #define FOR_EACH_SSA_DEF_OPERAND(DEFVAR, STMT, ITER, FLAGS) \ argument
188 for (DEFVAR = op_iter_init_def (&(ITER), STMT, FLAGS); \
195 #define FOR_EACH_PHI_ARG(USEVAR, STMT, ITER, FLAGS) \ argument
[all …]
H A Dinternal-fn.cc3683 #define expand_unary_optab_fn(FN, STMT, OPTAB) \ argument
3684 expand_direct_optab_fn (FN, STMT, OPTAB, 1)
3686 #define expand_binary_optab_fn(FN, STMT, OPTAB) \ argument
3687 expand_direct_optab_fn (FN, STMT, OPTAB, 2)
3689 #define expand_ternary_optab_fn(FN, STMT, OPTAB) \ argument
3690 expand_direct_optab_fn (FN, STMT, OPTAB, 3)
3692 #define expand_cond_unary_optab_fn(FN, STMT, OPTAB) \ argument
3693 expand_direct_optab_fn (FN, STMT, OPTAB, 3)
3695 #define expand_cond_binary_optab_fn(FN, STMT, OPTAB) \ argument
3696 expand_direct_optab_fn (FN, STMT, OPTAB, 4)
[all …]
/netbsd-src/common/lib/libc/hash/sha3/
H A Dkeccak.c45 #define FOR5(X, STMT) do \ argument
47 (X) = 0; STMT; \
48 (X) = 1; STMT; \
49 (X) = 2; STMT; \
50 (X) = 3; STMT; \
51 (X) = 4; STMT; \
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h81 template <typename STMT>
85 ((const CHECKER *)checker)->checkPreStmt(cast<STMT>(S), C); in _checkStmt()
89 return isa<STMT>(S); in _handlesStmt()
100 template <typename STMT>
104 ((const CHECKER *)checker)->checkPostStmt(cast<STMT>(S), C); in _checkStmt()
108 return isa<STMT>(S); in _handlesStmt()
/netbsd-src/sys/coda/
H A Dcoda_namecache.h114 #define CODA_NC_DEBUG(N, STMT) { if (coda_nc_debug & (1 <<N)) { STMT } } argument
H A Dcnode.h89 #define CODADEBUG(N, STMT) { if (codadebug & CODADBGMSK(N)) { STMT } } argument
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtVisitor.h107 #define ABSTRACT_STMT(STMT) in Visit() argument
108 #define STMT(CLASS, PARENT) \ in Visit() macro
116 #define STMT(CLASS, PARENT) \ macro
H A DASTFwd.h23 #define STMT(DERIVED, BASE) class DERIVED; macro
H A DRecursiveASTVisitor.h372 #define ABSTRACT_STMT(STMT)
373 #define STMT(CLASS, PARENT) \
381 #define STMT(CLASS, PARENT) \
517 #define ABSTRACT_STMT(STMT)
518 #define STMT(CLASS, PARENT) \
550 #define ABSTRACT_STMT(STMT)
551 #define STMT(CLASS, PARENT) \
2184 #define DEF_TRAVERSE_STMT(STMT, CODE) \
2186 bool RecursiveASTVisitor<Derived>::Traverse##STMT( \
2187 STMT *S, DataRecursionQueue *Queue) { \
[all …]
H A DASTTypeTraits.h146 #define STMT(DERIVED, BASE) NKI_##DERIVED, macro
207 #define STMT(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED)
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmt.cpp63 #define ABSTRACT_STMT(STMT) in getStmtInfoTableEntry() argument
64 #define STMT(CLASS, PARENT) \ in getStmtInfoTableEntry() macro
84 #define STMT(CLASS, PARENT) \ macro
92 #define STMT(CLASS, PARENT) \ macro
278 #define STMT(type, base) \ in check_implementations() macro
289 #define STMT(type, base) \ in children() macro
328 #define STMT(type, base) \ in getSourceRange() macro
340 #define STMT(type, base) \ in getBeginLoc() macro
352 #define STMT(type, base) \ in getEndLoc() macro
H A DASTTypeTraits.cpp38 #define STMT(DERIVED, BASE) { NKI_##BASE, #DERIVED }, macro
108 #define STMT(CLASS, PARENT) \ in getFromNode() macro
H A DExprClassification.cpp109 #define STMT(Kind, Base) case Expr::Kind##Class: in ClassifyInternal() macro
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/
H A Dgimple.texi872 Return the type of the main expression computed by @code{STMT}. Return
873 @code{void_type_node} if @code{STMT} computes nothing. This will only return
880 Return the tree code for the expression computed by @code{STMT}. This
882 @code{GIMPLE_COND}. If @code{STMT} is @code{GIMPLE_CALL}, it will return @code{CALL_EXPR}.
905 Return true if no warnings should be emitted for statement @code{STMT}.
909 Set the visited status on statement @code{STMT} to @code{VISITED_P}.
913 Return the visited status on statement @code{STMT}.
917 Set pass local flag @code{PLF} on statement @code{STMT} to @code{VAL_P}.
921 Return the value of pass local flag @code{PLF} on statement @code{STMT}.
954 @code{STMT}.
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/
H A Dgimple.texi872 Return the tree code for the expression computed by @code{STMT}. This
874 @code{GIMPLE_COND}. If @code{STMT} is @code{GIMPLE_CALL}, it will return @code{CALL_EXPR}.
897 Return true if no warnings should be emitted for statement @code{STMT}.
901 Set the visited status on statement @code{STMT} to @code{VISITED_P}.
905 Return the visited status on statement @code{STMT}.
909 Set pass local flag @code{PLF} on statement @code{STMT} to @code{VAL_P}.
913 Return the value of pass local flag @code{PLF} on statement @code{STMT}.
946 @code{STMT}.
997 Return true if statement @code{STMT} contains volatile operands.
1001 Return true if statement @code{STMT} contains volatile operands.
[all …]
/netbsd-src/external/bsd/pcc/dist/pcc/mip/
H A Doptim2.c249 #define STMT 4 macro
267 if (dl->op == STMT) { in dumplink()
321 p->op = STMT; in listsetup()
340 p->op = STMT; in listsetup()
346 p->op = STMT; in listsetup()

123