US20090089762A1 - Function call translation - Google Patents

Function call translation Download PDF

Info

Publication number
US20090089762A1
US20090089762A1 US12/252,460 US25246008A US2009089762A1 US 20090089762 A1 US20090089762 A1 US 20090089762A1 US 25246008 A US25246008 A US 25246008A US 2009089762 A1 US2009089762 A1 US 2009089762A1
Authority
US
United States
Prior art keywords
function
language
file
library
call
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.)
Abandoned
Application number
US12/252,460
Inventor
John T. Micco
William M. McKeeman
Brett Baker
Michael Karr
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.)
MathWorks Inc
Original Assignee
MathWorks Inc
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 MathWorks Inc filed Critical MathWorks Inc
Priority to US12/252,460 priority Critical patent/US20090089762A1/en
Assigned to THE MATHWORKS, INC. reassignment THE MATHWORKS, INC. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: BAKER, BRETT, KARR, MICHAEL, MCKEEMAN, WILLIAM M., MICCO, JOHN T.
Publication of US20090089762A1 publication Critical patent/US20090089762A1/en
Abandoned 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
    • G06F8/44Encoding
    • G06F8/447Target code generation

Definitions

  • This invention relates to function call translation.
  • Function call translation is one aspect of translating a program from one programming language (called the “source language”) to another programming language (called the “target language”).
  • source language programming language
  • target language another programming language
  • program translation each function call in the source language program is translated into a function call in the target language.
  • One way to perform the translation is to include a header file at the head of a source language program by use of a preprocessor directive.
  • a header file included at the head of a C program file can be used by a translator to translate the program file from C to Java.
  • the header file contains information defining a one-to-one mapping between C-functions and Java-functions
  • the translator uses the mapping information in the header file to generate the appropriate Java-function call.
  • the header file may contain a mapping from the C-function foo to the Java-function foo that indicates the correct calling sequence for the C-function to use when calling the Java-function.
  • the source program file contains a call to the C-function foo, say “foo(3, &a)”, the translator will convert the call to “foo(3, a)”.
  • a call to one of the source language functions is translated by processing the source language function as it is called, deriving information about the source language function on the fly, and using the derived information to generate a target language call to the function.
  • a source language program written in the MATLAB programming language contains multiple MATLAB-function calls to a function f2
  • the translator processes the source language code for function f2 to derive all the information (e.g., the declared number of formal inputs and outputs to function f2, the scope of function f2, the use of certain language features, such as variable argument lists or the nargout function) needed to generate a C-function call to the function f2.
  • the invention provides a method and apparatus, including a computer program apparatus, implementing techniques for processing a definition of a function associated with a first language to create description information about the function, the description information being sufficient to enable translation of a call to the function into a call to a corresponding function in a second language without requiring processing of the definition of the function.
  • the description information may be stored in a file of description items.
  • the definition of the function may be processed by examining the definition of the function associated with the first language; deriving information about the function; and using the derived information to translate the call to the function into a call to a corresponding function in the second language.
  • the derived information may be used to create the description information.
  • the translated function in the second language may be stored in a library of entries.
  • the definition of the function may be processed by deriving a number of declared formal inputs to the function; deriving a number of declared formal outputs to the function; deriving a scope of the function; determining whether the function accepts a variable number of arguments; and determining whether the function returns a variable number of results.
  • the invention provides a method and apparatus, including a computer program apparatus, implementing techniques for providing a file of description items, and using the file of description items to translate a first program file into a second program file.
  • Each item may include description information about a function associated with a first language, the description information being sufficient to enable translation of a call to the function into a call to a corresponding function in a second language without requiring processing of the definition of the function.
  • the description information about the function may include a descriptor identifying a declared number of formal inputs to the function; a descriptor identifying a declared number of formal outputs to the function; a descriptor identifying a scope of the function; a descriptor identifying an acceptance of a variable input argument list into the function; and a descriptor identifying a return of a variable output argument list from the function.
  • the techniques for using the file of description items may include retrieving an item from the file of description items for each call to a function in the first program file; using the description information in the item to translate the call to the function in the first language into a call to a corresponding function in the second language; and storing the translated function in the second program file.
  • a call may be generated through a function evaluation interface for the function if the description information includes a descriptor identifying an acceptance of a variable input argument list into the function, or a descriptor identifying a return of a variable output argument list from the function.
  • a call may be generated through a normal interface for the function if the description information includes a descriptor identifying a known number of input and output arguments to the function.
  • the invention provides a method and apparatus, including a computer program apparatus, implementing techniques for providing a library file; processing the library file to create a function library and a description file; and using the description file to translate a program file from the first language into the second language.
  • the library file may include functions defined by a first language.
  • the function library may include one or more functions defined by a second language, each function in the function library being a translated version of a function in the library file.
  • the description file may include description information about each function in the library file, the description information being sufficient to enable translation of a call to the function into a call to a corresponding function in the second language without requiring processing of the definition of the function.
  • Each call in the program file to a function in the library file may be translated into a call to a corresponding function in the second language by examining the definition of each function in the library file; deriving information about each function; and using the derived information to translate the call to each function into a call to a corresponding function in the second language.
  • the library description file contains all the relevant information required to generate target language calls to the functions in the target language library without requiring the source language code for the functions within the target language library to be available to the translator. Using the information in the library description file to generate a target language call to a function in the target language library is faster than deriving the required information each time the function is called.
  • FIGS. 1 , 2 , and 3 are flowcharts of the function call translation processes.
  • FIG. 1 shows a process implemented in a computer program application for creating a library description file 110 , and using the library description file 110 to translate a source file 104 into a target file 106 .
  • source code refers to program instructions written in a particular programming language.
  • source differentiates the code from other forms, for example, object code and executable code.
  • source code refers to program instructions in either a source language or a target language.
  • source language code will refer to source code in the source language and the term “target language code” will refer to source code in the target language.
  • a library description file 110 is a file that includes descriptions of functions that form part of the source language.
  • the library description file 110 is built incrementally as a library generation process 112 processes functions defined by a source language (called “source language functions”) in one or more library source files 108 to create a target language function library 102 .
  • the library description file 110 can be stored in any data format, such as ASCII.
  • the library description file 110 includes information 110 a about a source language function f2.
  • the description information 110 a includes the number of declared formal inputs and outputs to function f2, the scope of function f2, and all other information about function f2 required to translate a source language call to function f2 into a target language call to corresponding function.
  • a library source file 108 can be a stand-alone file, or one of multiple library source files associated with the function library 102 .
  • Each library source file 108 includes source language code that defines one or more functions.
  • the library source file 108 includes source language code 108 a that defines multiple source language functions, one of which is source language function f2.
  • the functions in the library source file 108 may call other functions that are defined by source language code located in the library source file 108 being processed, or in one of the multiple library source files associated with the function library 102 .
  • the library generation process 112 receives a library source file 108 including source language code 108 a defining one or more source language functions in step 202 .
  • the library generation process 112 processes each source language function in the library source file 108 by: (1) examining the source language function as it is called (step 204 ); (2) deriving information about the source language function that would enable the appropriate target language function call selection to be made (step 206 ); and (3) using the derived information to translate the source language function call into a corresponding target language function call (step 208 ).
  • the library generation process 112 also uses the derived information to create description information 110 a about the source language function (step 210 ). In one example of how to create the description information 110 , the library generation process 112 examines the source language code 108 a for the function f2:
  • the library generation process 112 is repeated at step 202 until description information 110 a for all of the source language functions in the library source file 108 has been created. Once this occurs, the library generation process 112 generates a function library 102 containing translated versions of the source language functions in the library source file 108 and a library description file 110 (step 212 ), and the library generation process 112 is terminated.
  • the application uses the library description file 110 to translate a source file 104 into a target file 106 without requiring the source language code found in the library source file 108 for the functions in the function library 102 to be available.
  • the source file 104 contains source language code 104 a for a program that has a function f1 that calls a function f2 twice: with two arguments directly f2(x,y) 104 b , and with a number of arguments not know at translation-time f2(args ⁇ : ⁇ ) 104 c .
  • the translation process 114 For each call 104 b and 104 c to the source language function f2 in the source file 104 , the translation process 114 retrieves the description information 110 a for function f2 from the library description file 110 , and uses the information to generate a call to a corresponding function in the target language without requiring the source language code 108 a for the function f2 to be available. In one implementation, the translation process 114 uses the following software algorithm to generate the translated function calls using the description information 110 a in the library description file 110 :
  • integer nin Declared number of formal inputs
  • integer nout Declared number of formal outputs
  • bool varargin_used Was the last input “varargin”
  • bool varargout_used Was the last output “varargout”
  • bool nargout_used Was the “nargout” function
  • term t The function call term after translation if !varargout_used && number_of_outputs > nout Error( “Too many outputs” ); end if !varargin_used && number_of_inputs > nin Error( “Too many inputs”); end if any input
  • mlfAssign (&q, mclFeval(mclValueVarargout( ), mlxF2, mclVe (mlfIndexRef(mclVsv(args, “args”), “ ⁇ ? ⁇ ”, mlfCreateColonIndex( ))), NULL)); as shown in FIG. 1 .
  • the source language is the MATLAB programming language and the target language is the C programming language.
  • the translation process 114 is not limited to translating files from the MATLAB programming language into the C programming language. Any combination of programming languages—e.g., MATLAB and C, MATLAB and C++, MATLAB and FORTRAN—subject to the following four conditions can be used:
  • the application includes a library source file selection process 300 that allows a user to designate which of the available source files 304 a , 304 b and 304 c is to be used to generate the function library 302 , as shown in FIG. 3 .
  • the application receives an input from a user selecting the source file A 304 a and the source file B 304 b as library source files 308 a and 308 b .
  • the application provides the library source files 308 a (containing the source language code in a source file A 304 a ) and 308 b (containing the source language code in source file B 304 b ) to a library generation process 112 .
  • the library generation process 112 processes the source language functions in the library source files 304 a and 304 b to create a function library 302 and a library description file 310 , much in the same manner as was described in reference to FIGS. 1 and 2 .
  • the translation process 112 then uses the library description file 310 to translate the non-library source file 308 c (that is, the source file that was not designated by the user as a library source file) into a target file 306 c , without requiring the source language code of the functions in the function library 302 to be available.

Abstract

Methods and apparatus for using description information about a function to translate a call to the function into a call to a corresponding function in a second language. The methods include processing a definition of a function associated with a first language to create description information sufficient to enable translation of a call to the function into a call to a corresponding function in a second language without requiring processing of the definition of the function. In another aspect, the methods include providing a description file of items, each item including description information about a function associated with a first language, and using the file of description items to translate a first program file from the first language into a second language. In another aspect, the methods include providing a library file including functions defined by a first language; processing the library file to create a function library and a description file, the function library including one or more functions defined by a second language, each function in the function library being a translated version of a function in the library file; and using the description file to translate a program file from the first language into the second language, where each call in the program file to a function in the library file is translated into a call to a corresponding function in the second language.

Description

    CROSS-REFERENCE TO RELATED APPLICATIONS
  • This application is a Continuation of U.S. patent application Ser. No. 09/911,819, filed on Jul. 24, 2001. The contents of the aforementioned Application are hereby incorporated by reference.
  • TECHNICAL FIELD
  • This invention relates to function call translation.
  • BACKGROUND
  • Function call translation is one aspect of translating a program from one programming language (called the “source language”) to another programming language (called the “target language”). In program translation, each function call in the source language program is translated into a function call in the target language.
  • One way to perform the translation is to include a header file at the head of a source language program by use of a preprocessor directive. For example, a header file included at the head of a C program file can be used by a translator to translate the program file from C to Java. If the header file contains information defining a one-to-one mapping between C-functions and Java-functions, when a C-function call in the source language program needs to be translated from C to Java, the translator uses the mapping information in the header file to generate the appropriate Java-function call. For example, the header file may contain a mapping from the C-function foo to the Java-function foo that indicates the correct calling sequence for the C-function to use when calling the Java-function. Then, if the source program file contains a call to the C-function foo, say “foo(3, &a)”, the translator will convert the call to “foo(3, a)”.
  • Another approach allows for a one-to-many correspondence between source language functions and target language functions. A call to one of the source language functions is translated by processing the source language function as it is called, deriving information about the source language function on the fly, and using the derived information to generate a target language call to the function. For example, if a source language program written in the MATLAB programming language (available as product model MATLAB 6 (Release 12) from The MathWorks, Inc.) contains multiple MATLAB-function calls to a function f2, each time a call to the function f2 needs to translated from MATLAB to C, the translator processes the source language code for function f2 to derive all the information (e.g., the declared number of formal inputs and outputs to function f2, the scope of function f2, the use of certain language features, such as variable argument lists or the nargout function) needed to generate a C-function call to the function f2.
  • SUMMARY
  • In general, in one aspect, the invention provides a method and apparatus, including a computer program apparatus, implementing techniques for processing a definition of a function associated with a first language to create description information about the function, the description information being sufficient to enable translation of a call to the function into a call to a corresponding function in a second language without requiring processing of the definition of the function.
  • The description information may be stored in a file of description items. The definition of the function may be processed by examining the definition of the function associated with the first language; deriving information about the function; and using the derived information to translate the call to the function into a call to a corresponding function in the second language. The derived information may be used to create the description information. The translated function in the second language may be stored in a library of entries. The definition of the function may be processed by deriving a number of declared formal inputs to the function; deriving a number of declared formal outputs to the function; deriving a scope of the function; determining whether the function accepts a variable number of arguments; and determining whether the function returns a variable number of results.
  • In general, in another aspect, the invention provides a method and apparatus, including a computer program apparatus, implementing techniques for providing a file of description items, and using the file of description items to translate a first program file into a second program file. Each item may include description information about a function associated with a first language, the description information being sufficient to enable translation of a call to the function into a call to a corresponding function in a second language without requiring processing of the definition of the function.
  • The description information about the function may include a descriptor identifying a declared number of formal inputs to the function; a descriptor identifying a declared number of formal outputs to the function; a descriptor identifying a scope of the function; a descriptor identifying an acceptance of a variable input argument list into the function; and a descriptor identifying a return of a variable output argument list from the function.
  • The techniques for using the file of description items may include retrieving an item from the file of description items for each call to a function in the first program file; using the description information in the item to translate the call to the function in the first language into a call to a corresponding function in the second language; and storing the translated function in the second program file. A call may be generated through a function evaluation interface for the function if the description information includes a descriptor identifying an acceptance of a variable input argument list into the function, or a descriptor identifying a return of a variable output argument list from the function. A call may be generated through a normal interface for the function if the description information includes a descriptor identifying a known number of input and output arguments to the function.
  • In general, in another aspect, the invention provides a method and apparatus, including a computer program apparatus, implementing techniques for providing a library file; processing the library file to create a function library and a description file; and using the description file to translate a program file from the first language into the second language.
  • The library file may include functions defined by a first language. The function library may include one or more functions defined by a second language, each function in the function library being a translated version of a function in the library file. The description file may include description information about each function in the library file, the description information being sufficient to enable translation of a call to the function into a call to a corresponding function in the second language without requiring processing of the definition of the function. Each call in the program file to a function in the library file may be translated into a call to a corresponding function in the second language by examining the definition of each function in the library file; deriving information about each function; and using the derived information to translate the call to each function into a call to a corresponding function in the second language.
  • Advantages of the invention may include one or more of the following. The library description file contains all the relevant information required to generate target language calls to the functions in the target language library without requiring the source language code for the functions within the target language library to be available to the translator. Using the information in the library description file to generate a target language call to a function in the target language library is faster than deriving the required information each time the function is called.
  • Other features and advantages of the invention will be apparent from the description and from the claims.
  • DESCRIPTION OF THE DRAWINGS
  • FIGS. 1, 2, and 3 are flowcharts of the function call translation processes.
  • DETAILED DESCRIPTION
  • FIG. 1 shows a process implemented in a computer program application for creating a library description file 110, and using the library description file 110 to translate a source file 104 into a target file 106.
  • Generally, the term “source code” refers to program instructions written in a particular programming language. The word “source” differentiates the code from other forms, for example, object code and executable code. The term “source code” refers to program instructions in either a source language or a target language. The term “source language code” will refer to source code in the source language and the term “target language code” will refer to source code in the target language.
  • A library description file 110 is a file that includes descriptions of functions that form part of the source language. The library description file 110 is built incrementally as a library generation process 112 processes functions defined by a source language (called “source language functions”) in one or more library source files 108 to create a target language function library 102. The library description file 110 can be stored in any data format, such as ASCII. In the example shown in FIG. 1, the library description file 110 includes information 110 a about a source language function f2. The description information 110 a includes the number of declared formal inputs and outputs to function f2, the scope of function f2, and all other information about function f2 required to translate a source language call to function f2 into a target language call to corresponding function.
  • A library source file 108 can be a stand-alone file, or one of multiple library source files associated with the function library 102. Each library source file 108 includes source language code that defines one or more functions. In the example shown in FIG. 1, the library source file 108 includes source language code 108 a that defines multiple source language functions, one of which is source language function f2. The functions in the library source file 108 may call other functions that are defined by source language code located in the library source file 108 being processed, or in one of the multiple library source files associated with the function library 102.
  • Referring to FIGS. 1 and 2, the library generation process 112 receives a library source file 108 including source language code 108 a defining one or more source language functions in step 202. The library generation process 112 processes each source language function in the library source file 108 by: (1) examining the source language function as it is called (step 204); (2) deriving information about the source language function that would enable the appropriate target language function call selection to be made (step 206); and (3) using the derived information to translate the source language function call into a corresponding target language function call (step 208). The library generation process 112 also uses the derived information to create description information 110 a about the source language function (step 210). In one example of how to create the description information 110, the library generation process 112 examines the source language code 108 a for the function f2:
  • function q = f2(a, b, c)
        if nargin == 2
          c = pi;
        end
      q = a+b+c;

    derives all the information (e.g., the declared number of formal inputs and outputs to function f2, the scope of function f2, the use of certain language features, such as variable argument lists or the nargout function) that the translation process 114 needs to understand what the function f2 means, and generates the following description information for function f2:
  • f2 { /* M function name */
      nin = 3; /* declared number of formal
    inputs */
      nout = 1; /* declared number of formal
    outputs */
      varargin_used = 0; /* last input was not “varargin” */
      varargout_used = 0; /* last output was not “varargout” */
      nargout_used = 0; /* “nargout” function was not
    called */
      scope = global; /* where function is defined */
      cname_normal = mlfF2; /* normal interface for function f2 */
      cname_feval = mlxF2; /* function evaluation interface for
    function f2 */
      }

    where the “nargout” function is used to specify the number of output arguments for function f2, the normal interface mlfF2 for function f2 is used when the number of actual input and output arguments for function f2 is known at translation-time, and the function evaluation interface mlxF2 for function f2 is used when the number of input and output arguments for function f2 is not computable at translation-time, for example, when using cell-list expansion.
  • The library generation process 112 is repeated at step 202 until description information 110 a for all of the source language functions in the library source file 108 has been created. Once this occurs, the library generation process 112 generates a function library 102 containing translated versions of the source language functions in the library source file 108 and a library description file 110 (step 212), and the library generation process 112 is terminated.
  • The application then uses the library description file 110 to translate a source file 104 into a target file 106 without requiring the source language code found in the library source file 108 for the functions in the function library 102 to be available. For example, as shown in FIG. 1, the source file 104 contains source language code 104 a for a program that has a function f1 that calls a function f2 twice: with two arguments directly f2(x,y) 104 b, and with a number of arguments not know at translation-time f2(args{:}) 104 c. For each call 104 b and 104 c to the source language function f2 in the source file 104, the translation process 114 retrieves the description information 110 a for function f2 from the library description file 110, and uses the information to generate a call to a corresponding function in the target language without requiring the source language code 108 a for the function f2 to be available. In one implementation, the translation process 114 uses the following software algorithm to generate the translated function calls using the description information 110 a in the library description file 110:
  • Inputs to the translation process:
        integer nin = Declared number of formal inputs
        integer nout = Declared number of formal outputs
        bool varargin_used = Was the last input “varargin”
        bool varargout_used = Was the last output “varargout”
        bool nargout_used = Was the “nargout” function called
        integer number_of_inputs = Number of action inputs
        term rhs [number_of_inputs] = Actual formal input expressions
        integer number_of_outputs = Actual number of outputs requested
        term lhs [number_of_outputs] = Actual lhs expressions
    Outputs of the translation process:
          term t = The function call term after translation
    if !varargout_used && number_of_outputs > nout
       Error( “Too many outputs” );
    end
    if !varargin_used && number_of_inputs > nin
       Error( “Too many inputs”);
    end
    if any input argument to the function produced an unknown number of formals
    (prior to the varargin argument)
       OR there is an unknown number of output arguments prior to the
    varargout argument
       Produce a call through feval to the mlx version of the function
          The arguments to mclFeval are:
            if number_of_outputs == 0
              add a call to “mclAnsVarargout( )”;
            else if number_of_outputs == 1
              add a call to “mclValueVarargout ( )”;
            else if number_of_outputs > 1
              add a call to “mclNVarargout( “ number_of_outputs ”,”
    varargout_used “,” lhs[...] “);”
            end
            add a reference to the mlx version of the function
            add all of the rhs[ ]argument term expressions
    else
       Produce a call directly to the mlf version of the function
          The arguments to the mlf function are:
            add each of the lhs arguments except the first output
          argument
            add a NULL for each unused input argument
            add each of the rhs arguments
          if varargin_used and number_of_inputs >= nin
            add any trailing arguments into varargin using mlfVarargin
          else
            add NULL arguments for each unspecified formal input
            argument.
          end
    end

    The C-function call—that is, the translated version of MATLAB-function call f2(x,y) 104 b—generated by the translation process 114 using the normal interface mlfF2 for the function is:
      • mlfAssign (&q, mlfF2(mclVv(x, “x”), mclVv(y, “y”), NULL));
        and the translated version of MATLAB-function call f2(args{:}) 104 c generated by the translation process 114 using the function evaluation interface mlxF2 for the function is:
  • mlfAssign (&q, mclFeval(mclValueVarargout( ), mlxF2,
       mclVe (mlfIndexRef(mclVsv(args, “args”), “{?}”,
       mlfCreateColonIndex( ))), NULL));

    as shown in FIG. 1. Once all of the calls in the source file 104 have been translated, the target file 106 is produced and the translation process 114 is terminated.
  • In one implementation, the source language is the MATLAB programming language and the target language is the C programming language. The translation process 114 is not limited to translating files from the MATLAB programming language into the C programming language. Any combination of programming languages—e.g., MATLAB and C, MATLAB and C++, MATLAB and FORTRAN—subject to the following four conditions can be used:
      • (1) Translation of a call to a function defined by the source language into a call to a corresponding function defined by the target language results in a one-to-many correspondence between the source language functions and the target language functions. For example, in the MATLAB programming environment, the single MATLAB-function f2 maps to two function in the C programming language, namely mlfF2 and mlxF2.
      • (2) A selection of one of the available target language functions has to be made based on information (e.g., the number of declared formal inputs and outputs to the function, the use of certain language features, such as variable argument lists or the nargout function) about the source language function being invoked, and the context of the call to that source language function. If, for example, the translation process 114 receives a source file containing a MATLAB-function call to function f2 as follows:
  • ...
    q = f2(3);
      •  the translation process 114 would retrieve the description information 110 a for function f2 from the library description file 110, examine the description information 110 a, and call the C-function mlfF2 (instead of C-function mlxF2) because the number of input arguments is known at translation-time. On the other hand, if the translation process 114 receives a source file containing a MATLAB-function call to function f2 as follows:
  • ...
    [q{:}] = f2(x,y,z);
      •  the translation process 114 would retrieve the description information 110 a for function f2 from the library description file 110, examine the description information 110 a, and call the C-function mlxF2 because the number of output arguments is not computable at translation-time.
      • (3) The information about the target language function required for determining which target language function to call cannot be derived solely from the target language function definitions. For example, in the MATLAB programming environment, the mlf( ) and mlx( ) functions do not contain all of the mapping information required to make the appropriate call selection. Without the function library, a translator would have to process the source language code for the function from the library source file 108 each time the function is called to obtain the information necessary to make the correct translation.
      • (4) The list of arguments passed to the target language function is determined based on information about the function being invoked and the target language function selected. In the example shown above, the application knows from the information in the description file for function f2 that it has to pass three arguments, not just one, to the function in order to call the C function as defined. In one example of how to pass additional arguments, the translation process 114 adds additional arguments (in the form of NULL arguments) in order to call the C function as defined. The result of the function call translation of f 2 (3) from MATLAB to C would be:
        • mlfF2 (mlfScalar(3.0), NULL, NULL);
  • In one implementation, the application includes a library source file selection process 300 that allows a user to designate which of the available source files 304 a, 304 b and 304 c is to be used to generate the function library 302, as shown in FIG. 3. Assume, for example, that the application receives an input from a user selecting the source file A 304 a and the source file B 304 b as library source files 308 a and 308 b. The application provides the library source files 308 a (containing the source language code in a source file A 304 a) and 308 b (containing the source language code in source file B 304 b) to a library generation process 112. The library generation process 112 processes the source language functions in the library source files 304 a and 304 b to create a function library 302 and a library description file 310, much in the same manner as was described in reference to FIGS. 1 and 2. The translation process 112 then uses the library description file 310 to translate the non-library source file 308 c (that is, the source file that was not designated by the user as a library source file) into a target file 306 c, without requiring the source language code of the functions in the function library 302 to be available.
  • Other embodiments are within the scope of the following claims.

Claims (1)

1. A method comprising:
processing a definition of a function associated with a first language to create description information about the function, the description information being sufficient to enable translation of a call to the function into a call to a corresponding function in a second language without requiring processing of the definition of the function.
US12/252,460 2001-07-24 2008-10-16 Function call translation Abandoned US20090089762A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US12/252,460 US20090089762A1 (en) 2001-07-24 2008-10-16 Function call translation

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US09/911,819 US7454746B2 (en) 2001-07-24 2001-07-24 Function call translation
US12/252,460 US20090089762A1 (en) 2001-07-24 2008-10-16 Function call translation

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US09/911,819 Continuation US7454746B2 (en) 2001-07-24 2001-07-24 Function call translation

Publications (1)

Publication Number Publication Date
US20090089762A1 true US20090089762A1 (en) 2009-04-02

Family

ID=25430907

Family Applications (2)

Application Number Title Priority Date Filing Date
US09/911,819 Expired - Lifetime US7454746B2 (en) 2001-07-24 2001-07-24 Function call translation
US12/252,460 Abandoned US20090089762A1 (en) 2001-07-24 2008-10-16 Function call translation

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US09/911,819 Expired - Lifetime US7454746B2 (en) 2001-07-24 2001-07-24 Function call translation

Country Status (1)

Country Link
US (2) US7454746B2 (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9081896B1 (en) * 2012-03-21 2015-07-14 Amazon Technologies, Inc. Generating a replacement binary for emulation of an application
US9672141B1 (en) 2015-11-25 2017-06-06 International Business Machines Corporation Generic language application programming interface interpreter

Families Citing this family (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7254816B2 (en) * 2003-05-05 2007-08-07 Microsoft Corporation Device driver conversion and creation
US7970779B2 (en) * 2003-09-12 2011-06-28 Oracle International Corporation Application interface including dynamic transform definitions
US7770158B2 (en) * 2004-10-14 2010-08-03 Bea Systems, Inc. Source code translator
US8621425B1 (en) * 2005-04-08 2013-12-31 The Mathworks, Inc. Generating code based at least on one or more output arguments designated as not being present
US7673289B1 (en) 2005-04-08 2010-03-02 The Mathworks, Inc. Ignoring output arguments of functions in programming environments
US7992140B2 (en) * 2005-07-29 2011-08-02 Microsoft Corporation Compiler supporting programs as data objects
US8079027B2 (en) * 2006-09-08 2011-12-13 Via Technologies, Inc. Programming language translation systems and methods
US8808521B2 (en) * 2010-01-07 2014-08-19 Boli Zhou Intelligent control system for electrochemical plating process
US9081626B2 (en) * 2010-05-03 2015-07-14 Renesas Electronics America Inc. Method and apparatus for converting software
WO2014078820A1 (en) * 2012-11-19 2014-05-22 Unisys Corporation Translating function calls in virtualized environments
WO2019241104A1 (en) * 2018-06-13 2019-12-19 Mz Ip Holdings, Llc System and method for enabling communication between disparate computer languages
CN110704154B (en) * 2019-10-12 2023-05-12 杭州行至云起科技有限公司 Multi-language template release method and system

Citations (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5097533A (en) * 1988-11-29 1992-03-17 International Business Machines Corporation System and method for interfacing computer application programs written in different languages to a software system
US5146593A (en) * 1989-03-06 1992-09-08 International Business Machines Corporation Procedure call interface
US5732270A (en) * 1994-09-15 1998-03-24 Visual Edge Software Limited System and method for providing interoperability among heterogeneous object systems
US5799192A (en) * 1993-06-11 1998-08-25 Mitsubishi Denki Kabushiki Kaisha Tool encapsulating method and apparatus thereof
US5842220A (en) * 1997-05-02 1998-11-24 Oracle Corporation Methods and apparatus for exposing members of an object class through class signature interfaces
US5889992A (en) * 1996-03-28 1999-03-30 Unisys Corp. Method for mapping types stored in a model in an object-oriented repository to language constructs for A C binding for the repository
US5995974A (en) * 1997-08-27 1999-11-30 Informix Software, Inc. Database server for handling a plurality of user defined routines (UDRs) expressed in a plurality of computer languages
US6151638A (en) * 1997-06-25 2000-11-21 Unisys Corp. System and method for performing external procedure calls from a client program to a server program to a server program and back to the client program while both are running in a heterogenous computer
US6230114B1 (en) * 1999-10-29 2001-05-08 Vast Systems Technology Corporation Hardware and software co-simulation including executing an analyzed user program
US6243856B1 (en) * 1998-02-03 2001-06-05 Amazing Media, Inc. System and method for encoding a scene graph
US20010034876A1 (en) * 1997-09-16 2001-10-25 Synetry Corporation System for converting hardware designs in high-level programming languages to hardware implementations
US20010037417A1 (en) * 2000-01-14 2001-11-01 Markus Meyer Method and system for dynamically dispatching function calls from a first execution environment to a second execution environment
US20020004934A1 (en) * 1998-07-15 2002-01-10 Michael J. Toutonghi Dynamic mapping of component interfaces
US6446137B1 (en) * 1996-01-10 2002-09-03 Sun Microsystems, Inc. Remote procedure call system and method for RPC mechanism independent client and server interfaces interoperable with any of a plurality of remote procedure call backends
US20040015898A1 (en) * 2001-03-26 2004-01-22 Tewksbary David E. Interface definition language compiler
US6691301B2 (en) * 2001-01-29 2004-02-10 Celoxica Ltd. System, method and article of manufacture for signal constructs in a programming language capable of programming hardware architectures
US20040243974A1 (en) * 2001-05-18 2004-12-02 Karel Gardas Method and system for generation of delegating implementation for IDL interfaces using inheritance
US6941556B1 (en) * 1995-03-24 2005-09-06 Sun Microsystems, Inc. Method and system for type identification for multiple object interfaces in a distributed object environment
US7035781B1 (en) * 1999-12-30 2006-04-25 Synopsys, Inc. Mixed language simulator
US7150010B1 (en) * 2000-07-06 2006-12-12 Microsoft Corporation Unification of a programming language and a definition language

Patent Citations (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5097533A (en) * 1988-11-29 1992-03-17 International Business Machines Corporation System and method for interfacing computer application programs written in different languages to a software system
US5146593A (en) * 1989-03-06 1992-09-08 International Business Machines Corporation Procedure call interface
US5799192A (en) * 1993-06-11 1998-08-25 Mitsubishi Denki Kabushiki Kaisha Tool encapsulating method and apparatus thereof
US5732270A (en) * 1994-09-15 1998-03-24 Visual Edge Software Limited System and method for providing interoperability among heterogeneous object systems
US6941556B1 (en) * 1995-03-24 2005-09-06 Sun Microsystems, Inc. Method and system for type identification for multiple object interfaces in a distributed object environment
US6446137B1 (en) * 1996-01-10 2002-09-03 Sun Microsystems, Inc. Remote procedure call system and method for RPC mechanism independent client and server interfaces interoperable with any of a plurality of remote procedure call backends
US5889992A (en) * 1996-03-28 1999-03-30 Unisys Corp. Method for mapping types stored in a model in an object-oriented repository to language constructs for A C binding for the repository
US5842220A (en) * 1997-05-02 1998-11-24 Oracle Corporation Methods and apparatus for exposing members of an object class through class signature interfaces
US6151638A (en) * 1997-06-25 2000-11-21 Unisys Corp. System and method for performing external procedure calls from a client program to a server program to a server program and back to the client program while both are running in a heterogenous computer
US5995974A (en) * 1997-08-27 1999-11-30 Informix Software, Inc. Database server for handling a plurality of user defined routines (UDRs) expressed in a plurality of computer languages
US20010034876A1 (en) * 1997-09-16 2001-10-25 Synetry Corporation System for converting hardware designs in high-level programming languages to hardware implementations
US6243856B1 (en) * 1998-02-03 2001-06-05 Amazing Media, Inc. System and method for encoding a scene graph
US20020004934A1 (en) * 1998-07-15 2002-01-10 Michael J. Toutonghi Dynamic mapping of component interfaces
US6230114B1 (en) * 1999-10-29 2001-05-08 Vast Systems Technology Corporation Hardware and software co-simulation including executing an analyzed user program
US7035781B1 (en) * 1999-12-30 2006-04-25 Synopsys, Inc. Mixed language simulator
US20010037417A1 (en) * 2000-01-14 2001-11-01 Markus Meyer Method and system for dynamically dispatching function calls from a first execution environment to a second execution environment
US7150010B1 (en) * 2000-07-06 2006-12-12 Microsoft Corporation Unification of a programming language and a definition language
US6691301B2 (en) * 2001-01-29 2004-02-10 Celoxica Ltd. System, method and article of manufacture for signal constructs in a programming language capable of programming hardware architectures
US20040015898A1 (en) * 2001-03-26 2004-01-22 Tewksbary David E. Interface definition language compiler
US20040243974A1 (en) * 2001-05-18 2004-12-02 Karel Gardas Method and system for generation of delegating implementation for IDL interfaces using inheritance

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9081896B1 (en) * 2012-03-21 2015-07-14 Amazon Technologies, Inc. Generating a replacement binary for emulation of an application
US20150317172A1 (en) * 2012-03-21 2015-11-05 Amazon Technologies, Inc. Generating a replacement binary for emulation of an application
US9778942B2 (en) * 2012-03-21 2017-10-03 Amazon Technologies, Inc. Generating a replacement binary for emulation of an application
US9672141B1 (en) 2015-11-25 2017-06-06 International Business Machines Corporation Generic language application programming interface interpreter

Also Published As

Publication number Publication date
US7454746B2 (en) 2008-11-18
US20030056203A1 (en) 2003-03-20

Similar Documents

Publication Publication Date Title
US20090089762A1 (en) Function call translation
US5875331A (en) System and method for generating target language code utilizing an object oriented code generator
EP0735467B1 (en) Compiler with generic front end and dynamically loadable back ends
EP0912934B1 (en) Method for transporting interface definition language-defined data structures between heterogeneous systems
US5732274A (en) Method for compilation using a database for target language independence
US5815719A (en) Method and apparatus for easy insertion of assembler code for optimization
JPS61103247A (en) Translation program generation system
US5842205A (en) Method and process of inter-machine communication and generalized method for program preparation therefor
JPH03171243A (en) Data stream correcting method
US7150010B1 (en) Unification of a programming language and a definition language
US7685581B2 (en) Type system for representing and checking consistency of heterogeneous program components during the process of compilation
US7472391B2 (en) Resource loader for applications that utilize relative uniform resource identifiers
US6546549B2 (en) Source code transformation process and recording medium
US8433729B2 (en) Method and system for automatically generating a communication interface
US5898874A (en) Dynamic codeset translation environment
EP0692115B1 (en) System for conversion of loop functions to continuation-passing style
US6708310B1 (en) Method and system for implementing user-defined codeset conversions in a computer system
JP2879099B1 (en) Abstract syntax tree processing method, computer readable recording medium recording abstract syntax tree processing program, computer readable recording medium recording abstract syntax tree data, and abstract syntax tree processing device
JP7059757B2 (en) API processing method, terminal, API processing program
US5628012A (en) Method and apparatus for querying a database containing disjunctive information
US7958330B2 (en) Compiler program, compiler program recording medium, compile method, and program processing system
JP3166699B2 (en) Object-oriented program design support apparatus, method, and recording medium
CN114238469B (en) Data extraction interface opening method and device, computer equipment and storage medium
JPH10207738A (en) Language processing system
JP3014409B2 (en) Natural language automatic translator

Legal Events

Date Code Title Description
AS Assignment

Owner name: THE MATHWORKS, INC., MASSACHUSETTS

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:MICCO, JOHN T.;MCKEEMAN, WILLIAM M.;BAKER, BRETT;AND OTHERS;REEL/FRAME:021689/0566

Effective date: 20010723

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION