Changeset e7b7be3f in mainline for kernel/arch/ia64/src
- Timestamp:
- 2007-01-22T13:10:08Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f3fc9b
- Parents:
- 62c63fc
- Location:
- kernel/arch/ia64/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/ia64.c
r62c63fc re7b7be3f 134 134 psr.bn = 1; /* start in bank 0 */ 135 135 136 __asm__volatile ("mov %0 = ar.rsc\n" : "=r" (rsc.value));136 asm volatile ("mov %0 = ar.rsc\n" : "=r" (rsc.value)); 137 137 rsc.loadrs = 0; 138 138 rsc.be = false; -
kernel/arch/ia64/src/mm/tlb.c
r62c63fc re7b7be3f 73 73 for(i = 0; i < count1; i++) { 74 74 for(j = 0; j < count2; j++) { 75 __asm__volatile (75 asm volatile ( 76 76 "ptc.e %0 ;;" 77 77 : … … 180 180 /*cnt+=(page!=va);*/ 181 181 for(; va<(page+cnt*(PAGE_SIZE)); va += (1<<ps)) { 182 __asm__volatile (182 asm volatile ( 183 183 "ptc.l %0,%1;;" 184 184 : … … 245 245 } 246 246 247 __asm__volatile (247 asm volatile ( 248 248 "mov r8=psr;;\n" 249 249 "rsm %0;;\n" /* PSR_IC_MASK */ … … 321 321 } 322 322 323 __asm__volatile (323 asm volatile ( 324 324 "mov r8=psr;;\n" 325 325 "rsm %0;;\n" /* PSR_IC_MASK */ … … 383 383 void dtr_purge(uintptr_t page, count_t width) 384 384 { 385 __asm__volatile ("ptr.d %0, %1\n" : : "r" (page), "r" (width<<2));385 asm volatile ("ptr.d %0, %1\n" : : "r" (page), "r" (width<<2)); 386 386 } 387 387 -
kernel/arch/ia64/src/proc/scheduler.c
r62c63fc re7b7be3f 74 74 * These values will be found there after switch from userspace. 75 75 */ 76 __asm__volatile (76 asm volatile ( 77 77 "bsw.0\n" 78 78 "mov r22 = %0\n" -
kernel/arch/ia64/src/ski/ski.c
r62c63fc re7b7be3f 70 70 void ski_putchar(chardev_t *d, const char ch) 71 71 { 72 __asm__volatile (72 asm volatile ( 73 73 "mov r15 = %0\n" 74 74 "mov r32 = %1\n" /* r32 is in0 */ … … 96 96 uint64_t ch; 97 97 98 __asm__volatile (98 asm volatile ( 99 99 "mov r15 = %1\n" 100 100 "break 0x80000;;\n" /* modifies r8 */ … … 205 205 void ski_init_console(void) 206 206 { 207 __asm__volatile (207 asm volatile ( 208 208 "mov r15 = %0\n" 209 209 "break 0x80000\n"
Note:
See TracChangeset
for help on using the changeset viewer.