/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | iasmgcc.c | 372 GotoStatement *gs = new GotoStatement(s->loc, ident); in gccAsmSemantic()
|
H A D | arraytypes.h | 60 typedef Array<class GotoStatement *> GotoStatements;
|
H A D | statement.c | 1531 GotoStatement::GotoStatement(Loc loc, Identifier *ident) in GotoStatement() function 1541 Statement *GotoStatement::syntaxCopy() in syntaxCopy() 1543 return new GotoStatement(loc, ident); in syntaxCopy() 1546 bool GotoStatement::checkLabel() in checkLabel()
|
H A D | statement.h | 38 class GotoStatement; variable 666 class GotoStatement : public Statement 675 GotoStatement(Loc loc, Identifier *ident);
|
H A D | blockexit.c | 469 void visit(GotoStatement *) in blockExit()
|
H A D | visitor.h | 52 class GotoStatement; variable 346 virtual void visit(GotoStatement *s) { visit((Statement *)s); } in visit()
|
H A D | statementsem.c | 1512 GotoStatement *gs = (GotoStatement *)(*fs->gotos)[i]->statement; in visit() 2699 GotoStatement *gs = new GotoStatement(rs->loc, Id::returnLabel); in visit() 3635 void visit(GotoStatement *gs) in visit()
|
H A D | func.c | 204 void visit(GotoStatement *) { } in visit() argument 232 GotoStatement *gs = new GotoStatement(s->loc, Id::returnLabel); in visit()
|
H A D | hdrgen.c | 644 void visit(GotoStatement *s) in visit()
|
H A D | dinterpret.c | 572 void visit(GotoStatement *) in visit() argument 1539 void visit(GotoStatement *s) in visit()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | arraytypes.h | 61 typedef Array<class GotoStatement *> GotoStatements;
|
H A D | arraytypes.d | 52 alias GotoStatements = Array!(GotoStatement);
|
H A D | statement.h | 34 class GotoStatement; variable 659 class GotoStatement : public Statement 669 GotoStatement *syntaxCopy();
|
H A D | iasmgcc.d | 374 GotoStatement gs = new GotoStatement(s.loc, ident); in gccAsmSemantic()
|
H A D | statement.d | 381 …inout(GotoStatement) isGotoStatement() { return stmt == STMT.Goto ? cast(type… in isGotoStatement() 1752 extern (C++) final class GotoStatement : Statement 1767 override GotoStatement syntaxCopy() in syntaxCopy() 1769 return new GotoStatement(loc, ident); in syntaxCopy()
|
H A D | blockexit.d | 491 override void visit(GotoStatement s) in blockExit()
|
H A D | visitor.h | 52 class GotoStatement; variable 415 virtual void visit(GotoStatement *s) { visit((Statement *)s); } in visit()
|
H A D | parsetimevisitor.d | 121 void visit(AST.GotoStatement s) { visit(cast(AST.Statement)s); } in ParseTimeVisitor()
|
H A D | statementsem.d | 883 GotoStatement gs = ss.statement.isGotoStatement(); in package() 2807 auto gs = new GotoStatement(rs.loc, Id.returnLabel); in package() 3823 override void visit(GotoStatement gs) in package()
|
H A D | ob.d | 784 void visitGoto(GotoStatement s) in toObNodes()
|
H A D | func.d | 129 auto gs = new GotoStatement(s.loc, Id.returnLabel); in visit()
|
H A D | cparse.d | 584 s = new AST.GotoStatement(loc, ident);
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
H A D | toir.cc | 751 void visit (GotoStatement *s) in visit() 1387 GotoStatement *gs = (*s->gotos)[i]; in visit()
|
H A D | ChangeLog-2014 | 286 (GotoStatement::toIR): Assert that undefined labels no longer leak
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
H A D | toir.cc | 760 void visit (GotoStatement *s) in visit() 1374 GotoStatement *gs = (*s->gotos)[i]; in visit()
|