| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| iasmgcc.d | 375 if (!s.gotos) 376 s.gotos = new GotoStatements(); 377 s.gotos.push(gs);
|
| statement.h | 340 Statements *cases; // put breaks, continues, gotos and returns here 341 ScopeStatements *gotos; // forward referenced goto's go here member in class:ForeachStatement 741 GotoStatements *gotos; // of the goto labels, the equivalent statements they represent member in class:GccAsmStatement
|
| semantic3.d | 1232 // Fix up forward-referenced gotos 1233 if (funcdecl.gotos && !funcdecl.isCsymbol()) 1235 for (size_t i = 0; i < funcdecl.gotos.dim; ++i) 1237 (*funcdecl.gotos)[i].checkLabel();
|
| statementsem.d | 881 foreach (ScopeStatement ss; *fs.gotos) 1669 fs.gotos = new ScopeStatements(); 3848 sc.fes.gotos.push(ss); // 'look at this later' list 3856 if (!fd.gotos) 3857 fd.gotos = new GotoStatements(); 3858 fd.gotos.push(gs);
|
| declaration.h | 594 GotoStatements *gotos; // Gotos with forward references member in class:FuncDeclaration
|
| statement.d | 939 Statements* cases; // put breaks, continues, gotos and returns here 940 ScopeStatements* gotos; // forward referenced goto's go here 1989 GotoStatements* gotos; // of the goto labels, the equivalent statements they represent
|
| func.d | 322 GotoStatements* gotos; /// Gotos with forward references
|
| /src/external/gpl3/gcc/dist/gcc/c/ |
| c-decl.cc | 426 vec<c_goto_bindings_p, va_gc> *gotos; 1214 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g) 1627 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g) 1665 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g) 4037 label_vars->gotos = NULL; 4138 vec_safe_push (label_vars->gotos, g); 4196 any gotos earlier in the function which jump to this label. */ 4204 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g) 4254 subsequent gotos to this label when we see them. */ 4255 vec_safe_truncate (label_vars->gotos, 0) 424 vec<c_goto_bindings_p, va_gc> *gotos; variable [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/c/ |
| c-decl.cc | 391 vec<c_goto_bindings_p, va_gc> *gotos; 1151 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g) 1509 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g) 1547 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g) 3852 label_vars->gotos = NULL; 3948 vec_safe_push (label_vars->gotos, g); 4005 any gotos earlier in the function which jump to this label. */ 4013 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g) 4062 subsequent gotos to this label when we see them. */ 4063 vec_safe_truncate (label_vars->gotos, 0) 389 vec<c_goto_bindings_p, va_gc> *gotos; variable [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| toir.cc | 1387 GotoStatement *gs = (*s->gotos)[i];
|