From f1738ed619ed01199535410887a81c6ac99e482c Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Sun, 4 Nov 2012 21:04:39 +0100 Subject: score: PR1607: Add and use CPU_SIZEOF_POINTER Add and use new CPU port define CPU_SIZEOF_POINTER. It must be an integer literal that can be used by the assembler. This value will be used to calculate offsets of structure members. These offsets will be used in assembler code. The size of a pointer is part of the application binary interface (ABI) and thus independent of the actual programming language. The compiler will provide defines to determine the current ABI. We use these defines to select the appropriate CPU_SIZEOF_POINTER value. Static assertions in the new file "cpukit/score/src/percpuasm.c" will ensure that the value of CPU_SIZEOF_POINTER is consistent with the current compiler settings. Also the offset values used by assembler code are verfied. --- cpukit/score/cpu/m68k/rtems/score/cpu.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cpukit/score/cpu/m68k/rtems/score/cpu.h') diff --git a/cpukit/score/cpu/m68k/rtems/score/cpu.h b/cpukit/score/cpu/m68k/rtems/score/cpu.h index 013f1b51ce..89b0295f60 100644 --- a/cpukit/score/cpu/m68k/rtems/score/cpu.h +++ b/cpukit/score/cpu/m68k/rtems/score/cpu.h @@ -380,6 +380,8 @@ SCORE_EXTERN _CPU_ISR_handler_entry _CPU_ISR_jump_table[256]; */ #define CPU_PRIORITY_MAXIMUM M68K_CPU_PRIORITY_MAXIMUM +#define CPU_SIZEOF_POINTER 4 + /* * m68k is pretty tolerant of alignment. Just put things on 4 byte boundaries. */ -- cgit v1.2.3