Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
a9a05945
Commit
a9a05945
authored
Apr 20, 1998
by
Doug Evans
Committed by
Doug Evans
Apr 20, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (sbitmap_vector_alloc): Ensure sbitmaps properly aligned.
From-SVN: r19347
parent
dc0f0eb8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
6 deletions
+21
-6
gcc/ChangeLog
+4
-0
gcc/flow.c
+17
-6
No files found.
gcc/ChangeLog
View file @
a9a05945
Mon Apr 20 12:43:09 1998 Doug Evans <devans@canuck.cygnus.com>
* flow.c (sbitmap_vector_alloc): Ensure sbitmaps properly aligned.
Mon Apr 20 15:04:14 1998 John Wehle (john@feith.com)
* i386.md (movsf_push, movdf_push, movxf_push): Allow memory
...
...
gcc/flow.c
View file @
a9a05945
...
...
@@ -3492,20 +3492,31 @@ sbitmap *
sbitmap_vector_alloc
(
n_vecs
,
n_elms
)
int
n_vecs
,
n_elms
;
{
int
i
,
bytes
,
offset
,
elm_bytes
,
size
,
amt
;
int
i
,
bytes
,
offset
,
elm_bytes
,
size
,
amt
,
vector_bytes
;
sbitmap
*
bitmap_vector
;
size
=
SBITMAP_SET_SIZE
(
n_elms
);
bytes
=
size
*
sizeof
(
SBITMAP_ELT_TYPE
);
elm_bytes
=
(
sizeof
(
struct
simple_bitmap_def
)
+
bytes
-
sizeof
(
SBITMAP_ELT_TYPE
));
amt
=
(
n_vecs
*
sizeof
(
sbitmap
*
))
+
(
n_vecs
*
elm_bytes
);
bitmap_vector
=
(
sbitmap
*
)
xmalloc
(
amt
);
vector_bytes
=
n_vecs
*
sizeof
(
sbitmap
*
);
/* ??? There may be alignment problems, `offset' should be rounded up
each time to account for alignment. Later [if ever]. */
/* Round up `vector_bytes' to account for the alignment requirements
of an sbitmap. One could allocate the vector-table and set of sbitmaps
separately, but that requires maintaining two pointers or creating
a cover struct to hold both pointers (so our result is still just
one pointer). Neither is a bad idea, but this is simpler for now. */
{
/* Based on DEFAULT_ALIGNMENT computation in obstack.c. */
struct
{
char
x
;
SBITMAP_ELT_TYPE
y
;
}
align
;
int
alignment
=
(
char
*
)
&
align
.
y
-
&
align
.
x
;
vector_bytes
=
(
vector_bytes
+
alignment
-
1
)
&
~
(
alignment
-
1
);
}
amt
=
vector_bytes
+
(
n_vecs
*
elm_bytes
);
bitmap_vector
=
(
sbitmap
*
)
xmalloc
(
amt
);
for
(
i
=
0
,
offset
=
n_vecs
*
sizeof
(
sbitmap
*
)
;
for
(
i
=
0
,
offset
=
vector_bytes
;
i
<
n_vecs
;
i
++
,
offset
+=
elm_bytes
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment