OpenASIP  2.0
CallsToJumps.hh
Go to the documentation of this file.
1 /*
2  Copyright (c) 2002-2014 Tampere University.
3 
4  This file is part of TTA-Based Codesign Environment (TCE).
5 
6  Permission is hereby granted, free of charge, to any person obtaining a
7  copy of this software and associated documentation files (the "Software"),
8  to deal in the Software without restriction, including without limitation
9  the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  and/or sell copies of the Software, and to permit persons to whom the
11  Software is furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in
14  all copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef TTA_CALLS_TO_JUMPS_HH
25 #define TTA_CALLS_TO_JUMPS_HH
26 
27 #include "ControlFlowGraphPass.hh"
28 
29 /**
30  * Pass that converts all CALL operation calls to a JUMP that succeeds a
31  * regular move to RA that stores the address of the instruction following
32  * the original CALL.
33  *
34  * This pass should be called for an unscheduled CFG before DDG construction.
35  */
37 public:
39  virtual ~CallsToJumps() {}
40 
41  virtual void handleControlFlowGraph(
42  ControlFlowGraph& cfg, const TTAMachine::Machine& targetMachine);
43 
44  std::string shortDescription() const {
45  return "Converts CALL operations to JUMPs and explicit RA save moves.";
46  }
47 };
48 
49 #endif
CallsToJumps::CallsToJumps
CallsToJumps(InterPassData &data)
Definition: CallsToJumps.hh:38
InterPassData
Definition: InterPassData.hh:48
CallsToJumps::shortDescription
std::string shortDescription() const
Definition: CallsToJumps.hh:44
ControlFlowGraphPass.hh
CallsToJumps
Definition: CallsToJumps.hh:36
CallsToJumps::~CallsToJumps
virtual ~CallsToJumps()
Definition: CallsToJumps.hh:39
ControlFlowGraphPass
Definition: ControlFlowGraphPass.hh:50
CallsToJumps::handleControlFlowGraph
virtual void handleControlFlowGraph(ControlFlowGraph &cfg, const TTAMachine::Machine &targetMachine)
Definition: CallsToJumps.cc:49
ControlFlowGraph
Definition: ControlFlowGraph.hh:100
TTAMachine::Machine
Definition: Machine.hh:73