Method for program debugging

Information

  • Patent Grant
  • 7827540
  • Patent Number
    7,827,540
  • Date Filed
    Wednesday, February 11, 2004
    20 years ago
  • Date Issued
    Tuesday, November 2, 2010
    14 years ago
Abstract
A method for program debugging includes setting a plurality of breakpoints corresponding to a plurality of events in an implementation under test, executing the implementation under test for outputting a diagnosis code of a breakpoint, resetting a parameter of the event corresponding to the diagnosis code, and executing the event according to the reset parameter for making the event undergo an error handler. The method helps execute functions of error handlers and execute a test completely.
Description
BACKGROUND OF INVENTION

1. Field of the Invention


The present invention relates to a method for program debugging, and more particularly, to a method for program debugging which can debug program codes.


2. Description of the Prior Art


In the programming field, the development tools are low level program languages and high level program languages. The text of program codes written in low level languages (e.g. assembly language) is more similar to machine language, but the programming and debugging are not easy. Due to better executing efficiency, low level languages are usually used in basic input/output systems (BIOS) or driver programs.


Take a BIOS for example. After a computer turns on, the main function of the BIOS is to a execute power on self test (POST) to detect whether the settings of peripheral devices are correct, peripheral devices being controlled by the operating system. With the complexity of computers, types of peripheral devices are gradually increasing, such as keyboards, disc units, disc controllers, hard disks, video disc players and so on. Therefore the operation of BIOS becomes more complex. Suppose that the operation of a device on the motherboard is improper or that the programming of BIOS program code contains an error. Since the operating system is not loaded yet, errors are debugged by source codes instead of debug software. This requires more time and a lot of work.


To speed up the debug process, there are two general methods. One method is to insert a debug interface card into the motherboard and to add several diagnosis codes to the BIOS program code. When the BIOS program code is executed at different sections, a diagnosis code would be sent from port 80h to the debug interface card for locking the section. Therefore sections at which errors occur can be found by trapping diagnosis codes.


Please refer to FIG. 1. The other method is called in circuit emulator (ICE). Take a host 7 as the program start, and connect the host 7 and an emulator 8 by the connection port of the host 7 (RS232 or printer parallel port). Also, take a motherboard 9 as the program target, and connect the motherboard 9 and the emulator 8. The host includes assemblers, script files, and so on. The emulator 8 is utilized to simulate a CPU and the emulator 8 is inserted into the CPU slot. Therefore the software of the host 7 can be utilized to control the emulator 8 for remote debugging.


Although the remote debugging provides a good environment for software and hardware, the debug process is still executed by technicians, who execute the script file to BIOS and observe if BIOS is executed as expected. A technician needs to set many breakpoints in places where bugs might occur, and when running into a breakpoint, stop executing the program and determine if the result of the execution is expected. If not, this means that there are bugs in the program codes and the technician must narrow the range to execute the same steps to search for program errors.


However, in the debug of BIOS, besides errors of the program codes, the most important thing is how error handlers of BIOS deal with errors of peripheral devices. For instance, when BIOS detects hardware errors, the motherboard typically provides an alert such as a beep. Due to a large number of peripheral devices, the debug method mentioned above cannot detect if error handlers are missed, and cannot debug all of the error handlers immediately.


SUMMARY OF INVENTION

It is therefore a primary objective of the claimed invention to provide a method which can immediately debug error handlers of an implementation under test (IUT).


The method for program debugging in the claimed invention comprises: setting a plurality of breakpoints corresponding to a plurality of events in an implementation under test, executing the implementation under test for outputting a diagnosis code of a breakpoint, resetting a parameter of the event corresponding to the diagnosis code, and executing the event according to the reset parameter for making the event undergo an error handler.


These and other objectives of the present invention will no doubt become obvious to those of ordinary skill in the art after reading the following detailed description of the preferred embodiment that is illustrated in the various figures and drawings.





BRIEF DESCRIPTION OF DRAWINGS


FIG. 1 is an ICE debug system.



FIG. 2 shows steps of the method for program debugging of the present invention.



FIG. 3 shows addresses of breakpoints in an implementation under test.



FIG. 4 shows steps of the script file of the present invention.



FIG. 5 shows steps of the implementation under test of the present invention.





DETAILED DESCRIPTION

The above-mentioned and other techniques and advantages of the present invention are clearly disclosed in the following embodiment of the present invention.


Before describing the present invention, it should be noted that the present invention is still executed by an ICE. Development tools for programming script files and emulators connected to the host can be selected from ITP products such as those of American Arium or Cisco Systems, which are known to one of ordinary skill in the art.


Please refer to FIG. 2. Step 21 recites setting a plurality of breakpoints corresponding to a plurality of events in an IUT. In the embodiment of the present invention, take a BIOS for example. Of course, the IUT can be a driver program or other similar program.


Please refer to FIG. 3. Since the BIOS program code executes BIOS for peripheral devices, the BIOS program code can be divided into many test modules. Since there are many modules in BIOS, consider a CMOS test module, a memory test module, and a hardware test module for example. Events are defined as tests executed to each peripheral device. In each event, there are two processing states: one is a general processing state when the device is working well and the other is an error processing state when the device is out of order.


A breakpoint is set corresponding to an event, as shown in Table 1. Diagnosis codes are defined by designers. Note that addresses of each breakpoint can be set ahead of each event. Also, addresses of each breakpoint can be set after each event.













TABLE 1







Breakpoint
Diagnosis code
Test









1st breakpoint
00h
CMOS test



2nd breakpoint
01h
Memory test



.
.
.



.
.
.



.
.
.



N-th breakpoint
N-1h
Hardware test










The interrupt nature of breakpoints means a software interrupt, using a trap to stop the execution of the emulator. In addition, in the embodiment of the present invention, the output port of the above-mentioned diagnosis codes is port 90h.


Next, as step 22 recites, the IUT is executed by means of the script file for outputting different diagnosis codes at different sections, such as outputting 01h.


Step 23 recites that in each event, the branch of instructions is executed after assigning different parameters; therefore, step 23 includes two sub-steps: (1) deleting parameters of corresponding events in the IUT, and (2) inputting new parameters for turning the path of general state into the path of error state. For instance, if the above-mentioned diagnosis code 01h is detected, the original parameter of the IUT is placed with 0FAh. This causes the execution of memory test module to turn into the path of error handler “no memory”.


Finally, as step 24 recites, after resetting the parameter in step 23, when the program code of the corresponding event is executed, this can simulate the hardware under an error condition, and the program code can execute the error handler. For instance, an error message could be displayed, a signal to make the motherboard emit an audible signal (beep) could be generated, or a system reset or stopping signal could be generated. Take the abovementioned diagnosis code 01h for example. In step 24, it sends a signal of Beep 2-1-2 to inform users of a memory error state. As mentioned above, if the breakpoints are set ahead of the events, the parameters are reset after the breakpoints. If the breakpoints are set after the events, the script file should spontaneously jump ahead of the branch command of the event and reset the parameter of the event.


Therefore, by the above-mentioned method, when executing steps 23 and 24 to each event, error states of IUT can be detected one by one. On the premise that we do not have to destroy the hardware, we can know if the ability of IUT to handle the error state when the hardware is out of order is sufficient.


Furthermore, as shown in FIG. 4, users also can debug a certain event of the IUT, such as hardware error. Step 41 recites selecting a certain event. Next, step 42 recites executing the IUT. Since the breakpoints are set in the IUT already, if the IUT is executed at the breakpoints instead of the end of the program, then the diagnosis codes of the breakpoints are inspected, as in step 43 and 44. When the execution of all of the commands is correct, the script file is written with the result of the execution of the IUT into for history tracking, as in step 45.


Step 46 recites that the diagnosis code, when the program is interrupted, is compared with the diagnosis code which a user assigns. If the diagnosis code answers to the diagnosis code which a user assigns, step 47 is executed for resetting the related parameters. If the diagnosis code does not answer to the diagnosis code that the user assigned, the IUT is executed until the diagnosis code answers to the diagnosis code that the user assigned.


Please refer to FIG. 5. Step 51 recites that due to the script file, the IUT outputs different diagnosis codes while executing different sections and stops outputting when the diagnosis code answers to the user assigned diagnosis code.


Step 52 recites that when the diagnosis code answers to the user assigned diagnosis code, the event under test is being executed and the parameters of the IUT are deleted and reset by the script file. If the reset parameters are the same as the original parameters, the execution of the IUT is the path of general state. If the reset parameters are different from the original parameters, the execution of the IUT is the path of error state. There are two error handlers: one is the generic event error handler and the other is the critical event error handler, both being respectively executed according to different parameters. The generic event error handler displays error messages and writes errors into a file. The critical event error handler is an audible tone (Beep 3-3-2, Beep 2-2-1, and so on.), a system reset, or a stop execution command, and so on. Finally, after undergoing the error handler, the IUT is executed until the end of the program.


The above-mentioned steps are executed by means of the above-mentioned program tools according to the breakpoints for executing the script file, and the IUT is debugged automatically.


Therefore, by the above-mentioned steps, whether selecting a certain event under test or testing all of the events in an IUT, both can be executed speedily. Whats more, execute error handlers can be executed without destroying the hardware, and after the IUT is amended and recompiled, debugging can be continued without rewriting the script file. This can achieve the purpose of the present invention.


Those skilled in the art will readily observe that numerous modifications and alterations of the device may be made while retaining the teachings of the invention. Accordingly, the above disclosure should be construed as limited only by the metes and bounds of the appended claims.

Claims
  • 1. A method for program debugging, the method comprising: setting a plurality of breakpoints corresponding to a plurality of events in a Basic Input/Output System (BIOS) program code, each event being a test executed by the BIOS program code to a peripheral device and taking a general processing path when the peripheral device is working well or an error processing path when the peripheral device is in an error state;executing the BIOS program code for outputting a diagnosis code of one of the plurality of breakpoints;setting a parameter to simulate the peripheral device is working well throughout execution of the event corresponding to the diagnosis code by a branch command of a script file via an emulator;executing the event corresponding to the diagnosis code according to the parameter for making the event undergo the general processing path;resetting the parameter to simulate the peripheral device being in the error state throughout execution of the event corresponding to the diagnosis code by the branch command of the script file via the emulator; andexecuting the event corresponding to the diagnosis code according to the reset parameter for making the event undergo the error processing path;wherein the breakpoints are software interrupt, using a trap to stop the execution of the emulator;wherein the breakpoint can be set ahead or after program codes of the corresponding event;if the breakpoints are set ahead of the corresponding events, the parameters are reset after the breakpoints;if the breakpoints are set after the corresponding events, the script file should spontaneously jump ahead of the branch command of the event and reset the parameter of the event.
  • 2. The method of claim 1 wherein the error processing path produces an audible tone.
  • 3. The method of claim 1 wherein the error processing path causes a system reset.
  • 4. The method of claim 1 wherein the error processing path causes a system execution interrupt.
  • 5. The method of claim 1 further comprising: executing the BIOS program code until the diagnosis code of the breakpoint matches a predetermined diagnosis code before resetting the parameter of the event corresponding to the diagnosis code, and executing the event corresponding to the diagnosis code according to the reset parameter for making the event undergo the error processing path.
  • 6. The method of claim 1 further comprising executing both the general processing path and the error processing path of all events of the plurality of events.
  • 7. A method for program debugging, the method comprising: setting a plurality of breakpoints corresponding to a plurality of events in a driver program code, each event being a test executed by the driver program code to a peripheral device and taking a general processing path when the peripheral device is working well or an error processing path when the peripheral device is in an error state;setting a parameter by a branch command of a script file via an emulator to simulate that the peripheral device is working well throughout execution of the driver program code;executing the driver program code according to the parameter for outputting a diagnosis code corresponding to each breakpoint of the plurality of breakpoints;for said each breakpoint, determining whether the diagnosis code matches a user defined diagnosis code; andresetting the parameter by the branch command of the script file via the emulator to simulate that the peripheral device is in the error state and executing the event corresponding to the diagnosis code according to the reset parameter for making the event undergo the error processing path when it is determined that the diagnosis code matches the user defined diagnosis code;wherein the breakpoints are software interrupt, using a trap to stop the execution of the emulator;wherein the breakpoint can be set ahead or after program codes of the corresponding event;if the breakpoints are set ahead of the corresponding events, the parameters are reset after the breakpoints;if the breakpoints are set after the corresponding events, the script file should spontaneously jump ahead of the branch command of the event and reset the parameter of the event.
  • 8. The method of claim 7 further comprising continuing execution of the driver program code to a next breakpoint without resetting the parameter when it is determined that the diagnosis code does not match the user defined diagnosis code.
  • 9. A method for program debugging, the method comprising: setting a plurality of breakpoints corresponding to a plurality of events in a Basic Input/Output System (BIOS) program code, each event being a test executed by the BIOS program code to a peripheral device and taking a general processing path when the peripheral device is working well and taking a generic event error handling path or a critical error path when the peripheral device is in an error state according to the error state, the path taken determined by a parameter;setting the parameter by a branch command of a script file via an emulator to determine the general processing path;executing the BIOS program code according to the parameter for outputting a diagnosis code at each breakpoint of the plurality of breakpoints, each diagnosis code uniquely indicating the event corresponding to one of the said each breakpoint of the plurality of breakpoints;when the outputted diagnostic code matches a predetermined diagnostic code, resetting the parameter by a branch command of the script file via the emulator to determine which of the generic event error handling path or the critical error path is to be taken;when the reset parameter determines the generic event error handling path is to be taken, executing the BIOS program code according to the reset parameter; andwhen the reset parameter determines the critical event error handling path is to be taken, executing the BIOS program code according to the reset parameter;wherein the breakpoints are software interrupt, using a trap to stop the execution of the emulator;wherein the breakpoint can be set ahead or after program codes of the corresponding event;if the breakpoints are set ahead of the corresponding events, the parameters are reset after the breakpoints;if the breakpoints are set after the corresponding events, the script file should spontaneously jump ahead of the branch command of the event and reset the parameter of the event.
  • 10. The method of claim 9 further comprising when executing the BIOS program code according to the reset parameter and the reset parameter determines the generic event error handling path is to be taken, writing error messages to a file.
  • 11. The method of claim 9 further comprising when executing the BIOS program code according to the reset parameter and the reset parameter determines the critical event error handling path is to be taken, the critical error handling path generates an audible tone, a system reset, or a stop execution command.
Priority Claims (1)
Number Date Country Kind
92103002 A Feb 2003 TW national
US Referenced Citations (54)
Number Name Date Kind
4280060 Kure-Jensen et al. Jul 1981 A
4819234 Huber Apr 1989 A
5245615 Treu Sep 1993 A
5321828 Phillips et al. Jun 1994 A
5339422 Brender et al. Aug 1994 A
5463766 Schieve et al. Oct 1995 A
5548717 Wooldridge et al. Aug 1996 A
5768591 Robinson Jun 1998 A
5819023 Klingler Oct 1998 A
5819093 Davidson et al. Oct 1998 A
5838975 Abramson et al. Nov 1998 A
5850562 Crump et al. Dec 1998 A
5896523 Bissett et al. Apr 1999 A
6042614 Davidson et al. Mar 2000 A
6081783 Divine et al. Jun 2000 A
6205560 Hervin et al. Mar 2001 B1
6286132 Tanaka et al. Sep 2001 B1
6477666 Sanchez et al. Nov 2002 B1
6493834 Bates et al. Dec 2002 B1
6502102 Haswell et al. Dec 2002 B1
6543049 Bates et al. Apr 2003 B1
6598178 Yee et al. Jul 2003 B1
6598181 Pennell Jul 2003 B1
6651187 Lacey, III Nov 2003 B2
6658649 Bates et al. Dec 2003 B1
6964035 Poynor Nov 2005 B2
6973417 Maxwell et al. Dec 2005 B1
6981248 Bates et al. Dec 2005 B2
7007268 Emberson Feb 2006 B2
7085700 O'Riordan et al. Aug 2006 B2
7133820 Pennello et al. Nov 2006 B2
7185321 Roe et al. Feb 2007 B1
7206733 Nemecek Apr 2007 B1
7353427 Bates et al. Apr 2008 B2
20020129338 MacDonell Sep 2002 A1
20020162051 Bolding et al. Oct 2002 A1
20030005415 Bates et al. Jan 2003 A1
20030037225 Deng et al. Feb 2003 A1
20030037317 Emberson Feb 2003 A1
20030041315 Bates et al. Feb 2003 A1
20030061599 Bates et al. Mar 2003 A1
20030084430 Bates et al. May 2003 A1
20030115576 Bates et al. Jun 2003 A1
20030145124 Guyan et al. Jul 2003 A1
20030177476 Sarma et al. Sep 2003 A1
20030188225 Bates et al. Oct 2003 A1
20030208746 Bates et al. Nov 2003 A1
20030217354 Bates et al. Nov 2003 A1
20040010773 Chan et al. Jan 2004 A1
20040019831 Gergen et al. Jan 2004 A1
20040031019 Lamanna et al. Feb 2004 A1
20040205720 Hundt Oct 2004 A1
20050188358 Johnson et al. Aug 2005 A1
20070006158 Takuma et al. Jan 2007 A1
Related Publications (1)
Number Date Country
20040194067 A1 Sep 2004 US