Otawa  0.10
DoWhileAST.h
Go to the documentation of this file.
1 /*
2  * DoWhileAST class interface
3  *
4  * This file is part of OTAWA
5  * Copyright (c) 2003, IRIT UPS.
6  *
7  * OTAWA is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * OTAWA is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with OTAWA; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 #ifndef OTAWA_AST_DO_WHILE_AST_H
22 #define OTAWA_AST_DO_WHILE_AST_H
23 
24 #include <otawa/ast/AST.h>
25 
26 namespace otawa { namespace ast {
27 
28 // DoWhileAST class
29 class DoWhileAST: public AST {
30  AST *bod, *cnd;
31 public:
32  virtual ~DoWhileAST(void);
33 public:
35  inline AST *condition(void) const { return cnd; };
36  inline AST *body(void) const { return bod; };
37 
38  // AST overload
39  virtual Inst *first(void);
40  virtual ast_kind_t kind(void) const { return AST_DoWhile; };
41  virtual DoWhileAST *toDoWhile(void) { return this; };
42  virtual int countInstructions(void) const;
43 };
44 
45 } } // otawa::ast
46 
47 #endif // OTAWA_AST_DO_WHILE_AST_H
virtual DoWhileAST * toDoWhile(void)
Get the repetition AST if this AST is a repetition, null else.
Definition: DoWhileAST.h:41
virtual int countInstructions(void) const
Count the number of instructions in the ast block.
Definition: DoWhileAST.cpp:78
virtual Inst * first(void)
Definition: DoWhileAST.cpp:68
virtual ast_kind_t kind(void) const
Get the kind of the AST.
Definition: DoWhileAST.h:40
virtual ~DoWhileAST(void)
Definition: DoWhileAST.cpp:46
Definition: AST.h:48
AST * body(void) const
Get the body of the loop.
Definition: DoWhileAST.h:36
AST * bod
Definition: DoWhileAST.h:30
This is the base class for the representation of programs as Abstract Syntax Trees.
Definition: AST.h:53
This class represents assembly instruction of a piece of code.
Definition: Inst.h:62
AST * condition(void) const
Get the condition of the loop.
Definition: DoWhileAST.h:35
AST * cnd
Definition: DoWhileAST.h:30
DoWhileAST(AST *body, AST *condition)
Build a new DO-WHILE AST.
Definition: DoWhileAST.cpp:38
ast_kind_t
Definition: AST.h:40
Representation of C do{ ...
Definition: DoWhileAST.h:29