Otawa  0.10
EdgeCAT2ConstraintBuilder.h
Go to the documentation of this file.
1 /*
2  * $Id$
3  *
4  *
5  * This file is part of OTAWA
6  * Copyright (c) 2007, IRIT UPS.
7  *
8  * OTAWA is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * OTAWA is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with OTAWA; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  */
23 #ifndef CACHE_EDGECAT2CONSTRAINTBUILDER_H_
24 #define CACHE_EDGECAT2CONSTRAINTBUILDER_H_
25 
26 #include <otawa/proc/Processor.h>
27 #include <otawa/prop/Identifier.h>
28 namespace otawa {
29 
30 
32  bool _explicit;
33  public:
35  virtual void processWorkSpace(otawa::WorkSpace*);
36  virtual void configure(const PropList& props);
37  virtual void setup(otawa::WorkSpace*);
38 };
39 
40 }
41 
42 #endif /*CACHE_CAT2CONSTRAINTBUILDER_H_*/
bool _explicit
Definition: EdgeCAT2ConstraintBuilder.h:32
virtual void processWorkSpace(otawa::WorkSpace *)
Process the given framework.
Definition: cache_EdgeCAT2ConstraintBuilder.cpp:100
EdgeCAT2ConstraintBuilder(void)
Definition: cache_EdgeCAT2ConstraintBuilder.cpp:82
The processor class is implemented by all code processor.
Definition: Processor.h:49
virtual void setup(otawa::WorkSpace *)
This method is called before an anlysis to let the processor do some initialization.
Definition: cache_EdgeCAT2ConstraintBuilder.cpp:96
A workspace represents a program, its run-time and all information about WCET computation or any othe...
Definition: WorkSpace.h:67
virtual void configure(const PropList &props)
This method may be called for configuring a processor thanks to information passed in the property li...
Definition: cache_EdgeCAT2ConstraintBuilder.cpp:91
This a list of properties.
Definition: PropList.h:63
This processor produces constraints, using the categorization of the lblocks.
Definition: EdgeCAT2ConstraintBuilder.h:31