1 /* Generic streaming support for basic data types.
3 Copyright (C) 2011-2014 Free Software Foundation, Inc.
4 Contributed by Diego Novillo <dnovillo@google.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
32 #include "hard-reg-set.h"
35 #include "basic-block.h"
36 #include "tree-ssa-alias.h"
37 #include "internal-fn.h"
38 #include "gimple-expr.h"
42 #include "plugin-api.h"
45 #include "data-streamer.h"
47 /* Pack WORK into BP in a variant of uleb format. */
50 bp_pack_var_len_unsigned (struct bitpack_d
*bp
, unsigned HOST_WIDE_INT work
)
54 unsigned int half_byte
= (work
& 0x7);
57 /* More half_bytes to follow. */
60 bp_pack_value (bp
, half_byte
, 4);
66 /* Pack WORK into BP in a variant of sleb format. */
69 bp_pack_var_len_int (struct bitpack_d
*bp
, HOST_WIDE_INT work
)
75 half_byte
= (work
& 0x7);
76 /* arithmetic shift */
78 more
= !((work
== 0 && (half_byte
& 0x4) == 0)
79 || (work
== -1 && (half_byte
& 0x4) != 0));
83 bp_pack_value (bp
, half_byte
, 4);
89 /* Unpack VAL from BP in a variant of uleb format. */
91 unsigned HOST_WIDE_INT
92 bp_unpack_var_len_unsigned (struct bitpack_d
*bp
)
94 unsigned HOST_WIDE_INT result
= 0;
96 unsigned HOST_WIDE_INT half_byte
;
100 half_byte
= bp_unpack_value (bp
, 4);
101 result
|= (half_byte
& 0x7) << shift
;
103 if ((half_byte
& 0x8) == 0)
109 /* Unpack VAL from BP in a variant of sleb format. */
112 bp_unpack_var_len_int (struct bitpack_d
*bp
)
114 HOST_WIDE_INT result
= 0;
116 unsigned HOST_WIDE_INT half_byte
;
120 half_byte
= bp_unpack_value (bp
, 4);
121 result
|= (half_byte
& 0x7) << shift
;
123 if ((half_byte
& 0x8) == 0)
125 if ((shift
< HOST_BITS_PER_WIDE_INT
) && (half_byte
& 0x4))
126 result
|= - (HOST_WIDE_INT_1U
<< shift
);