2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>

* rtems/score/cpu.h, rtems/score/sparc64.h:
	Use "__asm__" instead of "asm" for improved c99-compliance.
This commit is contained in:
Ralf Corsepius
2011-02-11 09:25:21 +00:00
parent 3631c234d8
commit d00ca42931
3 changed files with 23 additions and 18 deletions
+5
View File
@@ -1,3 +1,8 @@
2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/score/cpu.h, rtems/score/sparc64.h:
Use "__asm__" instead of "asm" for improved c99-compliance.
2010-11-16 Gedare Bloom <giddyup44@yahoo.com>
* rtems/score/sparc64.h: Fix typo.
+2 -2
View File
@@ -844,7 +844,7 @@ void _CPU_Context_Initialize(
#define _CPU_Context_Initialization_at_thread_begin() \
do { \
asm volatile ("set _Thread_Handler,%%i7\n"::); \
__asm__ volatile ("set _Thread_Handler,%%i7\n"::); \
} while (0)
/*
@@ -896,7 +896,7 @@ void _CPU_Context_Initialize(
uint32_t level; \
\
level = sparc_disable_interrupts(); \
asm volatile ( "mov %0, %%g1 " : "=r" (level) : "0" (level) ); \
__asm__ volatile ( "mov %0, %%g1 " : "=r" (level) : "0" (level) ); \
while (1); /* loop forever */ \
} while (0)
+16 -16
View File
@@ -170,7 +170,7 @@ extern "C" {
#define nop() \
do { \
asm volatile ( "nop" ); \
__asm__ volatile ( "nop" ); \
} while ( 0 )
/*
@@ -180,12 +180,12 @@ extern "C" {
#define sparc64_get_pstate( _pstate ) \
do { \
(_pstate) = 0; \
asm volatile( "rdpr %%pstate, %0" : "=r" (_pstate) : "0" (_pstate) ); \
__asm__ volatile( "rdpr %%pstate, %0" : "=r" (_pstate) : "0" (_pstate) ); \
} while ( 0 )
#define sparc64_set_pstate( _pstate ) \
do { \
asm volatile ( \
__asm__ volatile ( \
"wrpr %%g0, %0, %%pstate " : "=r" ((_pstate)) : "0" ((_pstate)) ); \
} while ( 0 )
@@ -196,12 +196,12 @@ extern "C" {
#define sparc64_get_pil( _pil ) \
do { \
(_pil) = 0; \
asm volatile( "rdpr %%pil, %0" : "=r" (_pil) : "0" (_pil) ); \
__asm__ volatile( "rdpr %%pil, %0" : "=r" (_pil) : "0" (_pil) ); \
} while ( 0 )
#define sparc64_set_pil( _pil ) \
do { \
asm volatile ( "wrpr %%g0, %0, %%pil " : "=r" ((_pil)) : "0" ((_pil)) ); \
__asm__ volatile ( "wrpr %%g0, %0, %%pil " : "=r" ((_pil)) : "0" ((_pil)) ); \
} while ( 0 )
@@ -212,12 +212,12 @@ extern "C" {
#define sparc64_get_tba( _tba ) \
do { \
(_tba) = 0; /* to avoid unitialized warnings */ \
asm volatile( "rdpr %%tba, %0" : "=r" (_tba) : "0" (_tba) ); \
__asm__ volatile( "rdpr %%tba, %0" : "=r" (_tba) : "0" (_tba) ); \
} while ( 0 )
#define sparc64_set_tba( _tba ) \
do { \
asm volatile( "wrpr %%g0, %0, %%tba" : "=r" (_tba) : "0" (_tba) ); \
__asm__ volatile( "wrpr %%g0, %0, %%tba" : "=r" (_tba) : "0" (_tba) ); \
} while ( 0 )
/*
@@ -227,12 +227,12 @@ extern "C" {
#define sparc64_get_tl( _tl ) \
do { \
(_tl) = 0; /* to avoid unitialized warnings */ \
asm volatile( "rdpr %%tl, %0" : "=r" (_tl) : "0" (_tl) ); \
__asm__ volatile( "rdpr %%tl, %0" : "=r" (_tl) : "0" (_tl) ); \
} while ( 0 )
#define sparc64_set_tl( _tl ) \
do { \
asm volatile( "wrpr %%g0, %0, %%tl" : "=r" (_tl) : "0" (_tl) ); \
__asm__ volatile( "wrpr %%g0, %0, %%tl" : "=r" (_tl) : "0" (_tl) ); \
} while ( 0 )
@@ -247,7 +247,7 @@ extern "C" {
#define sparc64_read_stick( _stick ) \
do { \
(_stick) = 0; \
asm volatile( "rd %%stick, %0" : "=r" (_stick) : "0" (_stick) ); \
__asm__ volatile( "rd %%stick, %0" : "=r" (_stick) : "0" (_stick) ); \
} while ( 0 )
/*
@@ -260,7 +260,7 @@ extern "C" {
*/
#define sparc64_write_stick_cmpr( _stick_cmpr ) \
do { \
asm volatile( "wr %%g0, %0, %%stick_cmpr" : "=r" (_stick_cmpr) \
__asm__ volatile( "wr %%g0, %0, %%stick_cmpr" : "=r" (_stick_cmpr) \
: "0" (_stick_cmpr) ); \
} while ( 0 )
@@ -270,7 +270,7 @@ extern "C" {
#define sparc64_read_tick( _tick ) \
do { \
(_tick) = 0; \
asm volatile( "rd %%tick, %0" : "=r" (_tick) : "0" (_tick) ); \
__asm__ volatile( "rd %%tick, %0" : "=r" (_tick) : "0" (_tick) ); \
} while ( 0 )
/*
@@ -278,7 +278,7 @@ extern "C" {
*/
#define sparc64_write_tick_cmpr( _tick_cmpr ) \
do { \
asm volatile( "wr %%g0, %0, %%tick_cmpr" : "=r" (_tick_cmpr) \
__asm__ volatile( "wr %%g0, %0, %%tick_cmpr" : "=r" (_tick_cmpr) \
: "0" (_tick_cmpr) ); \
} while ( 0 )
@@ -289,7 +289,7 @@ extern "C" {
*/
#define sparc64_clear_interrupt_bits( _bit_mask ) \
do { \
asm volatile( "wr %%g0, %0, %%clear_softint" : "=r" (_bit_mask) \
__asm__ volatile( "wr %%g0, %0, %%clear_softint" : "=r" (_bit_mask) \
: "0" (_bit_mask)); \
} while ( 0 )
@@ -301,12 +301,12 @@ extern "C" {
#define sparc_get_y( _y ) \
do { \
asm volatile( "rd %%y, %0" : "=r" (_y) : "0" (_y) ); \
__asm__ volatile( "rd %%y, %0" : "=r" (_y) : "0" (_y) ); \
} while ( 0 )
#define sparc_set_y( _y ) \
do { \
asm volatile( "wr %0, %%y" : "=r" (_y) : "0" (_y) ); \
__asm__ volatile( "wr %0, %%y" : "=r" (_y) : "0" (_y) ); \
} while ( 0 )
/************* /DEPRECATED ****************/