US20010011371A1 - Compilation of embedded language statements in a source code program - Google Patents

Compilation of embedded language statements in a source code program Download PDF

Info

Publication number
US20010011371A1
US20010011371A1 US09/162,965 US16296598A US2001011371A1 US 20010011371 A1 US20010011371 A1 US 20010011371A1 US 16296598 A US16296598 A US 16296598A US 2001011371 A1 US2001011371 A1 US 2001011371A1
Authority
US
United States
Prior art keywords
program
statement
node
statements
function calls
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.)
Granted
Application number
US09/162,965
Other versions
US6378126B2 (en
Inventor
Min-Mei Tang
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.)
International Business Machines Corp
Original Assignee
Individual
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 Individual filed Critical Individual
Priority to US09/162,965 priority Critical patent/US6378126B2/en
Assigned to INTERNATIONAL BUSINESS MACHINES CORPORATION reassignment INTERNATIONAL BUSINESS MACHINES CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: TANG, MIN-MEI
Publication of US20010011371A1 publication Critical patent/US20010011371A1/en
Application granted granted Critical
Publication of US6378126B2 publication Critical patent/US6378126B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Images

Classifications

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

Definitions

  • the present invention relates to a method and system for compiling a source code program in a host computer language including embedded program statements in a computer language different from the host computer language.
  • a computer source program is typically initially written in a high level computer language, also called source code, comprising descriptive statements of the actions the code will cause the computer to perform.
  • High level computer languages include C++, FORTRAN, COBOL, JAVATM, etc.
  • JAVA is a trademark of Sun Microsystems, Inc.
  • a source program written in such a high level language must be converted into object or machine code, i.e., strings of zeros and ones, which the computer can execute to carry out the steps specified by the program.
  • a compiler program is a computer program that receives as input source code and generates as output object code which may be loaded into the computer memory and executed.
  • the compiler processes the source code in phases.
  • the lexical scanning phase the compiler groups the characters of a source program into tokens, which are logically cohesive sequences of characters.
  • noise words such as comments and blanks are removed.
  • the syntax and semantics of the tokens are checked for errors.
  • a parse tree phase follows where the source statements are converted into a parse tree which describes the syntactic structure of a source statement.
  • a parse tree may be expressed as a syntax tree in which the operators appear as interior nodes and the operands of an operator are the children of the node for that operator.
  • the parsed tree may then be optimized in manners known in the art to develop the shortest linked lists providing a structure of the code.
  • Another phase of a compiler is the generation of a symbol table.
  • a symbol table is a data structure containing a record for identifiers, e.g., the names of variables, arrays, and functions, and the fields and attributes of identifiers.
  • Next follows an error detection phase and thereafter the code generation phase where target code is generated from the optimized parse tree.
  • the target code may be relocatable machine code or assembly code.
  • the compilation process is described in “Compilers: Principles, Techniques and Tools,” by Alfred V. Aho, Ravi Sethi, and Jeffrey D. Ullman, (Addison-Wesley Publishing Co., March 1988), which publication is incorporated herein by reference in its entirety.
  • a host language e.g., C++, Java, Fortran, etc.
  • database systems and programs are often searched and accessed using Structured Query Language (SQL) statements.
  • SQL Structured Query Language
  • a source program could include such SQL statements to access a database from within the source program.
  • SQL statements are in a substantially different format from programming statements in the host program language.
  • the SQL statements are often separately processed and compiled by a precompiler, also known as a language dependent compiler.
  • a precompiler scans the source code for SQL statements and generates a separate modified source file for the SQL statements.
  • This modified source file is a new version of the original source file including run-time API calls converted from the SQL statements.
  • the modified source files and any additional source files that do not contain SQL statements are compiled using the appropriate host language compiler.
  • the language compiler converts each modified source file into an object module.
  • Precompiler programs to process SQL statements in source programs are described in U.S. Pat. No. 5,230,049, entitled “Program Source Code Translator, which patent is assigned to International Business Machines Corporation (“IBM”), the assignee of the present patent application, and which is incorporated herein by reference in its entirety.
  • a source program including program statements in a first computer language and embedded statements in a second computer language is processed.
  • the statement is lexically scanned and parsed into a parse tree if the statement is in the first language. If the statement is in the second language, then the statement is lexically scanned. Then a plurality of function calls capable of executing the statement are accessed and translated into at least one parse tree.
  • the parsed statements are converted into target code.
  • the same parse tree structure and parse tree rules are used to parse statements in the first and second languages.
  • parse trees are optimized after generating parse trees for each statement in the source program. Code is then generated from the optimized parse trees.
  • the second language is SQL and the function calls are application programming interface (API) function calls.
  • API application programming interface
  • Two-pass parsing systems employing a separate pre-compiler to generate an intermediate file for the embedded language statements are problematic because of the time required to generate the intermediate file of translated SQL statements, read the source code twice, and develop a precompiler to translate and handle the SQL statements. Further, such two-pass precompilers require the input source file be scanned and processed twice, one for precompilation and the other for translation.
  • the prior art precompiling methods require two copies of lexical scanners, one for the host source code and another for the SQL statements, i.e., the language dependent precompiler.
  • prior art compiling methods use two copies of source files, one with the original SQL statements and one from the precompiler generated modified source output.
  • precompilation systems increase the likelihood for error if the user changes statements in the modified source output.
  • Preferred embodiments provide an improved language processor because the SQL statements are converted to API function calls and then parsed in the same manner that statements in the first language are parsed in the parse tree before being converted into target code. In this way, the embedded language statements are subjected to the same optimization techniques applied to the host language. Instead of commenting out the SQL statements, inserting API function calls, and then generating a separate intermediate file, the preferred embodiments apply the parsing and parse tree to the API function calls. The language compiler then generates the parse tree and executes the function calls as if there are no SQL statements.
  • preferred embodiments eliminate the need for a separate precompiling program to process the SQL statements and eliminate the need to generate an intermediate file with the translated SQL statements.
  • FIG. 1 is a block diagram illustrating a software and hardware environment in which preferred embodiments of the present invention are implemented
  • FIG. 2 illustrates logic implemented in the compiler to process embedded language statements in accordance with preferred embodiments of the present invention.
  • FIG. 3 illustrates a parse tree parsing an embedded language statement in accordance with preferred embodiments of the present invention.
  • FIG. 1 illustrates a hardware and software environment in which preferred embodiments of the present invention are implemented.
  • a computer 2 includes a memory 4 .
  • the computer 2 may be a personal computer, workstation, mainframe, etc operating under microprocessor control.
  • the memory 4 includes an operating system 6 , a compiler 8 , and a database program 10 .
  • the memory 4 may be any suitable volatile memory known in the art, e.g., RAM, DRAM, SRAM, etc., or a combination of volatile and non-volatile memory, e.g., hard disk drives, to provide storage space for programs, whether they are being executed or not.
  • the memory 10 is comprised of volatile and non-volatile devices, then data and programs may be swapped between the volatile and non-volatile memory devices in a manner known in the art.
  • the memory 4 may be distributed throughout a network computing system, where the compiler 8 is in one memory area and the database program 10 is in another area within the distributed network.
  • the operating system 6 may be any suitable operating system such as AIX®, OS/390TM, UNIX®, OS/2®, MVSTM, WINDOWS®, WINDOWS NT® etc.
  • AIX, OS/390, MVS, and OS/2 are trademarks of IBM; WINDOWS and WINDOWS NT are registered trademarks of Microsoft Corporation; UNIX is a registered trademark licensed by the X/Open Company LTD.
  • the compiler 8 includes compiler 8 includes features typically found in compiler products to process a program comprised of source code 12 and generate object code 14 , and includes additional logic to implement preferred embodiments of the present invention.
  • the database program 10 is capable of converting SQL statements into application programming interface (API) function calls, and may be any suitable database program which performs such functions, such as the IBM DB2® UNIVERSAL DATABASE which includes the DB2 precompiler services for converting SQL statements to API function calls.
  • API application programming interface
  • IBM DB2 system for processing embedded SQL statements is described in IBM publication “Embedded SQL Programming Guide, Version 5,” publication no. S10J-8158-00 (Copyright IBM 1993, 1997), which publication is incorporated herein by reference in its entirety.
  • DB2 UNIVERSAL DATABASE is a registered trademark of IBM.
  • a user controls computer 2 operations via a display 16 , which may be any suitable display device known in the art, and an input means 18 , which may be a keyboard, mouse, pen-stylus, voice activated input, etc.
  • the code needed to parse and compile the SQL statements is included in the host language compiler 8 .
  • the host language may utilize a context-free grammar or BNF (Bauckus-Naur Form)
  • BNF Bouckus-Naur Form
  • the grammar in the host compiler 8 is modified to support keywords, such as “EXEC SQL” which enables the compiler 8 lexical scanner to accept SQL statements starting with “EXEC SQL.”
  • a semantic action routine is invoked to process the SQL statement.
  • API function calls are represented by application programming interface (API) function calls.
  • API function calls An example of API function calls that underlie various SQL statements used to access a server including the IBM DB2 database are described in IBM publication “IBM DB2 Universal Database API Reference (Version 5),” IBM publication no. S10J-8167-00 (Copyright IBM, 1993, 1997).
  • FIG. 2 illustrates logic implemented as software logic in the compiler 8 and database program 10 and executed by the computer 2 to convert a source file including SQL statements and host language statements into target object code 14 .
  • Control begins at block 20 which represents the compiler 8 processing a source code 12 file.
  • Control transfers to block 22 where the lexical scanner component of the compiler 8 proceeds to the first line in the source program 12 .
  • Control then transfers to block 24 which is a decision block representing the lexical scanner determining whether the statement is an SQL statement. If so, control transfers to block 26 ; otherwise control transfers to block 28 which represents the compiler 8 performing the lexical scan of the statement and then generating a parse tree in a manner known in the art.
  • the parse tree is implemented as a linked list with nodes chained together.
  • Each node may include a node name and one down pointer pointing to the next node deeper in the tree, i.e., a child node, and another pointer having the address of a node at the same depth, i.e., a sibling node.
  • Control then transfers to block 30 where the compiler 8 adds variables in the statement to a symbol table together with attributes for the variable.
  • the symbol table is a data structure maintained in memory 4 .
  • Control transfers to block 32 which is a decision block representing the compiler 8 determining whether there are any further lines of source code 12 . If so, control transfers to block 34 to proceed to the next line and then to block 24 et seq. to compile such statement; otherwise, control transfers to block 36 .
  • the compiler 8 calls a semantic action routine to perform lexical scanning on the SQL statement and generate tokens for the statement. Control then transfers to block 38 where the compiler 8 reads the characters of the SQL statement into a buffer, e.g., sql_stmt buffer, one at a time, removing any spaces. Control transfers to block 40 where the compiler 8 converts the SQL statement to an ASCII string. Control then transfers to block 42 to locate any host and indicator variables. At block 44 , the compiler 8 inserts the located variables in the symbol table, along with any attributes.
  • a buffer e.g., sql_stmt buffer
  • the parameters of these function calls are nodes in the parse tree.
  • a single SQL statement may be comprised of multiple API function call statements that implement the SQL statement.
  • the parse trees for one function call are chained together. From block 54 , control transfers to block 32 et seq.
  • FIG. 3 illustrates a preferred embodiment of a parse tree 70 including the API runtime function calls for a SQL statement generated at block 54 by the compiler 8 .
  • the parse tree 70 is maintained as a linked list data structure in memory 4 .
  • the parse tree 70 chains all the parse trees for multiple API function calls for a SQL statement into one tree.
  • the parse tree 70 includes four root nodes 72 a, b, c, d for each component API function call for the SQL statement.
  • Each root node has a pointer to a lower node for a subcall and a pointer horizontally to the next root node, forming a chain of the parse trees that comprise the SQL statement.
  • FIG. 1 illustrates a preferred embodiment of a parse tree 70 including the API runtime function calls for a SQL statement generated at block 54 by the compiler 8 .
  • the parse tree 70 is maintained as a linked list data structure in memory 4 .
  • the parse tree 70 chains all the par
  • node 1 72 a points to an API function call SQLSTRT that initializes the runtime process.
  • Node 2 72 b points to an API function call SQLAALOC that allocates space to the database function call.
  • Node 3 72 c points to API function call SQLACALL that executes the call.
  • node 4 72 d points to SQLASTOP that terminates the runtime process.
  • Each of these function calls have different parameters that are child nodes to the function calls that are passed to the API function call when executed. The down pointers for the parameter nodes are null.
  • the compiler 8 walks through and optimizes all the parse trees in a manner known in the art to provide the shortest path in the parse tree. Control then transfers to block 56 where the compiler 8 generates target or object code 14 from the optimized parse tree.
  • the target code generated in the code generation phase may be the object code for the compiler 8 , executable code for the interpreter or assembly language code. Code generation comprises instruction selection, register selection, addressing modes, and object code optimization.
  • the object code may be machine dependent or machine independent or absolute machine code or relocatable machine code.
  • a package may also be created, which is the information a database program needs to process the SQL statements against the database when the program is executed. The package may be created during binding.
  • a database manager application uses the package to maintain a compiled version of the SQL statement and executes this compiled version when the program is executed.
  • the object code 14 is then linked and loaded in a manner known in the art.
  • the database program 10 is accessed to obtain the information requested through the compiled SQL statements.
  • the SQL statements are processed and parsed in the parse tree like any other host language statements with the API function calls generated directly into the parse trees.
  • An advantage of the logic of FIG. 2 is that the SQL function calls are parsed before being converted into object code.
  • object code generation is one of the most difficult tasks in language processing. For instance, a determination must be made as to how to assign registers and addressing modes, e.g., direct, indirect, immediate, doubly indirect, based indirect, etc. Further, machine dependent parameters must be isolated.
  • Preferred embodiments of the compiler and database program may be implemented as a method, apparatus or article of manufacture using standard programming and/or engineering techniques to produce software, firmware, hardware, or any combination thereof.
  • article of manufacture (or alternatively, “computer program product”) as used herein is intended to encompass one or more computer programs and data files accessible from one or more computer-readable devices, carriers, or media, such as a magnetic storage media, “floppy disk,” CD-ROM, a file server providing access to the programs via a network transmission line, holographic unit, etc.
  • the media may be in a transmittable format in route through a transmission line from one location to another.
  • the preferred embodiments were described with respect to embedded SQL statements. However, in alternative embodiments, the compilation method may apply to any embedded statements that are in a language different from the host language of the source code. Moreover, preferred SQL statements and compilation were described with respect to the IBM DB2 system. However, the preferred embodiments could apply to any type of source file and any database program and SQL statements that could be embedded within a source file.
  • parse tree structure that includes a separate parse tree for each function call and chaining the parse trees together for a single SQL program statement.
  • numerous parse tree data structures and rules of parse tree construction may be used to generate the parse trees for the API function calls and host language program statements. For instance, all the API function calls may be within a single parse tree as opposed to separate parse trees chained together.
  • alternative means may be used to link the nodes of the parse tree than that described herein.
  • preferred embodiments in accordance with the present invention provide a system and method for compiling a program.
  • a source program including program statements in a first computer language and embedded statements in a second computer language is processed.
  • a determination is made as to whether a program statement is in one of the first and second languages.
  • the statement is lexically scanned and parsed into a parse tree if the statement is in the first language. If the statement is in the second language, then the statement is lexically scanned. Then a plurality of function calls capable of executing the statement are accessed and translated into at least one parse tree.
  • the parsed statements are converted into target code.

Abstract

Disclosed is a system and method for compiling a program. A source program including program statements in a first computer language, such as C++, Fortran, Java, etc., and embedded statements in a second computer language, such as SQL, is processed. A determination is made as to whether a program statement is in one of the first and second languages. The statement is lexically scanned and parsed into a parse tree if the statement is in the first language. If the statement is in the second language, then the statement is lexically scanned. Then a plurality of function calls capable of executing the statement are accessed and translated to at least one parse tree. The parsed statements are converted into target code.

Description

    BACKGROUND OF THE INVENTION
  • 1. Field of the Invention [0001]
  • The present invention relates to a method and system for compiling a source code program in a host computer language including embedded program statements in a computer language different from the host computer language. [0002]
  • 2. Description of the Related Art [0003]
  • A computer source program is typically initially written in a high level computer language, also called source code, comprising descriptive statements of the actions the code will cause the computer to perform. High level computer languages include C++, FORTRAN, COBOL, JAVA™, etc. JAVA is a trademark of Sun Microsystems, Inc. A source program written in such a high level language must be converted into object or machine code, i.e., strings of zeros and ones, which the computer can execute to carry out the steps specified by the program. A compiler program is a computer program that receives as input source code and generates as output object code which may be loaded into the computer memory and executed. [0004]
  • The compiler processes the source code in phases. In the first phase, the lexical scanning phase, the compiler groups the characters of a source program into tokens, which are logically cohesive sequences of characters. During this lexical scanning phase, noise words such as comments and blanks are removed. Next, during a parsing phase, the syntax and semantics of the tokens are checked for errors. A parse tree phase follows where the source statements are converted into a parse tree which describes the syntactic structure of a source statement. A parse tree may be expressed as a syntax tree in which the operators appear as interior nodes and the operands of an operator are the children of the node for that operator. [0005]
  • The parsed tree may then be optimized in manners known in the art to develop the shortest linked lists providing a structure of the code. Another phase of a compiler is the generation of a symbol table. A symbol table is a data structure containing a record for identifiers, e.g., the names of variables, arrays, and functions, and the fields and attributes of identifiers. Next follows an error detection phase and thereafter the code generation phase where target code is generated from the optimized parse tree. The target code may be relocatable machine code or assembly code. The compilation process is described in “Compilers: Principles, Techniques and Tools,” by Alfred V. Aho, Ravi Sethi, and Jeffrey D. Ullman, (Addison-Wesley Publishing Co., March 1988), which publication is incorporated herein by reference in its entirety. [0006]
  • Oftentimes, a host language, e.g., C++, Java, Fortran, etc., includes embedded statements in another computer language. For instance, database systems and programs are often searched and accessed using Structured Query Language (SQL) statements. A source program could include such SQL statements to access a database from within the source program. However, SQL statements are in a substantially different format from programming statements in the host program language. To allow a programmer to include SQL statements in a source program in a different language, the SQL statements are often separately processed and compiled by a precompiler, also known as a language dependent compiler. A precompiler scans the source code for SQL statements and generates a separate modified source file for the SQL statements. This modified source file is a new version of the original source file including run-time API calls converted from the SQL statements. The modified source files and any additional source files that do not contain SQL statements are compiled using the appropriate host language compiler. The language compiler converts each modified source file into an object module. Precompiler programs to process SQL statements in source programs are described in U.S. Pat. No. 5,230,049, entitled “Program Source Code Translator, which patent is assigned to International Business Machines Corporation (“IBM”), the assignee of the present patent application, and which is incorporated herein by reference in its entirety. [0007]
  • There is a need in the art for an improved method and system for processing and compiling SQL statements embedded in a host language program. [0008]
  • SUMMARY OF THE PREFERRED EMBODIMENTS
  • To overcome the limitations in the prior art described above, preferred embodiments disclose a system and method for compiling a program. A source program including program statements in a first computer language and embedded statements in a second computer language is processed. A determination is made as to whether a program statement is in one of the first and second languages. The statement is lexically scanned and parsed into a parse tree if the statement is in the first language. If the statement is in the second language, then the statement is lexically scanned. Then a plurality of function calls capable of executing the statement are accessed and translated into at least one parse tree. The parsed statements are converted into target code. [0009]
  • In further embodiments, the same parse tree structure and parse tree rules are used to parse statements in the first and second languages. [0010]
  • In yet further embodiments, parse trees are optimized after generating parse trees for each statement in the source program. Code is then generated from the optimized parse trees. [0011]
  • In still further embodiments, the second language is SQL and the function calls are application programming interface (API) function calls. [0012]
  • Two-pass parsing systems employing a separate pre-compiler to generate an intermediate file for the embedded language statements are problematic because of the time required to generate the intermediate file of translated SQL statements, read the source code twice, and develop a precompiler to translate and handle the SQL statements. Further, such two-pass precompilers require the input source file be scanned and processed twice, one for precompilation and the other for translation. Second, the prior art precompiling methods require two copies of lexical scanners, one for the host source code and another for the SQL statements, i.e., the language dependent precompiler. Third, prior art compiling methods use two copies of source files, one with the original SQL statements and one from the precompiler generated modified source output. Fourth, precompilation systems increase the likelihood for error if the user changes statements in the modified source output. [0013]
  • Preferred embodiments provide an improved language processor because the SQL statements are converted to API function calls and then parsed in the same manner that statements in the first language are parsed in the parse tree before being converted into target code. In this way, the embedded language statements are subjected to the same optimization techniques applied to the host language. Instead of commenting out the SQL statements, inserting API function calls, and then generating a separate intermediate file, the preferred embodiments apply the parsing and parse tree to the API function calls. The language compiler then generates the parse tree and executes the function calls as if there are no SQL statements. [0014]
  • Thus, preferred embodiments eliminate the need for a separate precompiling program to process the SQL statements and eliminate the need to generate an intermediate file with the translated SQL statements. [0015]
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • Referring now to the drawings in which like reference numbers represents corresponding parts throughout: [0016]
  • FIG. 1 is a block diagram illustrating a software and hardware environment in which preferred embodiments of the present invention are implemented; [0017]
  • FIG. 2 illustrates logic implemented in the compiler to process embedded language statements in accordance with preferred embodiments of the present invention; and [0018]
  • FIG. 3 illustrates a parse tree parsing an embedded language statement in accordance with preferred embodiments of the present invention. [0019]
  • DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS
  • In the following description, reference is made to the accompanying drawings which form a part hereof, and which illustrate several embodiments of the present invention. It is understood that other embodiments may be utilized and structural and operational changes may be made without departing from the scope of the present invention. [0020]
  • Hardware and Software Environment
  • FIG. 1 illustrates a hardware and software environment in which preferred embodiments of the present invention are implemented. A [0021] computer 2 includes a memory 4. The computer 2 may be a personal computer, workstation, mainframe, etc operating under microprocessor control. The memory 4 includes an operating system 6, a compiler 8, and a database program 10. The memory 4 may be any suitable volatile memory known in the art, e.g., RAM, DRAM, SRAM, etc., or a combination of volatile and non-volatile memory, e.g., hard disk drives, to provide storage space for programs, whether they are being executed or not. If the memory 10 is comprised of volatile and non-volatile devices, then data and programs may be swapped between the volatile and non-volatile memory devices in a manner known in the art. Moreover, the memory 4 may be distributed throughout a network computing system, where the compiler 8 is in one memory area and the database program 10 is in another area within the distributed network. The operating system 6 may be any suitable operating system such as AIX®, OS/390™, UNIX®, OS/2®, MVS™, WINDOWS®, WINDOWS NT® etc. AIX, OS/390, MVS, and OS/2 are trademarks of IBM; WINDOWS and WINDOWS NT are registered trademarks of Microsoft Corporation; UNIX is a registered trademark licensed by the X/Open Company LTD. The compiler 8 includes compiler 8 includes features typically found in compiler products to process a program comprised of source code 12 and generate object code 14, and includes additional logic to implement preferred embodiments of the present invention. The database program 10 is capable of converting SQL statements into application programming interface (API) function calls, and may be any suitable database program which performs such functions, such as the IBM DB2® UNIVERSAL DATABASE which includes the DB2 precompiler services for converting SQL statements to API function calls. The IBM DB2 system for processing embedded SQL statements is described in IBM publication “Embedded SQL Programming Guide, Version 5,” publication no. S10J-8158-00 (Copyright IBM 1993, 1997), which publication is incorporated herein by reference in its entirety. DB2 UNIVERSAL DATABASE is a registered trademark of IBM.
  • A user controls [0022] computer 2 operations via a display 16, which may be any suitable display device known in the art, and an input means 18, which may be a keyboard, mouse, pen-stylus, voice activated input, etc.
  • The Compiler
  • In preferred embodiments, the code needed to parse and compile the SQL statements is included in the [0023] host language compiler 8. Thus, in preferred embodiments, there is no need for a separate pre-compiler to compile embedded statements in another language, e.g., SQL, separately from compiling the code in the host language. In preferred embodiments, the host language may utilize a context-free grammar or BNF (Bauckus-Naur Form) The grammar in the host compiler 8 is modified to support keywords, such as “EXEC SQL” which enables the compiler 8 lexical scanner to accept SQL statements starting with “EXEC SQL.” As soon as the compiler 8 processes the SQL statement, a semantic action routine is invoked to process the SQL statement.
  • SQL statements are represented by application programming interface (API) function calls. An example of API function calls that underlie various SQL statements used to access a server including the IBM DB2 database are described in IBM publication “IBM DB2 Universal Database API Reference (Version 5),” IBM publication no. S10J-8167-00 (Copyright IBM, 1993, 1997). [0024]
  • FIG. 2 illustrates logic implemented as software logic in the [0025] compiler 8 and database program 10 and executed by the computer 2 to convert a source file including SQL statements and host language statements into target object code 14. Control begins at block 20 which represents the compiler 8 processing a source code 12 file. Control transfers to block 22 where the lexical scanner component of the compiler 8 proceeds to the first line in the source program 12. Control then transfers to block 24 which is a decision block representing the lexical scanner determining whether the statement is an SQL statement. If so, control transfers to block 26; otherwise control transfers to block 28 which represents the compiler 8 performing the lexical scan of the statement and then generating a parse tree in a manner known in the art. In preferred embodiments the parse tree is implemented as a linked list with nodes chained together. Each node may include a node name and one down pointer pointing to the next node deeper in the tree, i.e., a child node, and another pointer having the address of a node at the same depth, i.e., a sibling node.
  • Control then transfers to block [0026] 30 where the compiler 8 adds variables in the statement to a symbol table together with attributes for the variable. The symbol table is a data structure maintained in memory 4. Control transfers to block 32 which is a decision block representing the compiler 8 determining whether there are any further lines of source code 12. If so, control transfers to block 34 to proceed to the next line and then to block 24 et seq. to compile such statement; otherwise, control transfers to block 36.
  • If the statement being processed at [0027] block 24 is an SQL statement, then at block 26 the compiler 8 calls a semantic action routine to perform lexical scanning on the SQL statement and generate tokens for the statement. Control then transfers to block 38 where the compiler 8 reads the characters of the SQL statement into a buffer, e.g., sql_stmt buffer, one at a time, removing any spaces. Control transfers to block 40 where the compiler 8 converts the SQL statement to an ASCII string. Control then transfers to block 42 to locate any host and indicator variables. At block 44, the compiler 8 inserts the located variables in the symbol table, along with any attributes. Control transfers to block 46 where the compiler 8 replaces the host and indicator variables with underscores; at block 48 the compiler 8 adds a space to the end of the SQL statement to accommodate the database program 10, e.g., the database precompiler services in DB2. Control then transfers to block 50 which represents the compiler 8 sending the host variables in the SQL statement to the database program 10, such as the database precompiler services in the IBM DB2 data base program, to generate API runtime function calls for the SQL statement and variables.
  • Control then transfers to block [0028] 52 which represents the database program 10 (database precompiler services) filling an array for the SQL statement with API runtime function calls. Control transfers to block 54 where the compiler 8 generates a parse tree with the API function calls obtained from the database program 10. The parameters of these function calls are nodes in the parse tree. A single SQL statement may be comprised of multiple API function call statements that implement the SQL statement. In preferred embodiments, the parse trees for one function call are chained together. From block 54, control transfers to block 32 et seq.
  • FIG. 3 illustrates a preferred embodiment of a parse tree [0029] 70 including the API runtime function calls for a SQL statement generated at block 54 by the compiler 8. The parse tree 70 is maintained as a linked list data structure in memory 4. The parse tree 70 chains all the parse trees for multiple API function calls for a SQL statement into one tree. The parse tree 70 includes four root nodes 72 a, b, c, d for each component API function call for the SQL statement. Each root node has a pointer to a lower node for a subcall and a pointer horizontally to the next root node, forming a chain of the parse trees that comprise the SQL statement. In the example of FIG. 3, node 1 72 a points to an API function call SQLSTRT that initializes the runtime process. Node 2 72 b points to an API function call SQLAALOC that allocates space to the database function call. Node 3 72 c points to API function call SQLACALL that executes the call. Finally, node 4 72 d points to SQLASTOP that terminates the runtime process. Each of these function calls have different parameters that are child nodes to the function calls that are passed to the API function call when executed. The down pointers for the parameter nodes are null. After generating the parse tree 70 chaining all the API function call components of the SQL statement, control transfers to block 32 et seq. to process any further lines of source code 12. Different SQL statements will have different API runtime function calls; more complex statements will require more nodes for additional function calls, whereas less complex SQL statements will require fewer nodes and function calls.
  • If there is no further source code, then at [0030] block 36 the compiler 8 walks through and optimizes all the parse trees in a manner known in the art to provide the shortest path in the parse tree. Control then transfers to block 56 where the compiler 8 generates target or object code 14 from the optimized parse tree. The target code generated in the code generation phase may be the object code for the compiler 8, executable code for the interpreter or assembly language code. Code generation comprises instruction selection, register selection, addressing modes, and object code optimization. The object code may be machine dependent or machine independent or absolute machine code or relocatable machine code. A package may also be created, which is the information a database program needs to process the SQL statements against the database when the program is executed. The package may be created during binding. A database manager application uses the package to maintain a compiled version of the SQL statement and executes this compiled version when the program is executed.
  • After the compile time ends, the [0031] object code 14 is then linked and loaded in a manner known in the art. During execution, the database program 10 is accessed to obtain the information requested through the compiled SQL statements.
  • With the logic of FIG. 2, the SQL statements are processed and parsed in the parse tree like any other host language statements with the API function calls generated directly into the parse trees. An advantage of the logic of FIG. 2 is that the SQL function calls are parsed before being converted into object code. Generally, generating object code is a more consuming and taxing task on system resources than parsing. In fact, object code generation is one of the most difficult tasks in language processing. For instance, a determination must be made as to how to assign registers and addressing modes, e.g., direct, indirect, immediate, doubly indirect, based indirect, etc. Further, machine dependent parameters must be isolated. The logic of FIG. 2, however, parses the SQL statements in the manner that the host language statements are parsed at the front end of compilation before generating code for the embedded SQL statements. In this way, the embedded SQL statements are processed in the same manner as the host language statements. Further, by parsing and lexically/semantically analyzing the SQL statements, the SQL statements are optimized in the same manner that the host language statements are optimized. Optimizing the compilation of the embedded SQL statements improves the efficiency of the code generation process. [0032]
  • Alternative Embodiments and Conclusions
  • This concludes the description of the preferred embodiments of the invention. The following describes some alternative embodiments for accomplishing the present invention. [0033]
  • Preferred embodiments of the compiler and database program may be implemented as a method, apparatus or article of manufacture using standard programming and/or engineering techniques to produce software, firmware, hardware, or any combination thereof. The term “article of manufacture” (or alternatively, “computer program product”) as used herein is intended to encompass one or more computer programs and data files accessible from one or more computer-readable devices, carriers, or media, such as a magnetic storage media, “floppy disk,” CD-ROM, a file server providing access to the programs via a network transmission line, holographic unit, etc. Moreover, the media may be in a transmittable format in route through a transmission line from one location to another. Of course, those skilled in the art will recognize many modifications may be made to this configuration without departing from the scope of the present invention. [0034]
  • The preferred embodiments were described with respect to embedded SQL statements. However, in alternative embodiments, the compilation method may apply to any embedded statements that are in a language different from the host language of the source code. Moreover, preferred SQL statements and compilation were described with respect to the IBM DB2 system. However, the preferred embodiments could apply to any type of source file and any database program and SQL statements that could be embedded within a source file. [0035]
  • The preferred embodiments were described with respect to a compiler and a database program including database precompiler services. In alternative embodiments, these functions may be combined in single program or in any combination of various programs. Moreover, the structure of the parse tree and information maintained therein may vary in alternative embodiments. [0036]
  • Preferred embodiments were described with respect to a parse tree structure that includes a separate parse tree for each function call and chaining the parse trees together for a single SQL program statement. However, those skilled in the art will appreciate that numerous parse tree data structures and rules of parse tree construction may be used to generate the parse trees for the API function calls and host language program statements. For instance, all the API function calls may be within a single parse tree as opposed to separate parse trees chained together. Moreover, alternative means may be used to link the nodes of the parse tree than that described herein. [0037]
  • In summary, preferred embodiments in accordance with the present invention provide a system and method for compiling a program. A source program including program statements in a first computer language and embedded statements in a second computer language is processed. A determination is made as to whether a program statement is in one of the first and second languages. The statement is lexically scanned and parsed into a parse tree if the statement is in the first language. If the statement is in the second language, then the statement is lexically scanned. Then a plurality of function calls capable of executing the statement are accessed and translated into at least one parse tree. The parsed statements are converted into target code. [0038]
  • The foregoing description of the preferred embodiments of the invention has been presented for the purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise form disclosed. Many modifications and variations are possible in light of the above teaching. It is intended that the scope of the invention be limited not by this detailed description, but rather by the claims appended hereto. The above specification, examples and data provide a complete description of the manufacture and use of the composition of the invention. Since many embodiments of the invention can be made without departing from the spirit and scope of the invention, the invention resides in the claims hereinafter appended. [0039]

Claims (25)

What is claimed is:
1. A method for compiling a program, comprising the steps of:
(a) processing a source program including program statements in a first computer language and embedded program statements in a second computer language;
(b) determining, for each program statement in the source program, whether a program statement is in one of the first computer language and the second computer language;
(c) lexically scanning and parsing the program statement into a parse tree in response to determining that the statement is in the first computer language;
(d) processing the program statement, after determining that the program statement is in the second computer language, by performing the steps of:
(i) lexically scanning the program statement;
(ii) accessing a plurality of function calls capable of executing the program statement; and
(iii) translating the function calls for the program statement into at least one parse tree; and
(e) converting the parse trees to target code.
2. The method of
claim 1
, wherein the same parse tree structure and rules of parse tree construction are used for program statements in the first and second computer languages.
3. The method of
claim 1
, wherein the second language is SQL and wherein the function calls are application programming interface (API) function calls that access data in a database program.
4. The method of
claim 3
, wherein the step of accessing the function calls for the program statement comprises the steps of:
passing variables and characters for the SQL statement to a database program, wherein the database program generates the API function calls for the SQL statement; and
receiving the API function calls for the SQL statement from the database program.
5. The method of
claim 1
, wherein there are a plurality of function calls for the program statement, wherein the step of parsing the function calls for the program statement in the parse tree comprises the steps of:
generating a root node for each function call accessed for the program statement;
generating a function call node that is a child to the root node and includes the function call;
generating at least one parameter node that is a child to the function call node including a parameter for the function call; and
generating a pointer from a parameter node to another parameter node when there is more than one parameter for the function call.
6. The method of
claim 5
, further comprising the step of generating a pointer in the root nodes that points to another root node of a function call for the program statement, thereby forming a chain of root nodes for the program statement.
7. The method of
claim 1
, wherein a plurality of parse trees are generated for the program statements in the first and second computer languages in the source program, further comprising the steps of:
optimizing the parse trees after generating parse trees for each program statement in the source program; and
generating code from the optimized parse trees.
8. A system for compiling a program, comprising:
(a) a processor;
(b) a memory area, accessible to the processor, including a source program including program statements in a first computer language and embedded program statements in a second computer language;
(c) program logic, executed by the processor for the program statements in the source program, comprising:
(i) means for determining whether a program statement is in one of the first computer language and the second computer language;
(ii) means for lexically scanning and parsing the program statement into a parse tree in response to determining that the statement is in the first computer language;
(iii) means for processing the program statement, after determining that the statement is in the second language, by lexically scanning the program statement, accessing a plurality of function calls capable of executing the program statement, and translating the function calls for the statement to at least one parse tree; and
(d) converting the statements in the parse tree to target code.
9. The system of
claim 8
, wherein the means for parsing program statements in the first and second computer languages into parse trees utilizes the same parse tree structures and rules of parse tree construction.
10. The system of
claim 8
, wherein the second computer language is SQL and wherein the function calls are application programming interface (API) function calls that access data in a database program.
11. The system of
claim 10
, wherein the means for accessing the function calls for the program statement comprises:
means for passing variables and characters for the SQL statement to a database program, wherein the database program generates the API function calls for the SQL statement; and
means for receiving the API function calls for the SQL statement from the database program.
12. The system of
claim 8
, wherein there are a plurality of function calls for the program statement, wherein the means for parsing the function calls for the program statement in the parse tree comprises:
means for generating a root node for each function call accessed for the program statement;
means for generating a node that is a child to the root including the function call;
means for generating at least one node that is a child to the function call node including a parameter for the function call; and
means for generating a pointer to a next parameter when there is more than one parameter for the function call.
13. The system of
claim 12
, further comprising means for generating a pointer in the root nodes that points to another root node of a function call for the program statement, thereby forming a chain of root nodes for the program statement.
14. The system of
claim 8
, wherein a plurality of parse trees are generated for the program statements in the first and second computer languages in the source program, wherein the program logic further comprises:
means for optimizing the parse trees after generating parse trees for the program statement in the source program; and
means for generating code from the optimized parse trees.
15. An article of manufacture for use in programming a computer system to compile a source program, the article of manufacture comprising computer readable storage media accessible to the computer system, wherein the computer readable storage media has at least one computer program embedded therein that causes the computer system to perform the steps of:
(a) processing a source program including program statements in a first computer language and embedded program statements in a second computer language;
(b) determining, for the program statements in the source program, whether a program statement is in one of the first computer language and the second computer language;
(c) lexically scanning and parsing the program statement into a parse tree in response to determining that the statement is in the first computer language;
(d) processing the program statement, after determining that the program statement is in the second computer language, by performing the steps of:
(i) lexically scanning the program statement;
(ii) accessing a plurality of function calls capable of executing the program statement; and
(iii) translating the function calls for the program statement to at least one parse tree; and
(e) converting the program statements in the parse tree to target code.
16. The article of manufacture of
claim 15
, wherein the same parse tree structure and rules of parse tree construction are used to parse program statements in the first and second computer languages.
17. The article of manufacture of
claim 15
, wherein the second language is SQL and wherein the function calls are application programming interface (API) function calls that access data in a database program.
18. The article of manufacture of
claim 17
, wherein the step of accessing the function calls for the program statement comprises the steps of:
passing variables and characters for the SQL statement to a database program, wherein the database program generates the API function calls for the SQL statement; and
receiving the API function calls for the SQL statement from the database program.
19. The article of manufacture of
claim 15
, wherein there are a plurality of function calls for the program statement, wherein the step of parsing the function calls for the program statement in the parse tree comprises the steps of:
generating a root node for each function call accessed for the program statement;
generating a function call node that is a child to the root including the function call;
generating at least one parameter node that is a child to the function call node including a parameter for the function call; and
generating a pointer to a next parameter when there is more than one parameter for the function call.
20. The article of manufacture of
claim 19
, further comprising the step of generating a pointer in the root nodes that points to another root node of a function call for the program statement, thereby forming a chain of root nodes for the program statement.
21. The article of manufacture of
claim 20
, wherein a plurality of parse trees are generated for the program statements in the first and second computer languages in the source program, further comprising the steps of:
optimizing the parse trees after generating parse trees for each program statement in the source program; and
generating code from the optimized parse trees.
22. A memory device storing data structures accessible to an application program for compiling a source program, wherein the source program is comprised of program statements in a first computer program language and embedded program statements in a second computer language, wherein the data structures comprise a plurality of parse trees that are processed to generate target code,
wherein program statements in the first computer language are parsed into at least one parse tree comprising:
(i) a root node;
(ii) an operator node that is a child to the root node including an operator for executing the program statement; and
(iii) an operand node that is a child node to the operator node comprising an operand for the operator; and
wherein program statements in the second computer language are parsed into at least one parse tree comprising:
(i) a root node for each function call for the program statement, wherein the program statement is executed by at least one function call;
(ii) a function call node including the function call that is a child node to the root node; and
(iii) at least one parameter node that is a child node to the function call, wherein the parameter node is a parameter passed to the function call.
23. The memory device of
claim 22
, wherein the same parse tree structure and rules of parse tree construction are used to parse program statements in the first and second computer languages.
24. The memory device of
claim 22
, wherein the second language is SQL and wherein the function calls are application programming interface (API) function calls that access data in a database program.
25. The memory device of
claim 22
, wherein the program statements in the second computer language are executed by a plurality of function calls, wherein the root node for the function calls include a pointer to another root node for a function call thereby forming a chain of root nodes for the program statement in the second computer language.
US09/162,965 1998-09-29 1998-09-29 Compilation of embedded language statements in a source code program Expired - Fee Related US6378126B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US09/162,965 US6378126B2 (en) 1998-09-29 1998-09-29 Compilation of embedded language statements in a source code program

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US09/162,965 US6378126B2 (en) 1998-09-29 1998-09-29 Compilation of embedded language statements in a source code program

Publications (2)

Publication Number Publication Date
US20010011371A1 true US20010011371A1 (en) 2001-08-02
US6378126B2 US6378126B2 (en) 2002-04-23

Family

ID=22587871

Family Applications (1)

Application Number Title Priority Date Filing Date
US09/162,965 Expired - Fee Related US6378126B2 (en) 1998-09-29 1998-09-29 Compilation of embedded language statements in a source code program

Country Status (1)

Country Link
US (1) US6378126B2 (en)

Cited By (33)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040002846A1 (en) * 2002-06-26 2004-01-01 Cray Inc. Transistor level verilog
US20080091978A1 (en) * 2006-10-13 2008-04-17 Stephen Andrew Brodsky Apparatus, system, and method for database management extensions
US20080270343A1 (en) * 2007-04-27 2008-10-30 Stephen Andrew Brodsky Processing database queries embedded in application source code from within integrated development environment tool
US20080270983A1 (en) * 2007-04-27 2008-10-30 Azadeh Ahadian Database connectivity and database model integration within integrated development environment tool
US20080319959A1 (en) * 2007-06-22 2008-12-25 International Business Machines Corporation Generating information on database queries in source code into object code compiled from the source code
US7509633B2 (en) 2004-12-16 2009-03-24 International Business Machines Corporation System and method for grid-based distribution of Java project compilation
US20110167088A1 (en) * 2010-01-07 2011-07-07 Microsoft Corporation Efficient immutable syntax representation with incremental change
US20120173855A1 (en) * 2010-12-31 2012-07-05 Zebra Imaging, Inc. Exception Transporting and Handling of Concurrent Exceptions
CN103077064A (en) * 2012-12-31 2013-05-01 北京配天大富精密机械有限公司 Method and interpretation device for analyzing and executing program language
US20130174130A1 (en) * 2011-12-29 2013-07-04 Michael Münster Method and system for executing a 3gl program and/or an assembler program within a 4gl runtime environment
US20140181798A1 (en) * 2012-12-20 2014-06-26 Oracle International Corporation Static analysis of pl/sql objects and sql queries
US20150095378A1 (en) * 2012-04-16 2015-04-02 Genesisone, Inc. Method for automated documentation of structured query language including workflow and data dependencies
WO2016133880A1 (en) * 2015-02-18 2016-08-25 Ab Initio Technology Llc Querying a data source on a network
US20160321045A1 (en) * 2015-04-28 2016-11-03 Microsoft Technology Licensing, Llc Compiler optimization of coroutines
US20170131983A1 (en) * 2015-11-11 2017-05-11 Oracle International Corporation Compiler optimized data model evaluation
CN106970802A (en) * 2017-04-25 2017-07-21 北京航天飞行控制中心 The method and device of integrated programming script in the language-specific of field
CN107357605A (en) * 2017-06-01 2017-11-17 北京趣拿软件科技有限公司 The method and apparatus for running installation file
US10039036B2 (en) * 2012-01-26 2018-07-31 Telefonaktiebolaget Lm Ericsson (Publ) Operation of a serving node in a network
US10437819B2 (en) 2014-11-14 2019-10-08 Ab Initio Technology Llc Processing queries containing a union-type operation
CN110471670A (en) * 2019-08-20 2019-11-19 杭州和利时自动化有限公司 A kind of compiler, Compilation Method and method for tracing and DCS controller
FR3082972A1 (en) * 2018-06-26 2019-12-27 Bull Sas PRE-COMPILER, PROGRAM DEVELOPMENT SYSTEM, PRE-COMPILATION METHOD AND CORRESPONDING COMPUTER PROGRAM
US10521427B2 (en) 2011-05-02 2019-12-31 Ab Initio Technology Llc Managing data queries
WO2020052092A1 (en) * 2018-09-10 2020-03-19 深圳市泰洲科技有限公司 Method and apparatus for automatically releasing code, computer device, and storage medium
US10620925B2 (en) * 2017-03-13 2020-04-14 Memsql, Inc. Code generation for queries in a database system
US20210042323A1 (en) * 2018-10-19 2021-02-11 Oracle International Corporation Language interoperable runtime adaptable data collections
CN112541002A (en) * 2020-12-09 2021-03-23 北京奇艺世纪科技有限公司 Program language conversion method, device, electronic equipment and storage medium
CN112860262A (en) * 2021-02-09 2021-05-28 上海商汤智能科技有限公司 Code analysis method and device, electronic equipment and storage medium
CN113238759A (en) * 2021-04-14 2021-08-10 西安电子科技大学 Interpretation system and method of Python-like programming language XD-M
US11093223B2 (en) 2019-07-18 2021-08-17 Ab Initio Technology Llc Automatically converting a program written in a procedural programming language into a dataflow graph and related systems and methods
CN113641745A (en) * 2021-08-18 2021-11-12 上海通联金融服务有限公司 Method for operating database across language platforms
US11334324B2 (en) 2019-11-08 2022-05-17 Software Ag Systems and/or methods for error-free implementation of non-java program code on special purpose processors
US11593369B2 (en) 2010-01-15 2023-02-28 Ab Initio Technology Llc Managing data queries
US11748074B2 (en) 2021-05-28 2023-09-05 Software Ag User exit daemon for use with special-purpose processor, mainframe including user exit daemon, and associated methods

Families Citing this family (55)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7779020B2 (en) * 2002-03-01 2010-08-17 International Business Machines Corporation Small-footprint applicative query interpreter method, system and program product
US6654953B1 (en) 1998-10-09 2003-11-25 Microsoft Corporation Extending program languages with source-program attribute tags
US7283991B1 (en) * 1999-03-11 2007-10-16 Microsoft Corporation Caching system for path search optimization
US7188168B1 (en) * 1999-04-30 2007-03-06 Pmc-Sierra, Inc. Method and apparatus for grammatical packet classifier
US7016951B1 (en) * 1999-04-30 2006-03-21 Mantech Ctx Corporation System and method for network security
US7185081B1 (en) * 1999-04-30 2007-02-27 Pmc-Sierra, Inc. Method and apparatus for programmable lexical packet classifier
US6725456B1 (en) * 1999-11-29 2004-04-20 Lucent Technologies Inc. Methods and apparatus for ensuring quality of service in an operating system
US8103526B1 (en) * 2000-03-07 2012-01-24 Insweb Corporation System and method for flexible insurance rating calculation
US7406680B1 (en) * 2000-06-01 2008-07-29 Siemens Communications, Inc. Method for adding extensions to the grammar for ASN.1 without modifying the basic compiler and code generator
US6629313B1 (en) * 2000-06-29 2003-09-30 Microsoft Corporation In-line database access statements without a pre-compiler
GB2366402A (en) * 2000-08-30 2002-03-06 Ibm Syntax validation using syntax trees
AU2002221268A1 (en) * 2000-10-13 2002-04-22 Cytaq, Inc. A system and method of translating a universal query language to sql
US6892205B1 (en) * 2001-02-28 2005-05-10 Oracle International Corporation System and method for pre-compiling a source cursor into a target library cache
US7757225B2 (en) * 2001-06-29 2010-07-13 Microsoft Corporation Linktime recognition of alternative implementations of programmed functionality
US20050086584A1 (en) * 2001-07-09 2005-04-21 Microsoft Corporation XSL transform
US7055143B2 (en) 2001-07-10 2006-05-30 Microsoft Corporation System and methods for providing a declarative syntax for specifying SOAP-based web services
US7251641B2 (en) * 2001-08-01 2007-07-31 It Liberator As Adjustable database runtime kernel
WO2003065634A2 (en) * 2002-02-01 2003-08-07 John Fairweather System and method for analyzing data
US7219338B2 (en) * 2003-03-25 2007-05-15 Microsoft Corporation Multi-language compilation
US7441237B2 (en) * 2003-03-25 2008-10-21 Microsoft Corporation System and method for extending a compiler through a composer
US7083080B2 (en) * 2003-10-17 2006-08-01 Mckenzie Dean A Mail delivery indicator assembly
US20050165746A1 (en) * 2004-01-13 2005-07-28 International Business Machines Corporation System, apparatus and method of pre-fetching data
US7765531B2 (en) * 2004-10-06 2010-07-27 Hewlett-Packard Development Company, L.P. Systems and methods for handling multiple static query modules for distinct environments
US7707561B2 (en) * 2005-02-15 2010-04-27 International Business Machines Corporation Apparatus, system, and method for converting data
US20060218102A1 (en) * 2005-03-25 2006-09-28 Microsoft Corporation Methods and apparatus for defining parameters for web based applications
US7702686B2 (en) * 2005-07-29 2010-04-20 Microsoft Corporation Retrieving and persisting objects from/to relational databases
US20070027905A1 (en) * 2005-07-29 2007-02-01 Microsoft Corporation Intelligent SQL generation for persistent object retrieval
US20070027849A1 (en) * 2005-07-29 2007-02-01 Microsoft Corporation Integrating query-related operators in a programming language
US7992140B2 (en) * 2005-07-29 2011-08-02 Microsoft Corporation Compiler supporting programs as data objects
US20070044083A1 (en) * 2005-07-29 2007-02-22 Microsoft Corporation Lambda expressions
US7685567B2 (en) * 2005-07-29 2010-03-23 Microsoft Corporation Architecture that extends types using extension methods
US20070028222A1 (en) * 2005-07-29 2007-02-01 Microsoft Corporation Free/outer variable capture
US8396041B2 (en) 2005-11-08 2013-03-12 Microsoft Corporation Adapting a communication network to varying conditions
US8381047B2 (en) 2005-11-30 2013-02-19 Microsoft Corporation Predicting degradation of a communication channel below a threshold based on data transmission errors
US8176468B2 (en) * 2005-12-01 2012-05-08 Cypress Semiconductor Corporation Multivariable transfer functions
US9063744B2 (en) * 2006-06-26 2015-06-23 Ca, Inc. Modifying a file written in a formal language
US8843906B1 (en) * 2006-10-16 2014-09-23 The Mathworks, Inc. Inferring data types from compiler call site
US8091070B2 (en) * 2007-01-08 2012-01-03 Microsoft Corporation Deep embedding of program languages
US8631497B1 (en) * 2007-02-01 2014-01-14 Mcafee, Inc. Systems and methods for automating blind detection of computational vulnerabilities
CN101246486B (en) 2007-02-13 2012-02-01 国际商业机器公司 Method and apparatus for improved process of expressions
US7953674B2 (en) * 2007-05-17 2011-05-31 Microsoft Corporation Fuzzing system and method for exhaustive security fuzzing within an SQL server
US8060868B2 (en) * 2007-06-21 2011-11-15 Microsoft Corporation Fully capturing outer variables as data objects
US8281290B2 (en) * 2007-06-22 2012-10-02 Alcatel Lucent Software diversity using context-free grammar transformations
US8473915B2 (en) * 2007-08-03 2013-06-25 International Business Machines Corporation Coverage analysis tool for testing database-aware software applications
US8276117B2 (en) * 2007-08-03 2012-09-25 International Business Machines Corporation Displaying and refactoring programs that include database statements
US20090182689A1 (en) * 2008-01-15 2009-07-16 Microsoft Corporation Rule-based dynamic operation evaluation
US20090271765A1 (en) * 2008-04-29 2009-10-29 Microsoft Corporation Consumer and producer specific semantics of shared object protocols
US8762962B2 (en) * 2008-06-16 2014-06-24 Beek Fund B.V. L.L.C. Methods and apparatus for automatic translation of a computer program language code
US8863101B2 (en) * 2008-12-10 2014-10-14 International Business Machines Corporation Compiler generator
US8881121B2 (en) * 2009-02-18 2014-11-04 International Business Machines Corporation Processing an object-oriented query to retrieve data from a data source
ES2704136T3 (en) 2009-09-30 2019-03-14 Tso3 Inc Sterilization method
US8739118B2 (en) 2010-04-08 2014-05-27 Microsoft Corporation Pragmatic mapping specification, compilation and validation
AU2014360106B2 (en) 2013-12-06 2019-05-23 Ab Initio Technology Llc Source code translation
CN105871922A (en) * 2016-06-13 2016-08-17 青岛海信传媒网络技术有限公司 Television fault locating method, business server and television
US10545742B2 (en) * 2017-09-06 2020-01-28 Nicira, Inc. Annotation-driven framework for generating state machine updates

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5230049A (en) 1988-11-29 1993-07-20 International Business Machines Corporation Program source code translator
US5339421A (en) * 1991-03-22 1994-08-16 International Business Machines Corporation General data stream parser for encoding and decoding data and program interface for same
US5504885A (en) 1993-06-29 1996-04-02 Texas Instruments Incorporated O-R gateway: a system for connecting object-oriented application programs and relational databases
US5680603A (en) * 1994-10-20 1997-10-21 International Business Machines Corporation Method and apparatus for reordering complex SQL queries containing inner and outer join operations
US5850550A (en) * 1995-08-31 1998-12-15 International Business Machine Corporation No preprocessor and a source level debugger for embedded SQL in a 3GL
US5956730A (en) * 1997-08-15 1999-09-21 International Business Machines Corporation Legacy subclassing
US5956725A (en) * 1997-11-26 1999-09-21 Interanational Business Machines Corporation Schema mapping to a legacy table with primary and foreign key support

Cited By (51)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7587305B2 (en) * 2002-06-26 2009-09-08 Cray Inc. Transistor level verilog
US20040002846A1 (en) * 2002-06-26 2004-01-01 Cray Inc. Transistor level verilog
US7509633B2 (en) 2004-12-16 2009-03-24 International Business Machines Corporation System and method for grid-based distribution of Java project compilation
US20080091978A1 (en) * 2006-10-13 2008-04-17 Stephen Andrew Brodsky Apparatus, system, and method for database management extensions
US10031830B2 (en) 2006-10-13 2018-07-24 International Business Machines Corporation Apparatus, system, and method for database management extensions
US9047337B2 (en) * 2007-04-27 2015-06-02 International Business Machines Corporation Database connectivity and database model integration within integrated development environment tool
US20080270343A1 (en) * 2007-04-27 2008-10-30 Stephen Andrew Brodsky Processing database queries embedded in application source code from within integrated development environment tool
US20080270983A1 (en) * 2007-04-27 2008-10-30 Azadeh Ahadian Database connectivity and database model integration within integrated development environment tool
US9489418B2 (en) * 2007-04-27 2016-11-08 International Business Machines Corporation Processing database queries embedded in application source code from within integrated development environment tool
US8145655B2 (en) * 2007-06-22 2012-03-27 International Business Machines Corporation Generating information on database queries in source code into object code compiled from the source code
US20080319959A1 (en) * 2007-06-22 2008-12-25 International Business Machines Corporation Generating information on database queries in source code into object code compiled from the source code
US10564944B2 (en) * 2010-01-07 2020-02-18 Microsoft Technology Licensing, Llc Efficient immutable syntax representation with incremental change
US20110167088A1 (en) * 2010-01-07 2011-07-07 Microsoft Corporation Efficient immutable syntax representation with incremental change
US11593369B2 (en) 2010-01-15 2023-02-28 Ab Initio Technology Llc Managing data queries
US20120173855A1 (en) * 2010-12-31 2012-07-05 Zebra Imaging, Inc. Exception Transporting and Handling of Concurrent Exceptions
US10521427B2 (en) 2011-05-02 2019-12-31 Ab Initio Technology Llc Managing data queries
US20130174130A1 (en) * 2011-12-29 2013-07-04 Michael Münster Method and system for executing a 3gl program and/or an assembler program within a 4gl runtime environment
US8910130B2 (en) * 2011-12-29 2014-12-09 Software Ag Method and system for executing a 3GL program and/or an assembler program within a 4GL runtime environment
US10039036B2 (en) * 2012-01-26 2018-07-31 Telefonaktiebolaget Lm Ericsson (Publ) Operation of a serving node in a network
US10375609B2 (en) 2012-01-26 2019-08-06 Telefonaktiebolaget Lm Ericsson (Publ) Operation of a serving node in a network
US20150095378A1 (en) * 2012-04-16 2015-04-02 Genesisone, Inc. Method for automated documentation of structured query language including workflow and data dependencies
US20140181798A1 (en) * 2012-12-20 2014-06-26 Oracle International Corporation Static analysis of pl/sql objects and sql queries
US9244982B2 (en) * 2012-12-20 2016-01-26 Oracle International Corporation Static analysis of PL/SQL objects and SQL queries
CN103077064A (en) * 2012-12-31 2013-05-01 北京配天大富精密机械有限公司 Method and interpretation device for analyzing and executing program language
US10437819B2 (en) 2014-11-14 2019-10-08 Ab Initio Technology Llc Processing queries containing a union-type operation
WO2016133880A1 (en) * 2015-02-18 2016-08-25 Ab Initio Technology Llc Querying a data source on a network
CN107257973A (en) * 2015-02-18 2017-10-17 起元技术有限责任公司 The data source inquired about on network
US10417281B2 (en) 2015-02-18 2019-09-17 Ab Initio Technology Llc Querying a data source on a network
EP3553670A1 (en) * 2015-02-18 2019-10-16 AB Initio Technology LLC Querying a data source on a network
AU2016220252B2 (en) * 2015-02-18 2021-02-25 Ab Initio Technology Llc Querying a data source on a network
US11308161B2 (en) 2015-02-18 2022-04-19 Ab Initio Technology Llc Querying a data source on a network
US20160321045A1 (en) * 2015-04-28 2016-11-03 Microsoft Technology Licensing, Llc Compiler optimization of coroutines
US10747511B2 (en) * 2015-04-28 2020-08-18 Microsoft Technology Licensing, Llc Compiler optimization of coroutines
US20170131983A1 (en) * 2015-11-11 2017-05-11 Oracle International Corporation Compiler optimized data model evaluation
US10048952B2 (en) * 2015-11-11 2018-08-14 Oracle International Corporation Compiler optimized data model evaluation
US10620925B2 (en) * 2017-03-13 2020-04-14 Memsql, Inc. Code generation for queries in a database system
CN106970802A (en) * 2017-04-25 2017-07-21 北京航天飞行控制中心 The method and device of integrated programming script in the language-specific of field
CN107357605A (en) * 2017-06-01 2017-11-17 北京趣拿软件科技有限公司 The method and apparatus for running installation file
FR3082972A1 (en) * 2018-06-26 2019-12-27 Bull Sas PRE-COMPILER, PROGRAM DEVELOPMENT SYSTEM, PRE-COMPILATION METHOD AND CORRESPONDING COMPUTER PROGRAM
EP3588274A1 (en) * 2018-06-26 2020-01-01 Bull Sas Pre compilation for embedded sql in cobol source code
WO2020052092A1 (en) * 2018-09-10 2020-03-19 深圳市泰洲科技有限公司 Method and apparatus for automatically releasing code, computer device, and storage medium
US20210042323A1 (en) * 2018-10-19 2021-02-11 Oracle International Corporation Language interoperable runtime adaptable data collections
US11593398B2 (en) * 2018-10-19 2023-02-28 Oracle International Corporation Language interoperable runtime adaptable data collections
US11093223B2 (en) 2019-07-18 2021-08-17 Ab Initio Technology Llc Automatically converting a program written in a procedural programming language into a dataflow graph and related systems and methods
CN110471670A (en) * 2019-08-20 2019-11-19 杭州和利时自动化有限公司 A kind of compiler, Compilation Method and method for tracing and DCS controller
US11334324B2 (en) 2019-11-08 2022-05-17 Software Ag Systems and/or methods for error-free implementation of non-java program code on special purpose processors
CN112541002A (en) * 2020-12-09 2021-03-23 北京奇艺世纪科技有限公司 Program language conversion method, device, electronic equipment and storage medium
CN112860262A (en) * 2021-02-09 2021-05-28 上海商汤智能科技有限公司 Code analysis method and device, electronic equipment and storage medium
CN113238759A (en) * 2021-04-14 2021-08-10 西安电子科技大学 Interpretation system and method of Python-like programming language XD-M
US11748074B2 (en) 2021-05-28 2023-09-05 Software Ag User exit daemon for use with special-purpose processor, mainframe including user exit daemon, and associated methods
CN113641745A (en) * 2021-08-18 2021-11-12 上海通联金融服务有限公司 Method for operating database across language platforms

Also Published As

Publication number Publication date
US6378126B2 (en) 2002-04-23

Similar Documents

Publication Publication Date Title
US6378126B2 (en) Compilation of embedded language statements in a source code program
US5339419A (en) ANDF compiler using the HPcode-plus compiler intermediate language
US5280613A (en) ANDF installer using the HPcode-Plus compiler intermediate language
US5675805A (en) Programming system for generating client and server programs from an undistributed application program
US5276881A (en) ANDF producer using the HPcode-Plus compiler intermediate language
US5586328A (en) Module dependency based incremental compiler and method
US7873958B2 (en) System and methods for providing versioning of software components in a computer programming language
US5367685A (en) Method and apparatus for resolving data references in generated code
US5854932A (en) Compiler and method for avoiding unnecessary recompilation
US5680622A (en) System and methods for quickly detecting shareability of symbol and type information in header files
JP4841118B2 (en) Software development infrastructure
US5230049A (en) Program source code translator
US5606697A (en) Compiler system for language processing program
US8458678B2 (en) Compiler supporting programs as data objects
US5408665A (en) System and methods for linking compiled code with extended dictionary support
US8352926B2 (en) Method and apparatus for a cross-platform translator from VB.net to java
US6484313B1 (en) Compiling and persisting of intermediate language code
US20060212847A1 (en) Type checker for a typed intermediate representation of object-oriented languages
US6286133B1 (en) Method and apparatus for strategic compilation of source programs into two or more target languages
US20070074185A1 (en) Identifier expressions
KR20080038306A (en) Nullable and late binding
Doolin et al. JLAPACK–compiling LAPACK Fortran to Java
Strawn Does APL really need run‐time parsing?
EP1785848A1 (en) Method and apparatus for semantic checking of program code
Graver The evolution of an object‐oriented compiler framework

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:TANG, MIN-MEI;REEL/FRAME:009496/0610

Effective date: 19980923

CC Certificate of correction
FPAY Fee payment

Year of fee payment: 4

REMI Maintenance fee reminder mailed
FPAY Fee payment

Year of fee payment: 8

REMI Maintenance fee reminder mailed
LAPS Lapse for failure to pay maintenance fees
STCH Information on status: patent discontinuation

Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362

FP Lapsed due to failure to pay maintenance fee

Effective date: 20140423