X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firmode_t.h;h=71ba15ff193db4bf26dca2a2d791760de78d9b5b;hb=bb5c6d5ce2e35c4074900017f8c8e1a4935054d0;hp=24fd293ba7aae12245f629bd6d7f06488235761e;hpb=e478fe3b0bc85e7b8ccadb342e5cd163f43ec120;p=libfirm diff --git a/ir/ir/irmode_t.h b/ir/ir/irmode_t.h index 24fd293ba..71ba15ff1 100644 --- a/ir/ir/irmode_t.h +++ b/ir/ir/irmode_t.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -42,29 +42,29 @@ _get_modeP_code(void) { return mode_P_code; } static INLINE ir_mode * _get_modeP_data(void) { return mode_P_data; } -static INLINE modecode +static INLINE ir_modecode _get_mode_modecode(const ir_mode *mode) { return mode->code; } static INLINE ident * _get_mode_ident(const ir_mode *mode) { return mode->name; } -static INLINE mode_sort -_get_mode_sort(const ir_mode* mode) { return mode->sort; } +static INLINE ir_mode_sort +_get_mode_sort(const ir_mode *mode) { return mode->sort; } -static INLINE int +static INLINE unsigned _get_mode_size_bits(const ir_mode *mode) { return mode->size; } -static INLINE int +static INLINE unsigned _get_mode_size_bytes(const ir_mode *mode) { - int size = _get_mode_size_bits(mode); - if ((size & 7) != 0) return -1; + unsigned size = _get_mode_size_bits(mode); + if ((size & 7) != 0) return (unsigned) -1; return size >> 3; } static INLINE int _get_mode_sign(const ir_mode *mode) { return mode->sign; } -static INLINE mode_arithmetic +static INLINE ir_mode_arithmetic _get_mode_arithmetic(const ir_mode *mode) { return mode->arithmetic; } static INLINE unsigned int @@ -79,7 +79,7 @@ _get_mode_link(const ir_mode *mode) { return mode->link; } static INLINE void _set_mode_link(ir_mode *mode, void *l) { mode->link = l; } -/* Functions to check, whether a modecode is signed, float, int, num, data, +/* Functions to check, whether a ir_modecode is signed, float, int, num, data, datab or dataM. For more exact definitions read the corresponding pages in the firm documentation or the following enumeration