X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fpic%2Fgen.h;h=ccfe5f399f192fc22d38410ccbe0c8d4a92e6891;hb=97bed346fed0a8e37ef2aa6da4f056be1293e828;hp=a6b24e416b3b722cb06c0f40621401c0dda0048e;hpb=3a3ad5f21d40c9e0e8fbd4e7dcf428bff9cf4c42;p=fw%2Fsdcc diff --git a/src/pic/gen.h b/src/pic/gen.h index a6b24e41..ccfe5f39 100644 --- a/src/pic/gen.h +++ b/src/pic/gen.h @@ -2,25 +2,25 @@ SDCCgen51.h - header file for code generation for 8051 Written By - Sandeep Dutta . sandeep.dutta@usa.net (1998) - PIC port - T. Scott Dattalo scott@dattalo.com (2000) + PIC port - T. Scott Dattalo scott@dattalo.com (2000) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - + In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve - what you give them. Help stamp out software-hoarding! + what you give them. Help stamp out software-hoarding! -------------------------------------------------------------------------*/ #ifndef SDCCGENPIC14_H @@ -28,17 +28,17 @@ extern int debug_verbose; -#define FENTRY do { \ - /*fprintf (stderr, "%s:%u:%s: *{*\n", __FILE__, __LINE__, __FUNCTION__);*/ \ - if (options.debug || debug_verbose) { \ - emitpComment ("; %s:%u:%s *{*", __FILE__, __LINE__, __FUNCTION__); \ - } \ +#define FENTRY do { \ + /*fprintf (stderr, "%s:%u:%s: *{*\n", __FILE__, __LINE__, __FUNCTION__);*/ \ + if (options.debug || debug_verbose) { \ + emitpComment ("; %s:%u:%s *{*", __FILE__, __LINE__, __FUNCTION__); \ + } \ } while (0) -#define FEXIT do { \ - /*fprintf (stderr, "%s:%u:%s: *}*\n", __FILE__, __LINE__, __FUNCTION__);*/ \ - if (options.debug || debug.verbose) { \ - emitpComment ("; %s:%u:%s *}*", __FILE__, __LINE__, __FUNCTION__); \ - } \ +#define FEXIT do { \ + /*fprintf (stderr, "%s:%u:%s: *}*\n", __FILE__, __LINE__, __FUNCTION__);*/ \ + if (options.debug || debug.verbose) { \ + emitpComment ("; %s:%u:%s *}*", __FILE__, __LINE__, __FUNCTION__); \ + } \ } while (0) struct pCodeOp; @@ -46,39 +46,37 @@ struct pCodeOp; enum { AOP_LIT = 1, - AOP_REG, AOP_DIR, - AOP_DPTR, AOP_DPTR2, AOP_R0, AOP_R1, - AOP_STK, AOP_IMMD, AOP_STR, - AOP_CRY, AOP_ACC, + AOP_REG, + AOP_DIR, + AOP_STK, + AOP_IMMD, + AOP_STR, + AOP_CRY, AOP_PCODE }; -/* type asmop : a homogenised type for +/* type asmop : a homogenised type for all the different spaces an operand can be in */ typedef struct asmop { short type; /* can have values - AOP_LIT - operand is a literal value - AOP_REG - is in registers - AOP_DIR - direct just a name - AOP_DPTR - dptr contains address of operand - AOP_DPTR2 - dptr2 contains address of operand (DS80C390 only). - AOP_R0/R1 - r0/r1 contains address of operand - AOP_STK - should be pushed on stack this - can happen only for the result - AOP_IMMD - immediate value for eg. remateriazable - AOP_CRY - carry contains the value of this - AOP_STR - array of strings - AOP_ACC - result is in the acc:b pair - */ - short coff; /* current offset */ - short size; /* total size */ + AOP_LIT - operand is a literal value + AOP_REG - is in registers + AOP_DIR - direct just a name + AOP_STK - should be pushed on stack this + can happen only for the result + AOP_IMMD - immediate value for eg. remateriazable + AOP_CRY - carry contains the value of this + AOP_STR - array of strings + */ + short coff; /* current offset */ + short size; /* total size */ unsigned code:1; /* is in Code space */ - unsigned paged:1; /* in paged memory */ - unsigned freed:1; /* already freed */ + unsigned paged:1; /* in paged memory */ + unsigned freed:1; /* already freed */ union { value *aop_lit; /* if literal */ @@ -102,16 +100,8 @@ extern unsigned fReturnSizePic; #define AOP(op) op->aop #define AOP_TYPE(op) AOP(op)->type #define AOP_SIZE(op) AOP(op)->size -#define IS_AOP_PREG(x) (AOP(x) && (AOP_TYPE(x) == AOP_R1 || \ - AOP_TYPE(x) == AOP_R0)) - -#define AOP_NEEDSACC(x) (AOP(x) && (AOP_TYPE(x) == AOP_CRY || \ - AOP_TYPE(x) == AOP_DPTR || AOP_TYPE(x) == AOP_DPTR2 || \ - AOP(x)->paged)) -#define AOP_INPREG(x) (x && (x->type == AOP_REG && \ - (x->aopu.aop_reg[0] == pic14_regWithIdx(R0_IDX) || \ - x->aopu.aop_reg[0] == pic14_regWithIdx(R1_IDX) ))) +#define AOP_NEEDSACC(x) (AOP(x) && (AOP_TYPE(x) == AOP_CRY || AOP(x)->paged)) #define RESULTONSTACK(x) \ (IC_RESULT(x) && IC_RESULT(x)->aop && \ @@ -153,7 +143,7 @@ extern unsigned fReturnSizePic; int pic14_getDataSize(operand *op); void emitpcode_real(PIC_OPCODE poc, pCodeOp *pcop); -#define emitpcode(poc,pcop) do { if (options.debug || debug_verbose) { emitpComment (" >>> %s:%d:%s", __FILE__, __LINE__, __FUNCTION__); } emitpcode_real(poc,pcop); } while(0) +#define emitpcode(poc,pcop) do { if (options.debug || debug_verbose) { emitpComment (" >>> %s:%d:%s", __FILE__, __LINE__, __FUNCTION__); } emitpcode_real(poc,pcop); } while(0) void emitpComment (const char *fmt, ...); void emitpLabel(int key); void pic14_emitcode (char *inst,char *fmt, ...); @@ -167,7 +157,6 @@ char *aopGet (asmop *aop, int offset, bool bit16, bool dname); bool genPlusIncr (iCode *ic); void pic14_outBitAcc(operand *result); void genPlus (iCode *ic); -bool genMinusDec (iCode *ic); void addSign(operand *result, int offset, int sign); void genMinus (iCode *ic);