minor 64 bit fix: divide by sizeof(unsigned long) instead of constant 4

This commit is contained in:
fros4943 2009-03-13 14:40:07 +00:00
parent f4333ab089
commit d6ebba536c
2 changed files with 161 additions and 58 deletions

View file

@ -1,9 +1,66 @@
/*
* Copyright (c) 2005, Swedish Institute of Computer Science
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the Institute nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* This file is part of the Contiki operating system.
*
* @(#)$Id: mtarch.c,v 1.3 2009/03/13 14:40:07 fros4943 Exp $
*/
#include <stddef.h>
#include <limits.h>
#include <stdio.h> #include <stdio.h>
#include "sys/mt.h" #include <string.h>
#include "sys/cooja_mt.h"
#ifndef __WORDSIZE
#define __WORDSIZE 32
#endif /* __WORDSIZE */
#ifndef ON_64BIT_ARCH
#if __WORDSIZE == 64
#define ON_64BIT_ARCH 1
#else /* ON_64BIT_ARCH */
#define ON_64BIT_ARCH 0
#endif /* __WORDSIZE == 64 */
#endif /* ON_64BIT_ARCH */
struct frame { struct frame {
unsigned long flags; unsigned long flags;
#if ON_64BIT_ARCH
unsigned long rbp;
unsigned long rdi;
unsigned long rsi;
unsigned long rdx;
unsigned long rcx;
unsigned long rbx;
unsigned long rax;
#else /* ON_64BIT_ARCH */
unsigned long ebp; unsigned long ebp;
unsigned long edi; unsigned long edi;
unsigned long esi; unsigned long esi;
@ -11,109 +68,155 @@ struct frame {
unsigned long ecx; unsigned long ecx;
unsigned long ebx; unsigned long ebx;
unsigned long eax; unsigned long eax;
#endif /* ON_64BIT_ARCH */
unsigned long retaddr; unsigned long retaddr;
unsigned long retaddr2; unsigned long retaddr2;
unsigned long data; unsigned long data;
}; };
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
void void
mtarch_init(void) cooja_mtarch_init(void)
{ {
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
void void
mtarch_start(struct mtarch_thread *t, cooja_mtarch_start(struct cooja_mtarch_thread *t,
void (*function)(void *), void *data) void (*function)(void *), void *data)
{ {
struct frame *f = (struct frame *)&t->stack[COOJA_MTARCH_STACKSIZE - sizeof(struct frame)/sizeof(unsigned long)];
struct frame *f = (struct frame *)&t->stack[MTARCH_STACKSIZE - sizeof(struct frame)/4];
int i; int i;
for(i = 0; i < MTARCH_STACKSIZE; ++i) { for(i = 0; i < COOJA_MTARCH_STACKSIZE; ++i) {
t->stack[i] = i; t->stack[i] = i;
} }
memset(f, 0, sizeof(struct frame)); memset(f, 0, sizeof(struct frame));
f->retaddr = (unsigned long)function; f->retaddr = (unsigned long)function;
f->data = (unsigned long)data; f->data = (unsigned long)data;
t->sp = (unsigned long)&f->flags; t->sp = (unsigned long)&f->flags;
#if ON_64BIT_ARCH
f->rbp = (unsigned long)&f->rax;
#else /* ON_64BIT_ARCH */
f->ebp = (unsigned long)&f->eax; f->ebp = (unsigned long)&f->eax;
#endif /* ON_64BIT_ARCH */
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
static unsigned long spsave, sptmp; static struct cooja_mtarch_thread *cooja_running_thread;
static struct mtarch_thread *running_thread; /*--------------------------------------------------------------------------*/
void cooja_sw(void)
static void
sw(void)
{ {
/* Store registers */
asm("pushl %eax"); #if ON_64BIT_ARCH
asm("pushl %ebx"); __asm__ (
asm("pushl %ecx"); "pushq %rax\n\t"
asm("pushl %edx"); "pushq %rbx\n\t"
asm("pushl %esi"); "pushq %rcx\n\t"
asm("pushl %edi"); "pushq %rdx\n\t"
asm("pushl %ebp"); "pushq %rsi\n\t"
asm("pushl %ebp"); /* XXX: should push FPU flags here. */ "pushq %rdi\n\t"
asm("movl %esp, spsave"); "pushq %rbp\n\t"
"pushq %rbp\n\t");
#else /* ON_64BIT_ARCH */
__asm__ (
"pushl %eax\n\t"
"pushl %ebx\n\t"
"pushl %ecx\n\t"
"pushl %edx\n\t"
"pushl %esi\n\t"
"pushl %edi\n\t"
"pushl %ebp\n\t"
"pushl %ebp\n\t");
#endif /* ON_64BIT_ARCH */
sptmp = running_thread->sp; /* Switch stack pointer */
running_thread->sp = spsave; #if ON_64BIT_ARCH
__asm__ ("movq %0, %%rax\n\t" : : "m" (cooja_running_thread));
__asm__ (
"movq (%rax), %rbx\n\t"
"movq %rsp, (%rax)\n\t"
"movq %rbx, %rsp\n\t"
);
#else /* ON_64BIT_ARCH */
__asm__ ("movl %0, %%eax\n\t" : : "m" (cooja_running_thread));
__asm__ (
"movl (%eax), %ebx\n\t"
"movl %esp, (%eax)\n\t"
"movl %ebx, %esp\n\t"
);
#endif /* ON_64BIT_ARCH */
/* Restore previous registers */
#if ON_64BIT_ARCH
__asm__ (
"popq %rbp\n\t"
"popq %rbp\n\t"
"popq %rdi\n\t"
"popq %rsi\n\t"
"popq %rdx\n\t"
"popq %rcx\n\t"
"popq %rbx\n\t"
"popq %rax\n\t"
"leave\n\t"
"ret\n\t"
);
#else /* ON_64BIT_ARCH */
__asm__ (
"popl %ebp\n\t"
"popl %ebp\n\t"
"popl %edi\n\t"
"popl %esi\n\t"
"popl %edx\n\t"
"popl %ecx\n\t"
"popl %ebx\n\t"
"popl %eax\n\t"
"leave\n\t"
"ret\n\t"
);
#endif /* ON_64BIT_ARCH */
asm("movl sptmp, %esp");
asm("popl %ebp"); /* XXX: should pop FPU flags here. */
asm("popl %ebp");
asm("popl %edi");
asm("popl %esi");
asm("popl %edx");
asm("popl %ecx");
asm("popl %ebx");
asm("popl %eax");
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
void void
mtarch_exec(struct mtarch_thread *t) cooja_mtarch_exec(struct cooja_mtarch_thread *t)
{ {
running_thread = t; cooja_running_thread = t;
sw(); cooja_sw();
running_thread = NULL; cooja_running_thread = NULL;
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
void void
mtarch_remove(void) cooja_mtarch_remove(void)
{ {
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
void void
mtarch_yield(void) cooja_mtarch_yield(void)
{ {
sw(); cooja_sw();
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
void void
mtarch_pstop(void) cooja_mtarch_pstop(void)
{ {
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
void void
mtarch_pstart(void) cooja_mtarch_pstart(void)
{ {
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
int int
mtarch_stack_usage(struct mt_thread *t) cooja_mtarch_stack_usage(struct cooja_mt_thread *t)
{ {
int i; int i;
for(i = 0; i < MTARCH_STACKSIZE; ++i) { for(i = 0; i < COOJA_MTARCH_STACKSIZE; ++i) {
if(t->thread.stack[i] != i) { if(t->thread.stack[i] != i) {
return MTARCH_STACKSIZE - i; return COOJA_MTARCH_STACKSIZE - i;
} }
} }
return -1;
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/

View file

@ -28,7 +28,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* @(#)$Id: cooja_mtarch.c,v 1.6 2008/11/28 16:41:26 fros4943 Exp $ * @(#)$Id: cooja_mtarch.c,v 1.7 2009/03/13 14:42:06 fros4943 Exp $
*/ */
#include <stddef.h> #include <stddef.h>
@ -83,7 +83,7 @@ void
cooja_mtarch_start(struct cooja_mtarch_thread *t, cooja_mtarch_start(struct cooja_mtarch_thread *t,
void (*function)(void *), void *data) void (*function)(void *), void *data)
{ {
struct frame *f = (struct frame *)&t->stack[COOJA_MTARCH_STACKSIZE - sizeof(struct frame)/4]; struct frame *f = (struct frame *)&t->stack[COOJA_MTARCH_STACKSIZE - sizeof(struct frame)/sizeof(unsigned long)];
int i; int i;
for(i = 0; i < COOJA_MTARCH_STACKSIZE; ++i) { for(i = 0; i < COOJA_MTARCH_STACKSIZE; ++i) {
@ -132,15 +132,15 @@ void cooja_sw(void)
#if ON_64BIT_ARCH #if ON_64BIT_ARCH
__asm__ ("movq %0, %%rax\n\t" : : "m" (cooja_running_thread)); __asm__ ("movq %0, %%rax\n\t" : : "m" (cooja_running_thread));
__asm__ ( __asm__ (
"movq 0(%rax), %rbx\n\t" "movq (%rax), %rbx\n\t"
"movq %rsp, 0(%rax)\n\t" "movq %rsp, (%rax)\n\t"
"movq %rbx, %rsp\n\t" "movq %rbx, %rsp\n\t"
); );
#else /* ON_64BIT_ARCH */ #else /* ON_64BIT_ARCH */
__asm__ ("movl %0, %%eax\n\t" : : "m" (cooja_running_thread)); __asm__ ("movl %0, %%eax\n\t" : : "m" (cooja_running_thread));
__asm__ ( __asm__ (
"movl 0(%eax), %ebx\n\t" "movl (%eax), %ebx\n\t"
"movl %esp, 0(%eax)\n\t" "movl %esp, (%eax)\n\t"
"movl %ebx, %esp\n\t" "movl %ebx, %esp\n\t"
); );
#endif /* ON_64BIT_ARCH */ #endif /* ON_64BIT_ARCH */