CA2178898C - Sequencing and error detection of template instantiations during compilation of c++ programs - Google Patents

Sequencing and error detection of template instantiations during compilation of c++ programs Download PDF

Info

Publication number
CA2178898C
CA2178898C CA002178898A CA2178898A CA2178898C CA 2178898 C CA2178898 C CA 2178898C CA 002178898 A CA002178898 A CA 002178898A CA 2178898 A CA2178898 A CA 2178898A CA 2178898 C CA2178898 C CA 2178898C
Authority
CA
Canada
Prior art keywords
instantiation
processing
template
code fragment
scheduling
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 - Fee Related
Application number
CA002178898A
Other languages
French (fr)
Other versions
CA2178898A1 (en
Inventor
David Joseph Streeter
Michael Karasick
John Joseph Barton
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
IBM Canada Ltd
Original Assignee
IBM Canada Ltd
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by IBM Canada Ltd filed Critical IBM Canada Ltd
Priority to CA002178898A priority Critical patent/CA2178898C/en
Priority to US08/766,375 priority patent/US5864700A/en
Publication of CA2178898A1 publication Critical patent/CA2178898A1/en
Application granted granted Critical
Publication of CA2178898C publication Critical patent/CA2178898C/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/40Transformation of program code
    • G06F8/41Compilation
    • G06F8/42Syntactic analysis
    • G06F8/427Parsing

Landscapes

  • Engineering & Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Devices For Executing Special Programs (AREA)

Abstract

A priority queue is used to sequence template instantiations in compiling C+ +
programs. If the analysis of a C+ + code fragment encounters a name that requires full instantiation and no matching full instantiation exists, the parse is terminated and rescheduled, and a full instantiation is scheduled as an antecedent of the failed parse.
"Antecedent" means that the failed parse code fragment will not be reparsed until after the full instantiation has succeeded. Only when the full instantiation has succeeded will the terminated parse be reconsidered. Parsing full instantiations may causeadditional full instantiations. These are handled in the same manner; the additional instantiation is scheduled, and the current parse is failed and rescheduled. At the time of scheduling, the antecedent instantiation is marked with its dependent, so that the dependent chain give the chronology of the instantiation. This makes it easy to generate historical or "traceback" information for meaningful error messages.

Description

-SEQUENCING AND ERROR DETECTION OF TEMPLATE
INSTANTIATIONS DURING COMPILATION OF C+ + PROGRAMS

Field of the Invention The present invention is directed to the field of object oriented programming, and in particular, to the processing of templates in C+ + program compilation. The present invention provides a priority queue mechanism that sequences template instantiations and facilitates the generation of error messages that relate the instantiations .
Baclcground of the Invention Compilation is that process that takes place in the computer in which a computer program written in a human readable programming language is translated7through a series of steps of lexical analysis, parsing and semantic analysis, into binary code capable of execution by a data processing system. Commonly7 the compiler itself produces a number of compilation or translation units that are linked into the final output, an executable file, by a linlcer or linlcer/loader.
C++ is an object-oriented programming language in which programs are created using abstractions and constructs to create user-defined classes for defining the methods and variables for a particular type of object. All objects of a particular class are identical in form and behaviour but contain different data on their variables.
The C+ + language also provides templates, which define families of dasses and functions that are structurally identical but contain different kinds of data in their variables or function parameters. Each family is specified by a template declaration, and each member of the family is called an instantiation. Instantiations are created by the compiler.
A template declaration has two parts: the template parameters, and the class or function, written using the template parameter names. For example, this classtemplate represents a list:
template<class ElementType>
class List: public SimpleList<ElementType>
// Add and remove elements from the list void add(ElementType&);
void remove(ElementType&);
// Obtain the last element of the list. This causes a ListViewer< ElementType>
// template to be instantiated.
ElementType last() ListViewer<ElementType> it(*this);
return it.last();

};

This template has a single template parameter, "ElementType", is a subclass of another templatized list, SimpleList, and has a function body that uses a third template, called ListViewer. The template is instantiated by a specif~ing a set of template arguments that match the parameters, e.g., List<int>. Instantiation creates a new class, called, "List<int>", with ElementType replaced by int. This instantiated class behaves like a normal (non-template) class in post-parse phases, lilce type and overloading analysis.
In the course of instantiating a template, it may be necessary to instantiate '- 2178~98 others. In this case, before Listcint> is instantiated, SimpleList<int> must be instantiated, and before the function body List<int>::viewer() can be instantiated, ListViewer<int> must be instantiated. The instantiation of SimpleList<int> and ListViewer<int> are respectively antecedents of (the instantiations of) List<int>
and the body of List<int>::viewer(). Similarly, the instantiation of List<int> is a dependent of the instantiation of SimpleList<int>. Because the programmer has not explicitly requested antecedent instantiations, error messages about antececl.ont instantiations must include information tracing back the dependent instantiations so that the programmer can understand the origin of the errors.
Current C+ + compilers generate poor error diagnostics for templates.
Cascading template instantiation error messages (or "traceback" messages) are not generated by most compilers, and even those error messages that are generated bycurrent compilers are difficult to decipher.
One reason for this is that most compilers perform antecedent instantiations by recursively invoking the compiler. This means that the compiler suspends the instantiation currently being processed while the antece~lent instantiation is being done.
If a compilation error occurs while performing the antecedent instantiation it can be difficult to produce additional error messages that relate that error to the dependent instantiation. For example, the following has a syntax error because member type Base<int>::ElementType cannot be used as a base class:

template<class T> class Base { typedef T ElementType; };
template<class T> class Derived: public Base<T>::ElementType {};
Derived<int> derived;

2178~98 The antecedent error "Base<T>::ElementType is not a class" is not helpful without an additional error message "Error while instantiating Derived<int>". It is difficult to synthesize these error messages from a recursive invocation of the compiler.
Another drawback to recursive antecedent instantiation is the requirement for unbounded memory because of the recursion. For example, the following defines anarray inductively: an array of dimension n is defined as a sub-class of an array of dimension n-l, and an instantiation of Array< lOO> would involce the compiler lO0 times recursively.

// Define an array template recursively.
template<int I>
class Array: public Array< i- l >
int E;
~;
// The base case.
//
template< >
classArray<0> ~;

In addition to the foregoing, some current compilers delay the creation of errormessages until the translation unit has been completed, or even until the entireprogram is linlced. This malces it difficult to match error messages with source code fragments. The time lag between compilation and linking in conventional compilers exacerbates this problem.

..

Summary of the Invention It is therefore an object of the present invention to provide a mechanism for instantiating templates in sequence and to concurrently provide a means for tracing back the history of instantiation in order to create meaningful error messages that can be used to relate detected errors to locations in the source code.
Accordingly, in one aspect7 the present invention provides a method for correctly sequencing template instantiation in a C++ programming environment where, upon locating, during processing of one code fragment, a dependency on anunprocessed template instantiation, the method includes the steps of interrupting the processing of the one code fragment, scheduling the template instantiation with a priority for processing and re-scheduling the one code fragment for reprocessing with a lower priority than the template instantiation.
In a further aspect, the invention provides a method, in a C+ + programming environment, for instantiatiating templates in dependency sequence. This method includes the computer implemented steps of commencing a parse of original C++
code fragments. On encountering a template name in an original code fragment, the parse for that fragment is failed7 and a first task to instantiate the template is generated and scheduled with a priority for processing. The failed parse is scheduled for re-processing with a lower priority than the first task. Preferably, the method also includes the steps of commencing processing of one instantiation. On encountering an antecedent name for which no antecedent instantiation exists, processing of the one instantiation is interrupted in order to generate a second task to instantiate the antecedent. The second task is scheduled with a priority for processing, and the one instantiation is re-scheduled with a lower priority than the second task.
According to a further aspect, the present invention provides a mechanism for '~ 2178~98 sequencing template instantiation during compilation of C++ programs. The mechanism includes a priority queue, means to detect a requirement for an instantiation of an antecedent template during a parse or a first instantiation, means to create a task to process the antecedent instantiation, means to schedule the antecedent instantiation on the priority queue for processing and means to schedule the parse or first instantiation on the priority queue for re-processing with a lower priority than the antecedent instantiation.
According to a further aspect of the invention, a program storage device readable by a machine tangibly embodying a program of instructions executable bythe machine for carrying out the above-described methods is also included.

Brief Description of the Drawings Embodiments of the invention will now be described in detail in association with the accompanying drawings, in which:
Figure 1 is a schematic representation of a priority queue, according to the invention;
Figure 2 is a flow diagram illustrating the computer implemented steps for sequencing template instantiation, according to the invention; and Figure 3 is a flow diagram illustrating the computer implemented steps for detectmg possible divergent instantiations, according to another aspect of the inventlon.

Detailed Description of the Plefel,ed Embodiments The present invention is directed to a mechanism that uses a priority queue, representing the order in which source code fragments are processed, in order to 21788~8 sequence template instantiations. A ~refel-ed embodiment of a priority queue is described in copending Canadian Patent Application No. 2,175,71 l titled Incremental Compilation of C+ + Programs (IBM Doclcet No. CA9-96-006), which is commonly assigned and is hereby incorporated herein by reference.
The priority queue (referred to as a WorkQueue in the above rererenced co-pending application) is a persistent object included in a whole program representation stored, for example, in a program database. For the purposes of the present invention, persistence refers to the fact that the priority queue survives from the beginning of compilation until compilation terminates with or without errors, although the priority queue can be used for scheduling a number of tasks during compilation.
A schematic re~ se--tation of the priority queue is illustrated in Figure 1. Each code fragment (4, 5, 6) on the queue ( I ) is assigned a priority; the highest priority fragment is the next task to be processed.
Instantiations and failed parses (instantiations that have been returned to the queue for re-processing, as described below) are treated as any other task, and are removed from the queue for processing as their priority is reached.
Where parsing or analysis of a code fragment, generally referred to as (2), removed from the queue ( l ) encounters a name that requires further instantiation, the processing has a dependency on this antecedent. If no matching full instantiation for the antecedent exists, the dependent processing (2) will fail and be rescheduled back on the priority queue at a lower priority than the antecedent on which it depends to ensure that, further down the priority queue, the antecedent is processed before its dependent processing. After the full instantiation has s1lrceecle-1, the terminated parse will be re-tried and the full antecedent instantiation will be found.

~178~98 Parsing full instantiations may cause additional full instantiations. These are handled in the same manner; the additional instantiation is scheduled, and the current instantiation is failed and rescheduled.
This method is illustrated in the flow diagram of Figure 2. The current task, that is the task having the highest priority, is to parse or instantiate a template, and is removed from the priority queue (10) for processing (12). If the instantiation contains no antecedent reference, it will be processed in the normal manner (14).
Similarly, if full instantiation of all required antecedents has sllccee~ l, then processing on the template continues in the normal manner ( 14, 16).
However, where processing (parsing or semantic analysis) determines that an antecedent instantiation is necessary ( 16), processing is interrupted ( 18) and a new task for the antecedent instantiation is created (20). The new task is marlced with the the current task (22) as its dependent by setting a pointer from the antece~ltont task to the current task. The new task for the antecedent instantiation is scheduled on the priority queue (24), and then the priority of the dependent task is reset to be lower than that for the antecedent (26). Finally, the current task (for the dependent instantiation) is failed and the task is rescheduled on the priority queue (28).Processing repeatedly removes taslcs from the priority queue until the priority queue has stabilized. At this point the queue is either empty (which means compilation has been successful), or contains only failed parses or instantiations which are in error.
This use of a priority queue provides limits on the compiler resources (memory) required to perform the instantiation.
Furthermore, by marlcing an antecedent template instantiation with its dependent, the priority queue dependent chain gives the chronology of the 21788~8 instantiation, and it becomes very easy to generate historical information for error messages as discussed below. If a compilation error occurs while processing an antecedent instantiation, the chain of dependents is immediately available. This is illustrated schematically in Figure l. The arrows or pointers (7) between noncontiguous code fragments or taslcs on the queue are repr~sentative of the marldng of dependent instantiations or parses in each antecedent before it is scheduled on the priority queue.

The antecedent task is always a function or class instantiation. The dependent task can be a parse7 or an instantiation. There are four cases for marlcing the antecedent with the dependent task. Using the following code fragment to describe these four cases:

template<class T>
class A: public B<T>
void f() C<T> x;
g();
void g() ~;
A<int> I;
From this example, where the antecedent is instantiation and a. the dependent is a class template instantiation, the instantiation of B<int>
is marked with that of A<int>.
b. the dependent is a function body instantiation, the instantiation of C<int>

217889~

is marked with that of the function body of A<int>::f().
c. the dependent is a normal parse, the instantiation of A<int> is marloed with the parse of A< int> I.
d. the antecedent is a function instantiation and the dependent is a function template instantiation. If instantiating the body of A<int>::f(), then the instantiation of the body of A<int>::g() is marked with that of A<int>::f().
The marking of antecedent taslcs with their dependents gives the chronology of the instantiation, providing an easy way to generate error messages during full instantiation. For example:

template<class T>
struct Bar template<class T>
struct Foo typename Bar<T>::X a;
~;
Foo<int> I;

Because Bar<int> does not have a member X, the instantiation of Foo~int>
will fail. The instantiation of Bar<int> is an antecedent of the instantiation of Foo< int>, which is an antecedent of the parse of "Foo<int> I"; after the instantiation of Bar<int> is completed, the instantiation of Foo<inv will be retried, and an error message is produced. First, the history is produced, by wallcing back through the chain of dependents, until there are no more, producing an error 2178~8 message of the form "instantiation error". Then the error message for the antecedent is produced. For this example, the error message is:
Line 12, Error occurred while instantiating Foo<int>
Line 9, Error, X is not a member of class Bar<T>.
By implementing a further embodiment of the present invention, it also becomes possible to detect possible divergent, non-terminating instantiations, as required by the C++ language definition. Possible divergent instantiations are template instantiations that do not terminate (for example7 the instantiation of the Array<- I > ).
The chain of dependent instantiations provides an efficient way to check for possible divergence. A divergence check works by scanning back along the chain of pending instantiations, and counting the number of times that the template was scheduled for a full instantiation. If the count exceeds a divergence threshold, an error is reported. The divergence threshold is an arbitrary specified by the user of selected by the compiler.

Using the following example:

template< int I>
class Stupid Digression<I+ 1~ v;
~;
template<int I>
class Digression Stupid< I > v;

-Stupid<0> divergence;
the instantiation sequence is Stupid<0>, Digression< 1>, Stupid< l >, Digression<2>, and the instantiation diverges.
The divergence tests is done when a task is removed from the priority queue follo~ving the steps illustrated in Figure 3.
A current task, which is an instantiation or a failed parse, is removed from thepriority queue ( 10). If the task is for a parse then there is no divergence (30, 32).
Otherwise the compiler wallcs back through the chain of dependent tasks (30, 34), and if a dependent task is an instantiation of the same template, increments a count (3~). If the count exceeds the maximum allowable threshold then there is a possible divergence (40). The compiler then generates a history traceback (42) and fails the instantiation (44). If the count is below the threshold, there is no divergence (36; 40, 36).
Embodiments of the invention have been described in detail herein, but modifications to the invention obvious to those slcilled in the art are intended to be covered by the appended claims.

Claims (22)

The embodiments of the invention in which an exclusive property or privilege is claimed are defined as follows:
1. A method for correctly sequencing template instantiation in a C++
programming environment where, upon locating, during processing of one code fragment, a dependency on an unprocessed template instantiation, the method comprising:
interrupting the processing of said one code fragment;
scheduling the template instantiation with a priority for processing; and re-scheduling said one code fragment for re-processing with a lower priority than the template instantiation.
2. The method, according to claim 1, further comprising the step of marking said template with the dependency of the one code fragment before scheduling the template instantiation.
3. The method of claim 2, further comprising the step of generating a dependent chain chronology following instantiation of the template and the one code fragment from said marking.
4. A method, in a C++ programming environment, for instantiating templates in dependency sequence, comprising the computer implemented steps of:
(i) commencing a parse of original C++ code fragments;
(ii) on encountering a template name in an original code fragment, failing the parse of said original code fragment and generating a first task to instantiate the template;
(iii) scheduling the first task with a priority for processing; and (iv) scheduling the failed parse for re-processing with a lower priority than the first task.
S. The method of claim 4, further comprising the step of repeating steps (ii) through (iv) until parsing of all original C+ + code fragments has been completed or failed.
6. The method of claim 4, further comprising the steps of:
(v) commencing processing of one instantiation;
(vi) on encountering an antecedent name' for which no antecedent instantiation exists, interrupting processing of said one instantiation and generating a second task to instantiate the antecedent;
(vii) scheduling the second task with a priority for processing; and (viii) re-scheduling said one instantiation for processing with a lower priority than the second task.
7. The method, according to claim 6, further comprising the step of repeating steps (v) through (viii) until a full instantiation is complete.
8. The method, according to claim 7, wherein the step of generating a second task to initiate the antecedent further comprises marking in said antecedent a dependency reference to said one instantiation, whereby to produce a chain of dependent instantiations to the original code fragment.
9. The method, according to claim 8, wherein on failure of the full instantiation, further comprising the steps of:
(vi) tracing through the chain of dependent instantiations to locate the original code fragment; and (vii) generating a message identifying the original code fragment.
10. The method, according to claim 8, further comprising the steps of:
(vi) tracing through the chain of dependent instantiations;
(vii) obtaining a count of each template scheduled for full instantiation; and (viii) if the count exceeds a threshold, failing the instantiation.
11. The method according to claim 10, wherein step viii) further comprises generating a message identifying the chain of dependent instantiations.
12. A program storage device readable by a machine, tangibly embodying a program of instructions executable by the machine for connecting sequencing template instantiation in a C++
programming environment where, upon locating, during processing of one code fragment, a dependency on an unprocessed template instantiation, said method steps comprising:
interrupting the processing of said one code fragment;
scheduling the template instantiation with a priority for processing; and re-scheduling said one code fragment for re-processing with a lower priority than the template instantiation.
13. A program storage device readable by a machine, tangibly embodying a program of instructions executable by the machine for instantiating templates in dependency sequence in a C++
programming environment, said method steps comprising:
(i) commencing a parse of original C++ code fragments;

(ii) on encountering a template name in an original code fragment, failing the parse of said original code fragment and generating a first task to instantiate the template;
(iii) scheduling the first task with a priority for processing;
(iv) scheduling the failed parse for re-processing with a lower priority than the first task;
(v) commencing processing of one instantiation;
(vi) on encountering an antecedent name for which no antecedent instantiation exists, interrupting processing of said one instantiation and generating a second task to instantiate the antecedent;
(vii) scheduling the second task with a priority for processing; and (viii) re-scheduling said one instantiation for processing with a lower priority than the second task.
14. A method for sequencing instantiation of generic structures in a programming language supporting priority queues comprising:
during processing of one code fragment, identifying a dependency on an uninstantiated generic structure;
upon identifying the dependency on the uninstantiated generic structure, interrupting processing of said one code; fragment, and scheduling processing of said uninstantiated generic structure and re-processing of said one code fragment, wherein re-processing of said one code fragment is given lower priority than processing of said uninstantiated generic structure.
15. The method of claim 14, further comprising the step of marking said generic structure with the dependency of the one code fragment before scheduling processing of said uninstantiated generic structure.
16. The method of claim 15, further comprising the step of:

following instantiation of said generic structure and said one code fragment, generating a dependent chain chronology based upon said marking,
17. The method of claim 14, wherein said programming language is C++ and said generic structure is a template.
18. A program storage device readable by a machine, tangibly embodying a program of instructions executable by the machine for performing method steps for sequencing instantiation of generic structures in a programming language supporting priority queues, said method steps comprising:
during processing of one code fragment, identifying a dependency on an uninstantiated generic structure;
upon identifying the dependency on the uninstantiated generic structure, interrupting processing of said one code fragment, and scheduling processing of said uninstantiated generic structure and re-processing of said one code fragment, wherein re-processing of said one code fragment is given lower priority than processing of said uninstantiated generic structure.
19. The program storage device of claim 18, said method steps further comprising the step of marking said generic structure with the dependency of the one code fragment before scheduling processing of said uninstantiated generic structure.
20. The program storage device of claim 19, said method steps further comprising the step of:
following instantiation of said generic structure and said one code fragment, generating a dependent chain chronology based upon said marking.
21. The program storage device of claim 18, wherein said programming language is C++ and said generic structure is a template.
22. A computer readable medium storing statements or instructions for use in the execution in a computer of any one of the methods of claims 1 to 11 or 14 to 17.
CA002178898A 1996-06-12 1996-06-12 Sequencing and error detection of template instantiations during compilation of c++ programs Expired - Fee Related CA2178898C (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
CA002178898A CA2178898C (en) 1996-06-12 1996-06-12 Sequencing and error detection of template instantiations during compilation of c++ programs
US08/766,375 US5864700A (en) 1996-06-12 1996-12-12 Sequencing and error detection of template instantiations during compilation of C++ Programs

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CA002178898A CA2178898C (en) 1996-06-12 1996-06-12 Sequencing and error detection of template instantiations during compilation of c++ programs

Publications (2)

Publication Number Publication Date
CA2178898A1 CA2178898A1 (en) 1997-12-13
CA2178898C true CA2178898C (en) 2000-02-01

Family

ID=4158390

Family Applications (1)

Application Number Title Priority Date Filing Date
CA002178898A Expired - Fee Related CA2178898C (en) 1996-06-12 1996-06-12 Sequencing and error detection of template instantiations during compilation of c++ programs

Country Status (2)

Country Link
US (1) US5864700A (en)
CA (1) CA2178898C (en)

Families Citing this family (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH1185496A (en) * 1997-09-03 1999-03-30 Fujitsu Ltd Support device for production of object-oriented program
US6782530B1 (en) * 1999-04-05 2004-08-24 Microsoft Corporation Method of ranking messages generated in a computer system
US6405368B1 (en) * 1999-04-16 2002-06-11 Brian Freyburger Method for separate compilation of templates
JP4902069B2 (en) * 2000-09-06 2012-03-21 新日鉄ソリューションズ株式会社 Program generation support apparatus, program generation method, and program
US6760905B1 (en) * 2000-09-21 2004-07-06 Curl Corporation Lazy compilation of template-generated classes in dynamic compilation execution environments
US6968541B1 (en) * 2000-10-04 2005-11-22 International Business Machines Corporation Apparatus and method for template instantiation with a cross compiler
US7275250B1 (en) 2001-05-01 2007-09-25 Microsoft Corporation Method and apparatus for correlating events
US7100167B2 (en) * 2001-05-01 2006-08-29 Microsoft Corporation Method and apparatus for creating templates
US20050021756A1 (en) * 2003-07-26 2005-01-27 Grant Bruce K. Method of developing, delivering and rendering network applications
JP2005141380A (en) * 2003-11-05 2005-06-02 Matsushita Electric Ind Co Ltd Template compile method
US7831960B2 (en) * 2006-06-08 2010-11-09 Oracle America, Inc. Configuration tool with multi-level priority semantic
CA2678767A1 (en) * 2009-09-30 2009-12-09 Ibm Canada Limited-Ibm Canada Limitee Optimization of meta-template instantiations
JP6481515B2 (en) 2015-05-29 2019-03-13 富士通株式会社 Information processing apparatus, compiling method, and compiler program
US10691449B2 (en) * 2017-04-27 2020-06-23 Microsoft Technology Licensing, Llc Intelligent automatic merging of source control queue items

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
ATE141423T1 (en) * 1988-09-20 1996-08-15 Digital Equipment Corp ARRANGEMENT FOR SHARING A GENERIC CODE FOR A DIGITAL DATA PROCESSING SYSTEM
US5179702A (en) * 1989-12-29 1993-01-12 Supercomputer Systems Limited Partnership System and method for controlling a highly parallel multiprocessor using an anarchy based scheduler for parallel execution thread scheduling
US5303369A (en) * 1990-08-31 1994-04-12 Texas Instruments Incorporated Scheduling system for multiprocessor operating system
US5655096A (en) * 1990-10-12 1997-08-05 Branigin; Michael H. Method and apparatus for dynamic scheduling of instructions to ensure sequentially coherent data in a processor employing out-of-order execution
US5630128A (en) * 1991-08-09 1997-05-13 International Business Machines Corporation Controlled scheduling of program threads in a multitasking operating system
CA2061298C (en) * 1992-02-17 1996-12-03 Douglas J. Mortson Method for detecting critical failures during the building of complex computer programs from source code parts
US5710902A (en) * 1995-09-06 1998-01-20 Intel Corporation Instruction dependency chain indentifier

Also Published As

Publication number Publication date
CA2178898A1 (en) 1997-12-13
US5864700A (en) 1999-01-26

Similar Documents

Publication Publication Date Title
CA2178898C (en) Sequencing and error detection of template instantiations during compilation of c++ programs
US7496894B2 (en) Methods for enhancing pointer analyses
US6182281B1 (en) Incremental compilation of C++ programs
Rosenblum A practical approach to programming with assertions
Reps et al. The semantics of program slicing and program integration
US8769485B2 (en) Data parallelism and parallel operations in stream processing
US5561803A (en) Computer program product and program storage device for incremental processing of computer objects
US9038041B2 (en) Stream processor with compiled programs
US7089541B2 (en) Modular parser architecture with mini parsers
US7240338B1 (en) Computer language translation system and method of converting procedural computer language software to object-oriented computer language software
US7469375B2 (en) Systems and methods for managing error dependencies
Doong et al. Case studies on testing object-oriented programs
EP0496494A2 (en) Software maintenance system
US5838980A (en) Compilation and virtual machine arrangement and process for source code including pre-runtime executable language structure constructs
US20050004786A1 (en) State machine modelling
EP0993639A4 (en) Device for implementing hierarchical state charts and methods and apparatus useful therefor
Eden LePUS: A visual formalism for object-oriented architectures
US7185322B2 (en) Method and apparatus for parallel action processing
US20050055682A1 (en) Authoring and using generic classes in JAVA language code
Yu et al. Reducing build time through precompilations for evolving large software
US20030182596A1 (en) Method and system for isolating exception related errors in java JVM
US6983453B2 (en) Method and system for obtaining performance data from software compiled with or without trace hooks
Jézéquel Reifying variants in configuration management
Gabsi et al. Extension and adaptation of an aspect oriented programming language for real-time systems
McDonald et al. Testing inheritance hierarchies in the ClassBench framework

Legal Events

Date Code Title Description
EEER Examination request
MKLA Lapsed