From db116b1ea3c77a3c5850fccbce9e0795faa21dda Mon Sep 17 00:00:00 2001 From: David Brownell Date: Thu, 5 Nov 2009 21:59:39 -0800 Subject: target: provide container_of() Provide a cleaner way to handle single inheritance of targets in C, using the same model Linux does: structs containing other structs, un-nested via calls to a "container_of()" macro that are packaged in typesafe inline functions. Targets already use this containment idiom, but make it much more complicated because they un-nest using embedded "void *" pointers ... in chains of up to five per target, which is all pure needless complication. (Example: arm92x core, arm9tdmi, arm7_9, armv4_5 ... on top of the base "target" class.) Applying this scheme consistently simplifies things, and gets rid of many error-prone untyped pointers. It won't change any part of the type model though -- it just simplifies things. (And facilitates more cleanup later on.) Rule of thumb: where there's an X->arch_info void* pointer, access to that pointer can and should be removed. It may be convenient to set up pointers to some of the embedded structs; and shrink their current "*_common" names (annoyingly long). Signed-off-by: David Brownell --- src/target/cortex_m3.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/target/cortex_m3.h') diff --git a/src/target/cortex_m3.h b/src/target/cortex_m3.h index 1dd724c8..629db8e1 100644 --- a/src/target/cortex_m3.h +++ b/src/target/cortex_m3.h @@ -164,4 +164,11 @@ typedef struct cortex_m3_common_s void *arch_info; } cortex_m3_common_t; +static inline struct cortex_m3_common_s * +target_to_cm3(struct target_s *target) +{ + return container_of(target->arch_info, + struct cortex_m3_common_s, armv7m); +} + #endif /* CORTEX_M3_H */ -- cgit v1.2.3-18-g5258