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
039f5fb1
Commit
039f5fb1
authored
Sep 22, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace use of __objc_xmalloc and free with objc_malloc and objc_free.
From-SVN: r12768
parent
df7fbc8c
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
44 additions
and
44 deletions
+44
-44
gcc/objc/sarray.c
+16
-16
gcc/objc/thr-decosf1.c
+3
-3
gcc/objc/thr-irix.c
+3
-3
gcc/objc/thr-mach.c
+3
-3
gcc/objc/thr-os2.c
+2
-2
gcc/objc/thr-posix.c
+3
-3
gcc/objc/thr-pthreads.c
+3
-3
gcc/objc/thr-single.c
+2
-2
gcc/objc/thr-solaris.c
+3
-3
gcc/objc/thr-win32.c
+3
-3
gcc/objc/thr.c
+3
-3
No files found.
gcc/objc/sarray.c
View file @
039f5fb1
...
...
@@ -63,7 +63,7 @@ sarray_remove_garbage(void)
while
(
vp
)
{
np
=
*
vp
;
free
(
vp
);
objc_
free
(
vp
);
vp
=
np
;
}
...
...
@@ -80,7 +80,7 @@ sarray_free_garbage(void *vp)
objc_mutex_lock
(
__objc_runtime_mutex
);
if
(
__objc_runtime_threads_alive
==
1
)
{
free
(
vp
);
objc_
free
(
vp
);
if
(
first_free_data
)
sarray_remove_garbage
();
}
...
...
@@ -145,7 +145,7 @@ sarray_at_put(struct sarray* array, sidx index, void* element)
if
((
*
the_index
)
==
array
->
empty_index
)
{
/* The index was previously empty, allocate a new */
new_index
=
(
struct
sindex
*
)
__objc_x
malloc
(
sizeof
(
struct
sindex
));
new_index
=
(
struct
sindex
*
)
objc_
malloc
(
sizeof
(
struct
sindex
));
memcpy
(
new_index
,
array
->
empty_index
,
sizeof
(
struct
sindex
));
new_index
->
version
.
version
=
array
->
version
.
version
;
*
the_index
=
new_index
;
/* Prepared for install. */
...
...
@@ -156,7 +156,7 @@ sarray_at_put(struct sarray* array, sidx index, void* element)
/* This index must be lazy copied */
struct
sindex
*
old_index
=
*
the_index
;
new_index
=
(
struct
sindex
*
)
__objc_x
malloc
(
sizeof
(
struct
sindex
));
new_index
=
(
struct
sindex
*
)
objc_
malloc
(
sizeof
(
struct
sindex
));
memcpy
(
new_index
,
old_index
,
sizeof
(
struct
sindex
));
new_index
->
version
.
version
=
array
->
version
.
version
;
*
the_index
=
new_index
;
/* Prepared for install. */
...
...
@@ -173,7 +173,7 @@ sarray_at_put(struct sarray* array, sidx index, void* element)
/* The bucket was previously empty (or something like that), */
/* allocate a new. This is the effect of `lazy' allocation */
new_bucket
=
(
struct
sbucket
*
)
__objc_x
malloc
(
sizeof
(
struct
sbucket
));
new_bucket
=
(
struct
sbucket
*
)
objc_
malloc
(
sizeof
(
struct
sbucket
));
memcpy
((
void
*
)
new_bucket
,
(
const
void
*
)
array
->
empty_bucket
,
sizeof
(
struct
sbucket
));
new_bucket
->
version
.
version
=
array
->
version
.
version
;
...
...
@@ -185,7 +185,7 @@ sarray_at_put(struct sarray* array, sidx index, void* element)
/* Perform lazy copy. */
struct
sbucket
*
old_bucket
=
*
the_bucket
;
new_bucket
=
(
struct
sbucket
*
)
__objc_x
malloc
(
sizeof
(
struct
sbucket
));
new_bucket
=
(
struct
sbucket
*
)
objc_
malloc
(
sizeof
(
struct
sbucket
));
memcpy
(
new_bucket
,
old_bucket
,
sizeof
(
struct
sbucket
));
new_bucket
->
version
.
version
=
array
->
version
.
version
;
*
the_bucket
=
new_bucket
;
/* Prepared for install. */
...
...
@@ -220,16 +220,16 @@ sarray_new (int size, void* default_element)
assert
(
size
>
0
);
/* Allocate core array */
arr
=
(
struct
sarray
*
)
__objc_x
malloc
(
sizeof
(
struct
sarray
));
arr
=
(
struct
sarray
*
)
objc_
malloc
(
sizeof
(
struct
sarray
));
arr
->
version
.
version
=
0
;
/* Initialize members */
#ifdef OBJC_SPARSE3
arr
->
capacity
=
num_indices
*
INDEX_CAPACITY
;
new_indices
=
(
struct
sindex
**
)
__objc_x
malloc
(
sizeof
(
struct
sindex
*
)
*
num_indices
);
objc_
malloc
(
sizeof
(
struct
sindex
*
)
*
num_indices
);
arr
->
empty_index
=
(
struct
sindex
*
)
__objc_x
malloc
(
sizeof
(
struct
sindex
));
arr
->
empty_index
=
(
struct
sindex
*
)
objc_
malloc
(
sizeof
(
struct
sindex
));
arr
->
empty_index
->
version
.
version
=
0
;
narrays
+=
1
;
...
...
@@ -239,14 +239,14 @@ sarray_new (int size, void* default_element)
#else
/* OBJC_SPARSE2 */
arr
->
capacity
=
num_indices
*
BUCKET_SIZE
;
new_buckets
=
(
struct
sbucket
**
)
__objc_x
malloc
(
sizeof
(
struct
sbucket
*
)
*
num_indices
);
objc_
malloc
(
sizeof
(
struct
sbucket
*
)
*
num_indices
);
narrays
+=
1
;
idxsize
+=
num_indices
;
#endif
arr
->
empty_bucket
=
(
struct
sbucket
*
)
__objc_x
malloc
(
sizeof
(
struct
sbucket
));
arr
->
empty_bucket
=
(
struct
sbucket
*
)
objc_
malloc
(
sizeof
(
struct
sbucket
));
arr
->
empty_bucket
->
version
.
version
=
0
;
nbuckets
+=
1
;
...
...
@@ -337,11 +337,11 @@ sarray_realloc(struct sarray* array, int newsize)
/* alloc to force re-read by any concurrent readers. */
old_indices
=
array
->
indices
;
new_indices
=
(
struct
sindex
**
)
__objc_x
malloc
((
new_max_index
+
1
)
*
sizeof
(
struct
sindex
*
));
objc_
malloc
((
new_max_index
+
1
)
*
sizeof
(
struct
sindex
*
));
#else
/* OBJC_SPARSE2 */
old_buckets
=
array
->
buckets
;
new_buckets
=
(
struct
sbucket
**
)
__objc_x
malloc
((
new_max_index
+
1
)
*
sizeof
(
struct
sbucket
*
));
objc_
malloc
((
new_max_index
+
1
)
*
sizeof
(
struct
sbucket
*
));
#endif
/* copy buckets below old_max_index (they are still valid) */
...
...
@@ -488,7 +488,7 @@ sarray_lazy_copy(struct sarray* oarr)
#endif
/* Allocate core array */
arr
=
(
struct
sarray
*
)
__objc_x
malloc
(
sizeof
(
struct
sarray
));
/* !!! */
arr
=
(
struct
sarray
*
)
objc_
malloc
(
sizeof
(
struct
sarray
));
/* !!! */
arr
->
version
.
version
=
oarr
->
version
.
version
+
1
;
#ifdef OBJC_SPARSE3
arr
->
empty_index
=
oarr
->
empty_index
;
...
...
@@ -502,14 +502,14 @@ sarray_lazy_copy(struct sarray* oarr)
#ifdef OBJC_SPARSE3
/* Copy bucket table */
new_indices
=
(
struct
sindex
**
)
__objc_x
malloc
(
sizeof
(
struct
sindex
*
)
*
num_indices
);
objc_
malloc
(
sizeof
(
struct
sindex
*
)
*
num_indices
);
memcpy
(
new_indices
,
oarr
->
indices
,
sizeof
(
struct
sindex
*
)
*
num_indices
);
arr
->
indices
=
new_indices
;
#else
/* Copy bucket table */
new_buckets
=
(
struct
sbucket
**
)
__objc_x
malloc
(
sizeof
(
struct
sbucket
*
)
*
num_indices
);
objc_
malloc
(
sizeof
(
struct
sbucket
*
)
*
num_indices
);
memcpy
(
new_buckets
,
oarr
->
buckets
,
sizeof
(
struct
sbucket
*
)
*
num_indices
);
arr
->
buckets
=
new_buckets
;
...
...
gcc/objc/thr-decosf1.c
View file @
039f5fb1
...
...
@@ -211,13 +211,13 @@ objc_mutex_allocate(void)
_objc_mutex_t
mutex
;
int
err
=
0
;
if
(
!
(
mutex
=
(
_objc_mutex_t
)
__objc_x
malloc
(
sizeof
(
struct
_objc_mutex
))))
if
(
!
(
mutex
=
(
_objc_mutex_t
)
objc_
malloc
(
sizeof
(
struct
_objc_mutex
))))
return
NULL
;
/* Abort if malloc failed. */
err
=
pthread_mutex_init
(
&
mutex
->
lock
,
pthread_mutexattr_default
);
if
(
err
!=
0
)
{
/* System init failed? */
free
(
mutex
);
/* Yes, free local memory. */
objc_free
(
mutex
);
/* Yes, free local memory. */
return
NULL
;
/* Abort. */
}
mutex
->
owner
=
(
_objc_thread_t
)
-
1
;
/* No owner. */
...
...
@@ -244,7 +244,7 @@ objc_mutex_deallocate(_objc_mutex_t mutex)
pthread_mutex_unlock
(
&
mutex
->
lock
);
/* Must unlock system mutex.*/
pthread_mutex_destroy
(
&
mutex
->
lock
);
/* Free system mutex. */
free
(
mutex
);
/* Free memory. */
objc_free
(
mutex
);
/* Free memory. */
return
depth
;
/* Return last depth. */
}
...
...
gcc/objc/thr-irix.c
View file @
039f5fb1
...
...
@@ -191,14 +191,14 @@ objc_mutex_allocate(void)
_objc_mutex_t
mutex
;
int
err
=
0
;
if
(
!
(
mutex
=
(
_objc_mutex_t
)
__objc_x
malloc
(
sizeof
(
struct
_objc_mutex
))))
if
(
!
(
mutex
=
(
_objc_mutex_t
)
objc_
malloc
(
sizeof
(
struct
_objc_mutex
))))
return
NULL
;
/* Abort if malloc failed. */
if
(
!
(
mutex
->
lock
=
usnewlock
(
__objc_shared_arena_handle
)))
err
=
-
1
;
if
(
err
!=
0
)
{
/* System init failed? */
free
(
mutex
);
/* Yes, free local memory. */
objc_free
(
mutex
);
/* Yes, free local memory. */
return
NULL
;
/* Abort. */
}
mutex
->
owner
=
NULL
;
/* No owner. */
...
...
@@ -224,7 +224,7 @@ objc_mutex_deallocate(_objc_mutex_t mutex)
usfreelock
(
mutex
->
lock
,
__objc_shared_arena_handle
);
/* Free IRIX lock. */
free
(
mutex
);
/* Free memory. */
objc_free
(
mutex
);
/* Free memory. */
return
depth
;
/* Return last depth. */
}
...
...
gcc/objc/thr-mach.c
View file @
039f5fb1
...
...
@@ -250,13 +250,13 @@ objc_mutex_allocate(void)
_objc_mutex_t
mutex
;
int
err
=
0
;
if
(
!
(
mutex
=
(
_objc_mutex_t
)
__objc_x
malloc
(
sizeof
(
struct
_objc_mutex
))))
if
(
!
(
mutex
=
(
_objc_mutex_t
)
objc_
malloc
(
sizeof
(
struct
_objc_mutex
))))
return
NULL
;
/* Abort if malloc failed. */
err
=
mutex_init
(
&
(
mutex
->
lock
));
if
(
err
!=
0
)
{
/* System init failed? */
free
(
mutex
);
/* Yes, free local memory. */
objc_free
(
mutex
);
/* Yes, free local memory. */
return
NULL
;
/* Abort. */
}
mutex
->
owner
=
(
_objc_thread_t
)
-
1
;
/* No owner. */
...
...
@@ -283,7 +283,7 @@ objc_mutex_deallocate(_objc_mutex_t mutex)
mutex_unlock
(
&
(
mutex
->
lock
));
/* Must unlock system mutex.*/
mutex_clear
(
&
(
mutex
->
lock
));
/* Free system mutex. */
free
(
mutex
);
/* Free memory. */
objc_free
(
mutex
);
/* Free memory. */
return
depth
;
/* Return last depth. */
}
...
...
gcc/objc/thr-os2.c
View file @
039f5fb1
...
...
@@ -228,7 +228,7 @@ objc_mutex_allocate(void)
_objc_mutex_t
mutex
;
int
err
=
0
;
if
(
!
(
mutex
=
(
_objc_mutex_t
)
__objc_x
malloc
(
sizeof
(
struct
_objc_mutex
))))
if
(
!
(
mutex
=
(
_objc_mutex_t
)
objc_
malloc
(
sizeof
(
struct
_objc_mutex
))))
return
NULL
;
/* Abort if malloc failed. */
if
(
DosCreateMutexSem
(
NULL
,
&
(
mutex
->
handle
),
0L
,
0
)
>
0
)
{
...
...
@@ -259,7 +259,7 @@ objc_mutex_deallocate(_objc_mutex_t mutex)
DosCloseMutexSem
(
mutex
->
handle
);
free
(
mutex
);
/* Free memory. */
objc_free
(
mutex
);
/* Free memory. */
return
depth
;
/* Return last depth. */
}
...
...
gcc/objc/thr-posix.c
View file @
039f5fb1
...
...
@@ -209,13 +209,13 @@ objc_mutex_allocate(void)
_objc_mutex_t
mutex
;
int
err
=
0
;
if
(
!
(
mutex
=
(
_objc_mutex_t
)
__objc_x
malloc
(
sizeof
(
struct
_objc_mutex
))))
if
(
!
(
mutex
=
(
_objc_mutex_t
)
objc_
malloc
(
sizeof
(
struct
_objc_mutex
))))
return
NULL
;
/* Abort if malloc failed. */
err
=
pthread_mutex_init
(
&
mutex
->
lock
,
NULL
);
if
(
err
!=
0
)
{
/* System init failed? */
free
(
mutex
);
/* Yes, free local memory. */
objc_free
(
mutex
);
/* Yes, free local memory. */
return
NULL
;
/* Abort. */
}
mutex
->
owner
=
NULL
;
/* No owner. */
...
...
@@ -242,7 +242,7 @@ objc_mutex_deallocate(_objc_mutex_t mutex)
pthread_mutex_unlock
(
&
mutex
->
lock
);
/* Must unlock system mutex.*/
pthread_mutex_destroy
(
&
mutex
->
lock
);
/* Free system mutex. */
free
(
mutex
);
/* Free memory. */
objc_free
(
mutex
);
/* Free memory. */
return
depth
;
/* Return last depth. */
}
...
...
gcc/objc/thr-pthreads.c
View file @
039f5fb1
...
...
@@ -183,14 +183,14 @@ objc_mutex_allocate(void)
{
_objc_mutex_t
mutex
;
if
(
!
(
mutex
=
(
_objc_mutex_t
)
__objc_x
malloc
(
sizeof
(
struct
_objc_mutex
))))
if
(
!
(
mutex
=
(
_objc_mutex_t
)
objc_
malloc
(
sizeof
(
struct
_objc_mutex
))))
return
NULL
;
/* Abort if malloc failed. */
/* Create PCThread mutex */
if
(
pthread_mutex_init
(
&
(
mutex
->
mutex
),
NULL
)
)
{
/* Failed */
free
(
mutex
);
objc_
free
(
mutex
);
return
NULL
;
}
...
...
@@ -218,7 +218,7 @@ objc_mutex_deallocate(_objc_mutex_t mutex)
/* Destroy PCThread mutex */
pthread_mutex_destroy
(
&
(
mutex
->
mutex
));
free
(
mutex
);
/* Free memory. */
objc_free
(
mutex
);
/* Free memory. */
return
depth
;
/* Return last depth. */
}
...
...
gcc/objc/thr-single.c
View file @
039f5fb1
...
...
@@ -142,7 +142,7 @@ objc_mutex_allocate(void)
{
_objc_mutex_t
mutex
;
if
(
!
(
mutex
=
(
_objc_mutex_t
)
__objc_x
malloc
(
sizeof
(
struct
_objc_mutex
))))
if
(
!
(
mutex
=
(
_objc_mutex_t
)
objc_
malloc
(
sizeof
(
struct
_objc_mutex
))))
return
NULL
;
/* Abort if malloc failed. */
mutex
->
owner
=
NULL
;
/* No owner. */
...
...
@@ -166,7 +166,7 @@ objc_mutex_deallocate(_objc_mutex_t mutex)
return
-
1
;
/* Yes, abort. */
depth
=
objc_mutex_lock
(
mutex
);
/* Must have lock. */
free
(
mutex
);
/* Free memory. */
objc_free
(
mutex
);
/* Free memory. */
return
depth
;
/* Return last depth. */
}
...
...
gcc/objc/thr-solaris.c
View file @
039f5fb1
...
...
@@ -213,13 +213,13 @@ objc_mutex_allocate(void)
struct
_objc_mutex
*
mutex
;
int
err
=
0
;
if
(
!
(
mutex
=
(
_objc_mutex_t
)
__objc_x
malloc
(
sizeof
(
struct
_objc_mutex
))))
if
(
!
(
mutex
=
(
_objc_mutex_t
)
objc_
malloc
(
sizeof
(
struct
_objc_mutex
))))
return
NULL
;
/* Abort if malloc failed. */
err
=
mutex_init
(
&
mutex
->
lock
,
USYNC_THREAD
,
0
);
if
(
err
!=
0
)
{
/* System init failed? */
free
(
mutex
);
/* Yes, free local memory. */
objc_free
(
mutex
);
/* Yes, free local memory. */
return
NULL
;
/* Abort. */
}
mutex
->
owner
=
NULL
;
/* No owner. */
...
...
@@ -245,7 +245,7 @@ objc_mutex_deallocate(_objc_mutex_t mutex)
mutex_destroy
(
&
mutex
->
lock
);
/* System deallocate. */
free
(
mutex
);
/* Free memory. */
objc_free
(
mutex
);
/* Free memory. */
return
depth
;
/* Return last depth. */
}
...
...
gcc/objc/thr-win32.c
View file @
039f5fb1
...
...
@@ -220,11 +220,11 @@ objc_mutex_allocate(void)
_objc_mutex_t
mutex
;
int
err
=
0
;
if
(
!
(
mutex
=
(
_objc_mutex_t
)
__objc_x
malloc
(
sizeof
(
struct
_objc_mutex
))))
if
(
!
(
mutex
=
(
_objc_mutex_t
)
objc_
malloc
(
sizeof
(
struct
_objc_mutex
))))
return
NULL
;
/* Abort if malloc failed. */
if
((
mutex
->
handle
=
CreateMutex
(
NULL
,
0
,
NULL
))
==
NULL
)
{
free
(
mutex
);
/* Failed, free memory. */
objc_free
(
mutex
);
/* Failed, free memory. */
return
NULL
;
/* Abort. */
}
mutex
->
owner
=
NULL
;
/* No owner. */
...
...
@@ -250,7 +250,7 @@ objc_mutex_deallocate(_objc_mutex_t mutex)
CloseHandle
(
mutex
->
handle
);
/* Close Win32 handle. */
free
(
mutex
);
/* Free memory. */
objc_free
(
mutex
);
/* Free memory. */
return
depth
;
/* Return last depth. */
}
...
...
gcc/objc/thr.c
View file @
039f5fb1
...
...
@@ -79,7 +79,7 @@ __objc_thread_detach_function(struct __objc_thread_start_state *istate)
id
object
=
istate
->
object
;
id
argument
=
istate
->
argument
;
free
(
istate
);
objc_
free
(
istate
);
/* Clear out the thread local storage */
objc_thread_set_data
(
NULL
);
...
...
@@ -117,7 +117,7 @@ objc_thread_detach(SEL selector, id object, id argument)
_objc_thread_t
thread_id
=
NULL
;
/* Detached thread id. */
if
(
!
(
istate
=
(
struct
__objc_thread_start_state
*
)
__objc_x
malloc
(
sizeof
(
*
istate
))))
/* Can we allocate state? */
objc_
malloc
(
sizeof
(
*
istate
))))
/* Can we allocate state? */
return
NULL
;
/* No, abort. */
istate
->
selector
=
selector
;
/* Initialize the thread's */
...
...
@@ -126,7 +126,7 @@ objc_thread_detach(SEL selector, id object, id argument)
if
((
thread_id
=
objc_thread_create
((
void
*
)
__objc_thread_detach_function
,
istate
))
==
NULL
)
{
free
(
istate
);
/* Release state if failed. */
objc_free
(
istate
);
/* Release state if failed. */
return
thread_id
;
}
...
...
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