Package se.sics.mspsim.debug.StabDebug

Examples of se.sics.mspsim.debug.StabDebug.Stab


            }
        }
    }
   
    private int addType(int i, Stab[] stabs) {
        Stab stab = stabs[i];
        StabType type = new StabType(stab, types);
        types.put(type.name, type);
        types.put(type.internalName, type);
        return 1;
    }
View Full Code Here


        return 1;
    }

    private int addFunction(int i, Stab[] stabs) {
        int index = i;
        Stab stab = stabs[index];
        /* name:ReturnType */
        if (stab.data.length() == 0) {
           /* just ens last function */
           if (lastFunction != null) {
               lastFunction.endAddress = lastFunction.startAddress + stab.value;
View Full Code Here

TOP

Related Classes of se.sics.mspsim.debug.StabDebug.Stab

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.