Changeset 5d494b3 in mainline for kernel/generic/src/debug/symtab.c


Ignore:
Timestamp:
2008-04-03T20:05:06Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
776f2e6
Parents:
dfa7bac
Message:

Each architecture should only announce its endianity.
The conversion macros should be defined only once.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/debug/symtab.c

    rdfa7bac r5d494b3  
    3737
    3838#include <symtab.h>
    39 #include <arch/byteorder.h>
     39#include <byteorder.h>
    4040#include <func.h>
    4141#include <print.h>
     
    5454        count_t i;
    5555
    56         for (i=1;symbol_table[i].address_le;++i) {
     56        for (i = 1; symbol_table[i].address_le; ++i) {
    5757                if (addr < uint64_t_le2host(symbol_table[i].address_le))
    5858                        break;
    5959        }
    60         if (addr >= uint64_t_le2host(symbol_table[i-1].address_le))
    61                 return symbol_table[i-1].symbol_name;
     60        if (addr >= uint64_t_le2host(symbol_table[i - 1].address_le))
     61                return symbol_table[i - 1].symbol_name;
    6262        return NULL;
    6363}
     
    7373        unsigned int namelen = strlen(name);
    7474        char *curname;
    75         int i,j;
     75        int i, j;
    7676        int colonoffset = -1;
    7777
    78         for (i=0;name[i];i++)
     78        for (i = 0; name[i]; i++)
    7979                if (name[i] == ':') {
    8080                        colonoffset = i;
     
    8282                }
    8383
    84         for (i=*startpos;symbol_table[i].address_le;++i) {
     84        for (i = *startpos; symbol_table[i].address_le; ++i) {
    8585                /* Find a ':' in name */
    8686                curname = symbol_table[i].symbol_name;
    87                 for (j=0; curname[j] && curname[j] != ':'; j++)
     87                for (j = 0; curname[j] && curname[j] != ':'; j++)
    8888                        ;
    8989                if (!curname[j])
     
    9595                if (strncmp(curname, name, namelen) == 0) {
    9696                        *startpos = i;
    97                         return curname+namelen;
     97                        return curname + namelen;
    9898                }
    9999        }
     
    116116
    117117        i = 0;
    118         while ((hint=symtab_search_one(name, &i))) {
     118        while ((hint = symtab_search_one(name, &i))) {
    119119                if (!strlen(hint)) {
    120120                        addr =  uint64_t_le2host(symbol_table[i].address_le);
     
    152152int symtab_compl(char *input)
    153153{
    154         char output[MAX_SYMBOL_NAME+1];
     154        char output[MAX_SYMBOL_NAME + 1];
    155155        int startpos = 0;
    156156        char *foundtxt;
     
    173173                startpos++;
    174174                if (!found)
    175                         strncpy(output, foundtxt, strlen(foundtxt)+1);
     175                        strncpy(output, foundtxt, strlen(foundtxt) + 1);
    176176                else {
    177                         for (i=0; output[i] && foundtxt[i] && output[i]==foundtxt[i]; i++)
     177                        for (i = 0; output[i] && foundtxt[i] &&
     178                             output[i] == foundtxt[i]; i++)
    178179                                ;
    179180                        output[i] = '\0';
Note: See TracChangeset for help on using the changeset viewer.