1 /*-------------------------------------------------------------------------
3 pcode.h - post code generation
4 Written By - Scott Dattalo scott@dattalo.com
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 -------------------------------------------------------------------------*/
22 #ifndef __PCODEFLOW_H__
23 #define __PCODEFLOW_H__
27 /*************************************************
30 * The "conditions" are bit-mapped flags that describe
31 * input and/or output conditions that are affected by
32 * the instructions. For example:
36 * This instruction depends upon 'SOME_REG'. Consequently
37 * it has the input condition PCC_REGISTER set to true.
39 * In addition, this instruction affects the Z bit in the
40 * status register and affects W. Thus the output conditions
42 * PCC_ZERO_BIT | PCC_W
44 * The conditions are initialized when the pCode for an
45 * instruction is created. They're subsequently used
46 * by the pCode optimizer determine state information
47 * in the program flow.
48 *************************************************/
51 #define PCC_REGISTER (1<<0)
56 #define PCC_EXAMINE_PCOP (1<<5)
57 #define PCC_REG_BANK0 (1<<6)
58 #define PCC_REG_BANK1 (1<<7)
59 #define PCC_REG_BANK2 (1<<8)
60 #define PCC_REG_BANK3 (1<<9)
61 #define PCC_LITERAL (1<<10)
63 /*------------------------------------------------------------*/
65 void BuildFlowTree(pBlock
*pb
);
67 #endif // __PCODEFLOW_H__