Otawa  0.10
WhileAST.h
Go to the documentation of this file.
1 /*
2  * WhileAST 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_WHILE_AST_H
22 #define OTAWA_AST_WHILE_AST_H
23 
24 #include <otawa/ast/AST.h>
25 
26 namespace otawa { namespace ast {
27 
28 // WhileAST class
29 class WhileAST: public AST {
30  AST *cnd, *bod;
31 public:
32  virtual ~WhileAST(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_While; };
41  virtual WhileAST *toWhile(void) { return this; };
42  virtual int countInstructions(void) const;
43 };
44 
45 } } // otawa::ast
46 
47 #endif // OTAWA_AST_WHILE_AST_H
Representation of an iteration with test at start of the loop.
Definition: WhileAST.h:29
Definition: AST.h:47
virtual ast_kind_t kind(void) const
Get the kind of the AST.
Definition: WhileAST.h:40
AST * body(void) const
Get the body of the iteration.
Definition: WhileAST.h:36
AST * cnd
Definition: WhileAST.h:30
WhileAST(AST *condition, AST *body)
Build a new "while" AST.
Definition: WhileAST.cpp:38
virtual Inst * first(void)
Definition: WhileAST.cpp:68
This is the base class for the representation of programs as Abstract Syntax Trees.
Definition: AST.h:53
virtual int countInstructions(void) const
Count the number of instructions in the ast block.
Definition: WhileAST.cpp:75
virtual ~WhileAST(void)
Definition: WhileAST.cpp:46
This class represents assembly instruction of a piece of code.
Definition: Inst.h:62
AST * condition(void) const
Get the condition of the iteration.
Definition: WhileAST.h:35
virtual WhileAST * toWhile(void)
Get the repetition AST if this AST is a repeatition, null else.
Definition: WhileAST.h:41
ast_kind_t
Definition: AST.h:40
AST * bod
Definition: WhileAST.h:30