Mercurial > ecos
view packages/services/memalloc/common/current/src/heapgen.tcl @ 3292:7f8e529b4d82 default tip
Fix FREESCALE_EDMA_NBYTES_MLOFFYES_MLOFF() so it works with negative offsets.
| author | vae |
|---|---|
| date | Wed, 29 Apr 2015 23:31:48 +0000 |
| parents | 3e161d64711f |
| children |
line wrap: on
line source
#!/usr/bin/env tclsh #=============================================================================== # # heapgen.tcl # # Script to generate memory pool instantiations based on the memory map # #=============================================================================== ## ####ECOSGPLCOPYRIGHTBEGIN#### ## ------------------------------------------- ## This file is part of eCos, the Embedded Configurable Operating System. ## Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. ## ## eCos is free software; you can redistribute it and/or modify it under ## the terms of the GNU General Public License as published by the Free ## Software Foundation; either version 2 or (at your option) any later ## version. ## ## eCos is distributed in the hope that it will be useful, but WITHOUT ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ## for more details. ## ## You should have received a copy of the GNU General Public License ## along with eCos; if not, write to the Free Software Foundation, Inc., ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ## ## As a special exception, if other files instantiate templates or use ## macros or inline functions from this file, or you compile this file ## and link it with other works to produce a work based on this file, ## this file does not by itself cause the resulting work to be covered by ## the GNU General Public License. However the source code for this file ## must still be made available in accordance with section (3) of the GNU ## General Public License v2. ## ## This exception does not invalidate any other reasons why a work based ## on this file might be covered by the GNU General Public License. ## ------------------------------------------- ## ####ECOSGPLCOPYRIGHTEND#### #=============================================================================== ######DESCRIPTIONBEGIN#### # # Author(s): jlarmour # Contributors: # Date: 2000-06-13 # Purpose: Generate memory pool instantiations based on the memory map # along with information in a header file to allow access from # C source # Description: # Usage: # #####DESCRIPTIONEND#### #=============================================================================== set debug 0 proc dputs { args } { global debug if { $debug > 0 } { puts -nonewline "DEBUG: " foreach i $args { puts -nonewline $i } puts "" } } proc tcl_path { posix_path } { # Use the HOST setting from the toplevel makefile in preference to # tcl_platform() since we have more control over the former than the # latter. if { [info exists ::env(HOST)] && [string equal $::env(HOST) "CYGWIN"] } { return [ exec cygpath -w $posix_path ] } else { return $posix_path } } dputs "argc=" $argc dputs "argv=" $argv if { $argc != 2 } { error "Usage: heapgen.tcl installdir builddir" } set installdir [ tcl_path [ lindex $argv 0 ] ] set builddir [ tcl_path [ lindex $argv 1 ] ] dputs "builddir=" $builddir dputs "installdir=" $installdir dputs "pwd=" [pwd] # Fetch relevant config data placed in the generated file heapgeninc.tcl source [ file join $builddir heapgeninc.tcl ] dputs "memlayout_h=" $memlayout_h # ---------------------------------------------------------------------------- # Get heap information # trim brackets set ldi_name [ string trim $memlayout_ldi "<>" ] dputs $ldi_name # prefix full leading path including installdir set ldifile [open [ file join $installdir include $ldi_name ] r] # now read the .ldi file and find the user-defined sections with the # prefix "heap" set heaps "" while { [gets $ldifile line] >= 0} { # Search for user-defined name beginning heap (possibly with leading # underscores if [ regexp {^[ \t]+(CYG_LABEL_DEFN\(|)[ \t]*_*heap} $line ] { set heapnamestart [ string first heap $line ] set heapnameend1 [ string first ")" $line ] incr heapnameend1 -1 set heapnameend2 [ string wordend $line $heapnamestart ] if { $heapnameend1 < 0 } { set $heapnameend1 $heapnameend2 } set heapnameend [ expr $heapnameend1 < $heapnameend2 ? $heapnameend1 : $heapnameend2 ] set heapname [ string range $line $heapnamestart $heapnameend ] set heaps [ concat $heaps $heapname ] dputs [ format "Found heap \"%s\"" $heapname ] } } close $ldifile set heapcount [ llength $heaps ] set heapcount1 [ expr 1 + $heapcount ] # ---------------------------------------------------------------------------- # Generate header file # Could have made it generate the header file straight into include/pkgconf, # but that knowledge of the build system is best left in the make rules in CDL set hfile [ open [ file join $builddir heaps.hxx ] w] puts $hfile "#ifndef CYGONCE_PKGCONF_HEAPS_HXX" puts $hfile "#define CYGONCE_PKGCONF_HEAPS_HXX" puts $hfile "/* <pkgconf/heaps.hxx> */\n" puts $hfile "/* This is a generated file - do not edit! */\n" # Allow CYGMEM_HEAP_COUNT to be available to the implementation header file puts $hfile [ format "#define CYGMEM_HEAP_COUNT %d" $heapcount ] puts $hfile [ concat "#include " $malloc_impl_h ] puts $hfile "" puts $hfile [ format "extern %s *cygmem_memalloc_heaps\[ %d \];" \ $malloc_impl_class $heapcount1 ] puts $hfile "\n#endif" puts $hfile "/* EOF <pkgconf/heaps.hxx> */" close $hfile # ---------------------------------------------------------------------------- # Generate C file in the current directory (ie. the build directory) # that instantiates the pools set cfile [ open [ file join $builddir heaps.cxx ] w ] puts $cfile "/* heaps.cxx */\n" puts $cfile "/* This is a generated file - do not edit! */\n" puts $cfile "#include <pkgconf/heaps.hxx>" puts $cfile [ concat "#include " $memlayout_h ] puts $cfile "#include <cyg/infra/cyg_type.h>" puts $cfile "#include <cyg/hal/hal_intr.h>" puts $cfile [ concat "#include " $malloc_impl_h ] puts $cfile "" foreach heap $heaps { puts $cfile "#ifdef HAL_MEM_REAL_REGION_TOP\n" puts $cfile [ format "%s CYGBLD_ATTRIB_INIT_BEFORE(CYG_INIT_MEMALLOC) cygmem_pool_%s ( (cyg_uint8 *)CYGMEM_SECTION_%s ," \ $malloc_impl_class $heap $heap ] puts $cfile [ format " HAL_MEM_REAL_REGION_TOP( (cyg_uint8 *)CYGMEM_SECTION_%s + CYGMEM_SECTION_%s_SIZE ) - (cyg_uint8 *)CYGMEM_SECTION_%s ) " \ $heap $heap $heap ] puts $cfile " ;\n" puts $cfile "#else\n" puts $cfile [ format "%s CYGBLD_ATTRIB_INIT_BEFORE(CYG_INIT_MEMALLOC) cygmem_pool_%s ( (cyg_uint8 *)CYGMEM_SECTION_%s , CYGMEM_SECTION_%s_SIZE ) ;\n" \ $malloc_impl_class $heap $heap $heap ] puts $cfile "#endif" } puts $cfile "" puts $cfile [ format "%s *cygmem_memalloc_heaps\[ %d \] = { " \ $malloc_impl_class $heapcount1 ] foreach heap $heaps { puts $cfile [ format " &cygmem_pool_%s," $heap ] } puts $cfile " NULL\n};" puts $cfile "\n/* EOF heaps.cxx */" close $cfile # ---------------------------------------------------------------------------- # EOF heapgen.tcl
