US6986026B2 - Single-step processing and selecting debugging modes - Google Patents
Single-step processing and selecting debugging modes Download PDFInfo
- Publication number
- US6986026B2 US6986026B2 US09/738,649 US73864900A US6986026B2 US 6986026 B2 US6986026 B2 US 6986026B2 US 73864900 A US73864900 A US 73864900A US 6986026 B2 US6986026 B2 US 6986026B2
- Authority
- US
- United States
- Prior art keywords
- mode
- processor
- debugging
- state
- debug
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Expired - Lifetime, expires
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/36—Preventing errors by testing or debugging software
- G06F11/3664—Environments for testing or debugging software
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/36—Preventing errors by testing or debugging software
- G06F11/362—Software debugging
- G06F11/3648—Software debugging using additional hardware
Definitions
- This invention relates to programmable processors.
- a programmable processor such as a microprocessor for a computer or a digital signal processing system, may execute instructions far more rapidly than a human being can execute them. Consequently, when a processor makes an error, which may occur for several reasons, the error usually occurs so quickly that a human cannot directly observe what led to the error.
- Various techniques, generally called “debugging,” may be employed to track down the source or sources of the error.
- FIG. 1 is a block diagram illustrating an example of a pipelined programmable processor.
- FIG. 2 is a schematic illustrating an example execution pipeline.
- FIG. 3 is a flowchart illustrating a process for single-step debugging.
- FIG. 4 is a flowchart illustrating another process for single-step debugging.
- FIG. 5 is a flowchart illustrating a process for selecting one of the single-step debugging processes.
- FIG. 1 is a block diagram illustrating programmable processor 10 coupled to main memory 16 and input/output device 22 .
- Processor 10 includes control unit 12 , execution pipeline 14 and input/output interface 18 and may be, for example, a digital signal processor.
- Control unit 12 may control the flow of instructions and data through pipeline 14 . For example, during the processing of an instruction, control unit 12 may direct the various components of pipeline 14 to decode the instruction and perform the corresponding operation including, for example, writing the results back to main memory 16 .
- Control unit 12 may include exception handler 20 , which may hold addresses of pre-defined instructions to be processed in pipeline 14 when an exception is raised.
- Control unit 12 may also include control register 25 , which stores data related to control functions.
- Control bits 23 A and 23 B in control register 25 comprise information related to single-step debugging techniques, as will be described in more detail below. The state of control bits 23 A and 23 B can be sensed by pipeline 14 via two-bit bus 24 .
- Main memory 16 may store information such as instructions and data.
- Main memory 16 may comprise static random access memory (SPAM), dynamic random access memory (DRAM), flash memory or the like.
- Processor 10 may include components not shown in FIG. 1 , such as an instruction cache.
- a user may communicate with processor 10 via one or more input-output devices 22 , such as a keyboard, mouse, stylus or other pointing device, coupled to processor 10 by way of interface 18 .
- Processor 10 may communicate with a user via one or more input-output devices 22 , such as a display screen or printer, coupled to processor 10 by way of interface 18 .
- FIG. 2 illustrates an example pipeline 14 .
- Pipeline 14 may have five stages: instruction fetch (IF), instruction decode (DEC), address calculation (AC), execute (EX) and write back (WB). Instructions may be fetched from memory 16 or from an instruction cache during the first stage (IF) by fetch unit 30 and may be decoded by instruction decode unit 32 during the second stage (DEC). At the next clock cycle, the results may be passed to the third stage (AC), where data address generators 36 calculate any memory addresses to perform the operation. During the execution stage (EX), execution unit 38 may perform the specified operation such as, for example, adding or multiplying two numbers. During the final stage (WB), the results may be written back to main memory 16 or to data registers 40 .
- IF instruction fetch
- DEC instruction decode
- AC address calculation
- EX execute
- WB write back
- Instructions may be fetched from memory 16 or from an instruction cache during the first stage (IF) by fetch unit 30 and may be decoded by instruction decode unit
- Pipeline 14 typically includes stage registers 42 that are used as temporary memory storage elements and may be used to pass results and other information from stage to stage.
- stage registers 42 that are used as temporary memory storage elements and may be used to pass results and other information from stage to stage.
- pipeline 14 may include additional memory elements or registers for holding instructions, addresses, data or other information.
- Pipeline 14 ordinarily processes instructions in a substantially concurrent manner, with several instructions in pipeline 14 in different stages. For example, while one instruction is in the WB stage, another instruction may be in the EX stage, and a further instruction may be in the AC stage. In some circumstances, however, it may be advantageous to process one instruction, then examine the states of processor 10 and/or the contents of the various registers before completing the processing of the following instruction. Processing instructions in this fashion is called “single-step debugging” and may be desirable, for example, during debugging. Debugging may involve, for example, executing an instruction and examining the contents of memory elements such as registers before executing the next instruction.
- Single-step debugging and examination of memory elements may allow a user to understand whether an error is hardware-based or software-based, to identify problems in the hardware or software, and to observe the interaction among software instructions.
- Debugging may take place during development of processor 10 , before processor 10 is incorporated into a product. Debugging and may also be performed after processor 10 is incorporated into a product.
- processor 10 When a user wants to begin single-step debugging, the user may give a command to processor 10 by way of an input-output device 22 , such as a keypad.
- processor 10 may support different modes of single-step debugging, and the user may further specify the desired manner.
- control unit 12 In response to the single-step exception, control unit 12 typically cancels instructions in the pipeline 14 ( 56 ) and routes control to exception handler 20 ( 58 ).
- Exception handler 20 includes addresses of pre-defined instructions to be processed in pipeline 14 when a single-step exception is raised ( 60 ). Such instructions may include sensing the processor states and outputting information about the states via input/output interface 18 ( 62 ), sensing the register contents and outputting the contents ( 64 ), and clearing the exception ( 66 ). The instructions may be adapted to sense particular register contents or particular processor states. In addition, outputting information may include sending information to input/output device 22 , such as a printer or display screen, and may also include writing the information to main memory 16 .
- the instructions ( 60 ) shown in FIG. 3 are exemplary. Other instructions may be executed, such as dumping contents of main memory 16 or a cache, or saving and restoring processor states.
- control unit 12 may continue the single-step debug process ( 68 ) by sending another instruction through pipeline 14 ( 52 ), which results in another exception upon completion ( 54 ).
- the instruction to be sent is typically one that was previously sent through pipeline 14 but was cancelled ( 56 ) before execution was completed, due to the previously handled exception.
- the user may also choose to terminate single-step operation ( 70 ).
- FIG. 4 is a flow chart illustrating an example process for single-step debugging, including processor 10 operating in emulation mode.
- processor 10 begins in a mode other than emulation mode, such as user mode or supervisor mode.
- Processor 10 may have more or fewer modes of operation than the user, supervisory and emulation modes.
- the user mode of operation is generally the most frequent form of operation.
- Applications running on processor 10 usually invoke the user mode of operation. In user mode, certain processor functions or system resources are deemed out of bounds and cannot be accessed. Attempted access of a restricted function or resource generally results in an error-type exception.
- Supervisor mode represents a higher priority mode of operation, in which all processor functions and resources are available.
- Emulation mode is usually a higher priority mode of operation than supervisor mode, allowing debugging of system resources that may otherwise be out of bounds. Consequently, single-step debugging in emulation mode may be preferable when system resources are to be debugged.
- an instruction is sent through pipeline 14 ( 82 ).
- pipeline 14 raises an emulation event ( 84 ).
- Emulation mode may be invoked in different ways for different processor architectures, such as by applying a signal to a particular processor port or by executing software designed to invoke emulator mode.
- emulation mode Once in emulation mode, high-level processor functions and resources are available, and inputs and outputs to processor 10 are regulated.
- Control unit 12 typically cancels instructions in the pipeline 14 ( 86 ) and routes control to an emulation service routine ( 88 ).
- the emulation service routine includes instructions that may include sensing the processor states and outputting information about the states via input/output interface 18 ( 92 ) and sensing the register contents and outputting the contents ( 94 ). Outputting information may include sending information to an output register or to input/output device 22 , and may include writing the information to main memory 16 .
- Emulation mode generally is terminated by a “return” instruction, which returns processor 10 to the state in which it was operating before invoking emulation mode and includes the address of the next instruction to be fetched ( 96 ).
- return from emulation mode after each step ( 96 ) is automatic, so continued single-step debugging ( 98 ) may involve each single-step operation being separately commanded. If no command to enter emulation mode is given, the single-step operation terminates ( 100 ).
- Control of single-step debugging can be regulated in many ways.
- An exemplary method to control single-step debugging, illustrated by FIG. 5 is to employ one or more control bits, which automatically result in the generation of the single-step debugging operations and instructions. Setting one or more control bits may be detected by logic that may trigger an exception or an emulation event.
- two control bits 23 A and 23 B are shown as stored in control register 25 and are made available to pipeline 14 .
- Control bits 23 A and 23 B may be stored elsewhere and may be stored in any kind of memory element. Many processor architectures, however, support control registers. Use of two control bits 23 A and 23 B allows flexibility in single-step debugging.
- Control bits 23 A and 23 B can be set in four distinct logical configurations: ‘0-0,’ ‘0-1,’ ‘1-0’ and ‘1-1.’ The configurations may be assigned four different results.
- the ‘0-0’ configuration may be the norm, indicating that no single-step debugging of any form is to occur.
- Setting control bits 23 A and 23 B ( 110 ) comprises changing the bits from the ‘0-0’ configuration to some other configuration.
- the mode of single stepping is a function of control bits 23 A and 23 B ( 112 ).
- the ‘0-1’ configuration for example, may result in single-step debugging by entry into emulation mode ( 118 ), regardless of whether processor 10 is in user mode or supervisor mode.
- the ‘1-0’ configuration may result in single-step debugging by taking exceptions ( 116 ), regardless of whether processor 10 is in user mode or supervisor mode.
- the ‘1-1’ configuration may, for example, result in selection of the form of single-step debugging depending upon the current operating mode of processor 10 ( 114 ).
- the ‘1-1’ configuration may cause processor 10 to single-step by taking exceptions ( 116 ), but when processor 10 is operating in supervisor mode, the ‘1-1’ configuration may cause processor 10 to single-step by entering emulation mode ( 118 ).
- Table 1 The results obtained by following the techniques shown in FIG. 5 are summarized in Table 1.
- the processor may be implemented in a variety of systems including general purpose computing systems, digital processing systems, laptop computers, personal digital assistants (PDA's) and cellular phones.
- PDA's personal digital assistants
- the single-step debugging techniques discussed above may be readily used to test the system before or after a customer sale.
- the processor may be coupled to a memory device, such as a FLASH memory device or a SRAM device, that stores an operating system and other software applications.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Computer Hardware Design (AREA)
- Quality & Reliability (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Debugging And Monitoring (AREA)
- Advance Control (AREA)
- Executing Machine-Instructions (AREA)
Abstract
Description
TABLE 1 | ||
Control bits | Operating Mode | Single-step Debugging Mode |
‘0-0’ | User | None |
‘0-0’ | Supervisor | None |
‘0-1’ | User | Emulation |
‘0-1’ | Supervisor | Emulation |
‘1-0’ | User | Exception |
‘1-0’ | Supervisor | Exception |
‘1-1’ | User | Exception |
‘1-1’ | Supervisor | Emulation |
Claims (28)
Priority Applications (6)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US09/738,649 US6986026B2 (en) | 2000-12-15 | 2000-12-15 | Single-step processing and selecting debugging modes |
PCT/US2001/047624 WO2002048887A2 (en) | 2000-12-15 | 2001-12-10 | Single-step processing |
KR1020037007848A KR100695187B1 (en) | 2000-12-15 | 2001-12-10 | Single-step processing |
JP2002550531A JP3857232B2 (en) | 2000-12-15 | 2001-12-10 | Single step processing |
CNB018207006A CN1316372C (en) | 2000-12-15 | 2001-12-10 | Single step processing |
TW090131098A TWI246017B (en) | 2000-12-15 | 2001-12-14 | Single-step processing |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US09/738,649 US6986026B2 (en) | 2000-12-15 | 2000-12-15 | Single-step processing and selecting debugging modes |
Publications (2)
Publication Number | Publication Date |
---|---|
US20040073780A1 US20040073780A1 (en) | 2004-04-15 |
US6986026B2 true US6986026B2 (en) | 2006-01-10 |
Family
ID=24968886
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US09/738,649 Expired - Lifetime US6986026B2 (en) | 2000-12-15 | 2000-12-15 | Single-step processing and selecting debugging modes |
Country Status (6)
Country | Link |
---|---|
US (1) | US6986026B2 (en) |
JP (1) | JP3857232B2 (en) |
KR (1) | KR100695187B1 (en) |
CN (1) | CN1316372C (en) |
TW (1) | TWI246017B (en) |
WO (1) | WO2002048887A2 (en) |
Cited By (20)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20050163038A1 (en) * | 2004-01-27 | 2005-07-28 | Kiomars Anvari | Multi-carrier peak reduction using amplitude clipping and phase rotation |
US20080184056A1 (en) * | 2007-01-30 | 2008-07-31 | Freescale Semiconductor, Inc. | Selective timer control during single-step instruction execution |
US20080184055A1 (en) * | 2007-01-30 | 2008-07-31 | Freescale Semiconductor, Inc. | Instruction-based timer control during debug |
US20080320290A1 (en) * | 2007-06-20 | 2008-12-25 | Freescale Semiconductor, Inc. | Exception-based timer control |
US20090006762A1 (en) * | 2007-06-26 | 2009-01-01 | International Business Machines Corporation | Method and apparatus of prefetching streams of varying prefetch depth |
US20090006769A1 (en) * | 2007-06-26 | 2009-01-01 | International Business Machines Corporation | Programmable partitioning for high-performance coherence domains in a multiprocessor system |
US20090007119A1 (en) * | 2007-06-26 | 2009-01-01 | International Business Machines Corporation | Method and apparatus for single-stepping coherence events in a multiprocessor system under software control |
US20090007141A1 (en) * | 2007-06-26 | 2009-01-01 | International Business Machines Corporation | Message passing with a limited number of dma byte counters |
US20090006810A1 (en) * | 2007-06-26 | 2009-01-01 | International Business Machines Corporation | Mechanism to support generic collective communication across a variety of programming models |
US7793038B2 (en) | 2007-06-26 | 2010-09-07 | International Business Machines Corporation | System and method for programmable bank selection for banked memory subsystems |
US7802025B2 (en) | 2007-06-26 | 2010-09-21 | International Business Machines Corporation | DMA engine for repeating communication patterns |
US7886084B2 (en) | 2007-06-26 | 2011-02-08 | International Business Machines Corporation | Optimized collectives using a DMA on a parallel computer |
US8010875B2 (en) | 2007-06-26 | 2011-08-30 | International Business Machines Corporation | Error correcting code with chip kill capability and power saving enhancement |
US8108738B2 (en) | 2007-06-26 | 2012-01-31 | International Business Machines Corporation | Data eye monitor method and apparatus |
US8140925B2 (en) | 2007-06-26 | 2012-03-20 | International Business Machines Corporation | Method and apparatus to debug an integrated circuit chip via synchronous clock stop and scan |
US8230433B2 (en) | 2007-06-26 | 2012-07-24 | International Business Machines Corporation | Shared performance monitor in a multiprocessor system |
US8458282B2 (en) | 2007-06-26 | 2013-06-04 | International Business Machines Corporation | Extended write combining using a write continuation hint flag |
US8468416B2 (en) | 2007-06-26 | 2013-06-18 | International Business Machines Corporation | Combined group ECC protection and subgroup parity protection |
US8509255B2 (en) | 2007-06-26 | 2013-08-13 | International Business Machines Corporation | Hardware packet pacing using a DMA in a parallel computer |
US8756350B2 (en) | 2007-06-26 | 2014-06-17 | International Business Machines Corporation | Method and apparatus for efficiently tracking queue entries relative to a timestamp |
Families Citing this family (10)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US7007157B2 (en) * | 2001-10-30 | 2006-02-28 | Microsoft Corporation | Network interface sharing methods and apparatuses that support kernel mode data traffic and user mode data traffic |
US7321957B2 (en) * | 2003-10-24 | 2008-01-22 | Intel Corporation | Debugging a trusted component in a system |
US7457989B2 (en) | 2004-09-29 | 2008-11-25 | Microsoft Corporation | System and method for selecting test case execution behaviors for reproducible test automation |
US8972958B1 (en) | 2012-10-23 | 2015-03-03 | Convey Computer | Multistage development workflow for generating a custom instruction set reconfigurable processor |
GB2489000B (en) | 2011-03-14 | 2019-09-11 | Advanced Risc Mach Ltd | Diagnosing code using single step execution |
US10430190B2 (en) * | 2012-06-07 | 2019-10-01 | Micron Technology, Inc. | Systems and methods for selectively controlling multithreaded execution of executable code segments |
US10990398B2 (en) * | 2013-07-15 | 2021-04-27 | Texas Instruments Incorporated | Mechanism for interrupting and resuming execution on an unprotected pipeline processor |
US10747647B2 (en) * | 2015-12-22 | 2020-08-18 | Arm Limited | Method, apparatus and system for diagnosing a processor executing a stream of instructions |
CN110781576B (en) * | 2019-09-09 | 2022-08-23 | 腾讯科技(深圳)有限公司 | Simulation node scheduling method, device and equipment |
CN111708707A (en) * | 2020-06-22 | 2020-09-25 | 北京智芯微电子科技有限公司 | Debugging method of embedded microprocessor and embedded microprocessor |
Citations (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US4308581A (en) | 1979-09-28 | 1981-12-29 | Motorola Inc. | Single step system for a microcomputer |
US5530804A (en) | 1994-05-16 | 1996-06-25 | Motorola, Inc. | Superscalar processor with plural pipelined execution units each unit selectively having both normal and debug modes |
US5682310A (en) | 1994-07-22 | 1997-10-28 | Advanced Micro Devices Inc. | Computer system including in-circuit emulation mode for debugging system management software |
US5740413A (en) | 1995-06-19 | 1998-04-14 | Intel Corporation | Method and apparatus for providing address breakpoints, branch breakpoints, and single stepping |
US5790843A (en) * | 1996-09-19 | 1998-08-04 | International Business Machines Corporation | System for modifying microprocessor operations independently of the execution unit upon detection of preselected opcodes |
US6035422A (en) * | 1995-08-30 | 2000-03-07 | Motorola, Inc. | Data processing system for controlling execution of a debug function and method therefor |
Family Cites Families (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN1279449C (en) * | 1994-12-28 | 2006-10-11 | 株式会社东芝 | Microprocessor |
-
2000
- 2000-12-15 US US09/738,649 patent/US6986026B2/en not_active Expired - Lifetime
-
2001
- 2001-12-10 WO PCT/US2001/047624 patent/WO2002048887A2/en not_active Application Discontinuation
- 2001-12-10 KR KR1020037007848A patent/KR100695187B1/en active IP Right Grant
- 2001-12-10 JP JP2002550531A patent/JP3857232B2/en not_active Expired - Lifetime
- 2001-12-10 CN CNB018207006A patent/CN1316372C/en not_active Expired - Fee Related
- 2001-12-14 TW TW090131098A patent/TWI246017B/en not_active IP Right Cessation
Patent Citations (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US4308581A (en) | 1979-09-28 | 1981-12-29 | Motorola Inc. | Single step system for a microcomputer |
US5530804A (en) | 1994-05-16 | 1996-06-25 | Motorola, Inc. | Superscalar processor with plural pipelined execution units each unit selectively having both normal and debug modes |
US5682310A (en) | 1994-07-22 | 1997-10-28 | Advanced Micro Devices Inc. | Computer system including in-circuit emulation mode for debugging system management software |
US5740413A (en) | 1995-06-19 | 1998-04-14 | Intel Corporation | Method and apparatus for providing address breakpoints, branch breakpoints, and single stepping |
US6035422A (en) * | 1995-08-30 | 2000-03-07 | Motorola, Inc. | Data processing system for controlling execution of a debug function and method therefor |
US5790843A (en) * | 1996-09-19 | 1998-08-04 | International Business Machines Corporation | System for modifying microprocessor operations independently of the execution unit upon detection of preselected opcodes |
Non-Patent Citations (1)
Title |
---|
"Efficient Mechanism for Multiple Debug Modes", IBM Technical Disclosure Bulletin, Nov. 1995, vol. 38 Issue 11 □□ pp. 65-68. * |
Cited By (31)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20050163038A1 (en) * | 2004-01-27 | 2005-07-28 | Kiomars Anvari | Multi-carrier peak reduction using amplitude clipping and phase rotation |
US20080184056A1 (en) * | 2007-01-30 | 2008-07-31 | Freescale Semiconductor, Inc. | Selective timer control during single-step instruction execution |
US20080184055A1 (en) * | 2007-01-30 | 2008-07-31 | Freescale Semiconductor, Inc. | Instruction-based timer control during debug |
US7853834B2 (en) | 2007-01-30 | 2010-12-14 | Freescale Semiconductor, Inc. | Instruction-based timer control during debug |
US7831862B2 (en) * | 2007-01-30 | 2010-11-09 | Freescale Semiconductor, Inc. | Selective timer control during single-step instruction execution |
US20080320290A1 (en) * | 2007-06-20 | 2008-12-25 | Freescale Semiconductor, Inc. | Exception-based timer control |
US7831818B2 (en) | 2007-06-20 | 2010-11-09 | Freescale Semiconductor, Inc. | Exception-based timer control |
US20090007141A1 (en) * | 2007-06-26 | 2009-01-01 | International Business Machines Corporation | Message passing with a limited number of dma byte counters |
US8010875B2 (en) | 2007-06-26 | 2011-08-30 | International Business Machines Corporation | Error correcting code with chip kill capability and power saving enhancement |
US7793038B2 (en) | 2007-06-26 | 2010-09-07 | International Business Machines Corporation | System and method for programmable bank selection for banked memory subsystems |
US7802025B2 (en) | 2007-06-26 | 2010-09-21 | International Business Machines Corporation | DMA engine for repeating communication patterns |
US7827391B2 (en) | 2007-06-26 | 2010-11-02 | International Business Machines Corporation | Method and apparatus for single-stepping coherence events in a multiprocessor system under software control |
US20090007119A1 (en) * | 2007-06-26 | 2009-01-01 | International Business Machines Corporation | Method and apparatus for single-stepping coherence events in a multiprocessor system under software control |
US20090006769A1 (en) * | 2007-06-26 | 2009-01-01 | International Business Machines Corporation | Programmable partitioning for high-performance coherence domains in a multiprocessor system |
US20090006762A1 (en) * | 2007-06-26 | 2009-01-01 | International Business Machines Corporation | Method and apparatus of prefetching streams of varying prefetch depth |
US7877551B2 (en) | 2007-06-26 | 2011-01-25 | International Business Machines Corporation | Programmable partitioning for high-performance coherence domains in a multiprocessor system |
US7886084B2 (en) | 2007-06-26 | 2011-02-08 | International Business Machines Corporation | Optimized collectives using a DMA on a parallel computer |
US7984448B2 (en) | 2007-06-26 | 2011-07-19 | International Business Machines Corporation | Mechanism to support generic collective communication across a variety of programming models |
US20090006810A1 (en) * | 2007-06-26 | 2009-01-01 | International Business Machines Corporation | Mechanism to support generic collective communication across a variety of programming models |
US8032892B2 (en) | 2007-06-26 | 2011-10-04 | International Business Machines Corporation | Message passing with a limited number of DMA byte counters |
US8103832B2 (en) | 2007-06-26 | 2012-01-24 | International Business Machines Corporation | Method and apparatus of prefetching streams of varying prefetch depth |
US8108738B2 (en) | 2007-06-26 | 2012-01-31 | International Business Machines Corporation | Data eye monitor method and apparatus |
US8140925B2 (en) | 2007-06-26 | 2012-03-20 | International Business Machines Corporation | Method and apparatus to debug an integrated circuit chip via synchronous clock stop and scan |
US8230433B2 (en) | 2007-06-26 | 2012-07-24 | International Business Machines Corporation | Shared performance monitor in a multiprocessor system |
US8458282B2 (en) | 2007-06-26 | 2013-06-04 | International Business Machines Corporation | Extended write combining using a write continuation hint flag |
US8468416B2 (en) | 2007-06-26 | 2013-06-18 | International Business Machines Corporation | Combined group ECC protection and subgroup parity protection |
US8509255B2 (en) | 2007-06-26 | 2013-08-13 | International Business Machines Corporation | Hardware packet pacing using a DMA in a parallel computer |
US8756350B2 (en) | 2007-06-26 | 2014-06-17 | International Business Machines Corporation | Method and apparatus for efficiently tracking queue entries relative to a timestamp |
US8904392B2 (en) | 2007-06-26 | 2014-12-02 | International Business Machines Corporation | Shared performance monitor in a multiprocessor system |
US9252814B2 (en) | 2007-06-26 | 2016-02-02 | International Business Machines Corporation | Combined group ECC protection and subgroup parity protection |
US10140179B2 (en) | 2007-06-26 | 2018-11-27 | International Business Machines Corporation | Combined group ECC protection and subgroup parity protection |
Also Published As
Publication number | Publication date |
---|---|
TWI246017B (en) | 2005-12-21 |
KR20030059339A (en) | 2003-07-07 |
CN1316372C (en) | 2007-05-16 |
WO2002048887A3 (en) | 2003-09-04 |
KR100695187B1 (en) | 2007-03-19 |
WO2002048887A2 (en) | 2002-06-20 |
CN1489729A (en) | 2004-04-14 |
US20040073780A1 (en) | 2004-04-15 |
JP2004516549A (en) | 2004-06-03 |
JP3857232B2 (en) | 2006-12-13 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US6986026B2 (en) | Single-step processing and selecting debugging modes | |
US6571359B1 (en) | Systems and methods for testing processors | |
US5611043A (en) | Debugger system and method for controlling child processes | |
US7536605B2 (en) | Injection of software faults into an operational system | |
US7840845B2 (en) | Method and system for setting a breakpoint | |
US5751942A (en) | Trace event detection during trace enable transitions | |
US8346760B2 (en) | Method and apparatus to improve execution of a stored program | |
US7401210B2 (en) | Selecting subroutine return mechanisms | |
US20060174094A1 (en) | Systems and methods for providing complementary operands to an ALU | |
US7793160B1 (en) | Systems and methods for tracing errors | |
JPH07248897A (en) | Method and device for recovery from exception in computer system | |
US20040019774A1 (en) | Processor device and information processing device, compiling device, and compiling method using said processor device | |
JP4202244B2 (en) | VLIW DSP and method of operating the same | |
US5463764A (en) | Method and system for system debugging through a keyboard device driver | |
US8230413B2 (en) | Detecting incorrect versions of files | |
US7577557B2 (en) | Simulator and simulation method for behaviors of processors | |
US6012140A (en) | Processing system, processing unit, memory and compiling method | |
US7100027B1 (en) | System and method for reproducing system executions using a replay handler | |
JPS6079462A (en) | Controller for controlling access to multiple records | |
US10140476B2 (en) | Tracing processing activity | |
US20080072009A1 (en) | Apparatus and method for handling interrupt disabled section and page pinning apparatus and method | |
US5815729A (en) | Method and apparatus for on the fly descriptor validation | |
US11152076B2 (en) | Apparatus and method for executing debug instructions | |
US6775735B2 (en) | Instruction pair detection and pseudo ports for cache array | |
US11263017B2 (en) | Exception register delay |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: INTEL CORPORATION, CALIFORNIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:ROTH, CHARLES P.;SINGH, RAVI P.;DINH, TIEN;AND OTHERS;REEL/FRAME:011762/0213;SIGNING DATES FROM 20010327 TO 20010418 Owner name: ANALOG DEVICES INC., MASSACHUSETTS Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:ROTH, CHARLES P.;SINGH, RAVI P.;DINH, TIEN;AND OTHERS;REEL/FRAME:011762/0213;SIGNING DATES FROM 20010327 TO 20010418 |
|
STCF | Information on status: patent grant |
Free format text: PATENTED CASE |
|
AS | Assignment |
Owner name: ANALOG DEVICES, INC., MASSACHUSETTS Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:INTEL CORPORATION;REEL/FRAME:018891/0599 Effective date: 20061108 |
|
FPAY | Fee payment |
Year of fee payment: 4 |
|
FPAY | Fee payment |
Year of fee payment: 8 |
|
FPAY | Fee payment |
Year of fee payment: 12 |