JPH0540780A - Vectorizing processing system - Google Patents

Vectorizing processing system

Info

Publication number
JPH0540780A
JPH0540780A JP3197995A JP19799591A JPH0540780A JP H0540780 A JPH0540780 A JP H0540780A JP 3197995 A JP3197995 A JP 3197995A JP 19799591 A JP19799591 A JP 19799591A JP H0540780 A JPH0540780 A JP H0540780A
Authority
JP
Japan
Prior art keywords
character
relational expression
intermediate text
unit
integer type
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.)
Withdrawn
Application number
JP3197995A
Other languages
Japanese (ja)
Inventor
Osamu Nakanoya
修 仲野谷
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.)
NEC Solution Innovators Ltd
Original Assignee
NEC Solution Innovators Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by NEC Solution Innovators Ltd filed Critical NEC Solution Innovators Ltd
Priority to JP3197995A priority Critical patent/JPH0540780A/en
Publication of JPH0540780A publication Critical patent/JPH0540780A/en
Withdrawn legal-status Critical Current

Links

Abstract

PURPOSE:To shorten the execution time of a program in a vector processor by vectorizing a character relation formula which is not vectorized in a conventional system. CONSTITUTION:In a vectorizing part 22, a condition discriminating part 221 discriminates whether the character relation formula satisfies the condition or parallel execution or not. When it is discriminated by the condition discriminating part 221 that the character relation formula can be executed in parallel, a loop constituting part 222 regards character type elements of this formula as an integer type array and makes a loop, where the relation formula is executed by repeated comparison of individual elements of the integer type array, to constitute a second intermediate text 25.

Description

【発明の詳細な説明】Detailed Description of the Invention

【0001】[0001]

【産業上の利用分野】本発明は、ベクトル化処理方式に
関する。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a vectorization processing system.

【0002】[0002]

【従来の技術】従来、ベクトル演算機能を有するベクト
ルプロセッサには、文字型演算を直接実行するベクトル
命令は備えられておらず、文字関係式は、スカラ命令に
よって実行されていた。
2. Description of the Related Art Conventionally, a vector processor having a vector operation function is not provided with a vector instruction for directly executing a character type operation, and a character relational expression is executed by a scalar instruction.

【0003】[0003]

【発明が解決しようとする課題】ベクトル演算機能を有
するベクトルプロセッサにおいては、一般に、目的プロ
グラムのうちのベクトル命令によって実行される部分の
割合を大きくするほど、実行時間を短縮することができ
る。ところが、上述の従来技術では、文字関係式は、ベ
クトル化できず、スカラ命令で実行されているため、実
行時間を短縮できない。
In a vector processor having a vector operation function, generally, the larger the ratio of the portion of the object program executed by the vector instruction, the shorter the execution time can be made. However, in the above-described conventional technique, the character relational expression cannot be vectorized and is executed by the scalar instruction, so that the execution time cannot be shortened.

【0004】また、文字関係式を人手によって並列実行
に適合するように書き直すことにより、ベクトル化する
ことも可能であるが、書き直し可能な文字関係式の発見
やプログラムの書き直しに多大な時間を必要とする。更
に、書き直し時に、誤りを生むおそれがある。
It is also possible to vectorize the character relational expression by manually rewriting it so as to be suitable for parallel execution, but it takes a lot of time to find a rewritable character relational expression and rewrite a program. And Furthermore, there is a risk of making an error when rewriting.

【0005】[0005]

【課題を解決するための手段】本発明によるコンパイラ
のベクトル化処理方式は、ベクトル演算機能を有するベ
クトルプロセッサに対して、高級言語で書かれたソース
プログラムを読み込み、構文解析を行なって第一の中間
テキストを生成する構文解析部と、前記第一の中間テキ
ストから並列実行可能部分の認識を行ない、かつ第二の
中間テキストを生成するベクトル化部と、前記第二の中
間テキストから目的プログラムを生成して出力するコー
ド生成部とを有し、前記ベクトル化部が、文字関係式に
ついて並列実行可能な条件を満足するかどうかを判定す
る条件判定部と、前記条件判定部で並列実行可能と判定
された文字関係式について、文字型要素を整数型の配列
とみなし、かつ関係式を整数型の配列の一要素毎の比較
の繰り返しで実行するループとして前記第二の中間テキ
ストを構成することにより、文字関係式をベクトル化す
るループ構成部とを有している。
According to a vectorization processing method of a compiler of the present invention, a vector processor having a vector operation function is loaded with a source program written in a high-level language and a syntax analysis is performed to perform the first processing. A syntactic analysis unit that generates an intermediate text, a vectorization unit that recognizes a parallel executable portion from the first intermediate text, and generates a second intermediate text, and an object program from the second intermediate text. A code generation unit for generating and outputting, wherein the vectorization unit determines whether or not a condition for parallel execution of a character relational expression is satisfied, and the condition determination unit enables parallel execution. Regarding the determined character relational expression, the character type element is regarded as an integer type array, and the relational expression is executed by repeating the comparison for each element of the integer type array. That by configuring the second intermediate text as a loop, and a loop configuration unit for vectorizing the character relational expression.

【0006】[0006]

【実施例】次に、本発明の一実施例を示した図面を参照
して、より詳細に説明する。
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS Next, a more detailed description will be given with reference to the drawings showing an embodiment of the present invention.

【0007】図1を参照すると、本発明の一実施例にお
いて、コンパイラ2は、高級言語で書かれたソースプロ
グラム1を読み込み、構文解析を行なって第一の中間テ
キスト24を生成する構文解析部21と、第一の中間テ
キスト24から並列実行可能部分の認識を行ないかつ第
二の中間テキスト25を生成するベクトル化部22と、
第二の中間テキスト25から目的プログラム3を生成し
て出力するコード生成部23とから構成されている。
Referring to FIG. 1, in one embodiment of the present invention, a compiler 2 reads a source program 1 written in a high-level language and performs a syntax analysis to generate a first intermediate text 24. 21, a vectorization unit 22 that recognizes a parallel executable portion from the first intermediate text 24 and generates a second intermediate text 25;
The second intermediate text 25 is composed of a code generator 23 for generating and outputting the target program 3.

【0008】ベクトル化部22は、文字関係式に対して
並列実行可能な条件を満足するかどうかを判定する条件
判定部221と、条件判定部221で並列実行可能と判
定された文字関係式について文字型要素を整数型の配列
とみなし、かつ関係式を整数型の配列の一要素毎の比較
の繰り返しで実行するループとして第二の中間テキスト
25を構成するループ構成部222とを備えている。
The vectorization unit 22 determines a condition determining unit 221 that determines whether or not a condition for parallel execution of a character relational expression is satisfied, and a character relational expression that the condition determining unit 221 determines that parallel execution is possible. A loop configuration unit 222 that configures the second intermediate text 25 as a loop that regards the character type element as an integer type array and executes the relational expression by repeating the comparison of each element of the integer type array is provided. ..

【0009】コンパイラ2内の構文解析部21は、ソー
スプログラム1を読み込み第一の中間テキスト24を生
成する。例えば、図2に示したソースプログラムに対し
て図3に示した第一の中間テキストを生成する。ベクト
ル化部22は、第一の中間テキストを変更して図4のよ
うな第二の中間テキスト25を生成する。コード生成部
3は、第二の中間テキストから目的プログラム3を生成
して出力する。
The syntax analysis section 21 in the compiler 2 reads the source program 1 and generates a first intermediate text 24. For example, the first intermediate text shown in FIG. 3 is generated for the source program shown in FIG. The vectorization unit 22 changes the first intermediate text to generate the second intermediate text 25 as shown in FIG. The code generator 3 generates the target program 3 from the second intermediate text and outputs it.

【0010】ベクトル演算機能を有するベクトルプロセ
ッサに対するコンパイラは、図1に示すような構成をし
ており、与えられたソースプログラムを可能な限り並列
実行可能な形で目的プログラムに変換することが望まれ
る。しかし、図5のようなソースプログラムが与えられ
たとすると、これは、右辺が文字関係式である代入文の
ため、並列実行不可としてスカラ命令による順次実行を
余儀なくされていた。
A compiler for a vector processor having a vector operation function is constructed as shown in FIG. 1, and it is desired to convert a given source program into a target program in a form capable of parallel execution as much as possible. .. However, if a source program as shown in FIG. 5 is given, since this is an assignment statement whose right side is a character relational expression, parallel execution is prohibited and sequential execution by scalar instructions is forced.

【0011】本実施例においては、図5に示すような文
字関係式を含むソースプログラムが与えられた場合にお
いても、文字型要素を整数型の配列とみなし、かつ関係
式を整数型の配列の一要素毎の比較の繰り返しで実行す
るループとすることにより、並列実行可能な形で処理す
るようにしている。例えば、図5に示すプログラムで
は、図6に示すように、文字型変数CH1*256とC
H2*256を整数型配列1A(64)と1B(64)
とみなし、かつ関係式を1A(I)と1B(I)とが一
致するか否かを判定繰り返し数63のループ、および一
致するか否かの判定のついた繰り返し数を添字とする整
数型配列の比較で置き換えることにより、この文字関係
式を置き換えたループの部分がベクトル長62で並列実
行可能となる。
In this embodiment, even when a source program including a character relational expression as shown in FIG. 5 is given, the character type element is regarded as an integer type array, and the relational expression is expressed as an integer type array. By making the loop to be executed by repeating the comparison for each element, it is possible to process in a parallel executable form. For example, in the program shown in FIG. 5, as shown in FIG. 6, character type variables CH1 * 256 and C
H2 * 256 is an integer array 1A (64) and 1B (64)
And the relational expression determines whether 1A (I) and 1B (I) match, a loop of the number of repetitions 63, and an integer type whose subscript is the number of repetitions for which it is determined whether they match. By replacing the character relational expression, the loop portion can be executed in parallel with the vector length 62 by replacing the character relational expression.

【0012】図5のソースプログラムから図7に示す第
一の中間テキストが得られ、ベクトル化部22に入力さ
れ、文字関係式が認識されると、条件判定部221は次
の処理を行なう。
When the first intermediate text shown in FIG. 7 is obtained from the source program of FIG. 5 and is input to the vectorization unit 22 and the character relational expression is recognized, the condition determination unit 221 performs the following processing.

【0013】(1) 文字関係式に対する第一の中間テキス
トから、関係式のオペランド1とオペランド2の文字型
要素の長さを取り出す。オペランド1とオペランド2の
文字型要素の長さが等しく、かつその長さが整数型要素
の長さで割り切れれば、並列実行可能と判定する。長さ
が上記条件を満たさなければ、並列実行不可と判定す
る。本実施例では、整数型要素の一要素の長さを「4」
と仮定しており、並列実行可能と判定する。
(1) The lengths of the character type elements of the operand 1 and the operand 2 of the relational expression are extracted from the first intermediate text for the character relational expression. If the lengths of the character type elements of operand 1 and operand 2 are equal and the lengths are divisible by the length of the integer type element, it is determined that parallel execution is possible. If the length does not satisfy the above condition, it is determined that parallel execution is not possible. In this embodiment, the length of one element of the integer type element is “4”.
It is assumed that parallel execution is possible.

【0014】(2) 文字関係式に対する第一の中間テキス
トから、関係式の関係演算子を取り出す。関係演算子が
「.EQ.」と「.NE.」の場合は並列実行可能と判
定する。関係演算子が「.GT.」、「.G
E.」、「.LT.」および「.LE.」の大小比較を
行なう関係演算子の場合は、文字の大小比較を整数型の
一要素長で行なえる文字コード体系を使用するシステム
では、並列実行可能と判定する。文字の大小比較を整数
型の一要素長で行なえない文字コード体系を使用するシ
ステムでは、並列実行不可と判定する。本実施例では、
文字の大小比較を整数型の一要素長で行なえる文字コー
ド体系を使用するシステムであることを仮定しており、
関係演算子「.GT.」では並列実行可能と判定する。
(2) The relational operator of the relational expression is extracted from the first intermediate text for the character relational expression. When the relational operators are “.EQ.” And “.NE.”, It is determined that parallel execution is possible. Relational operators are ".GT.", ".G.
E. , ". LT." And ".LE." For relational operators that perform size comparison, in a system that uses a character code system that can perform character size comparison with one element length of integer type, parallel execution Judge as possible. It is determined that parallel execution is not possible in a system that uses a character code system that cannot compare the size of characters with an integer type element length. In this example,
It is assumed that the system uses a character code system that can compare the size of characters with one element length of integer type.
The relational operator “.GT.” Determines that parallel execution is possible.

【0015】条件判定部221では、並列実行可能と判
定された文字関係式に対して、ループ構成部222は次
の処理を行なう。
In the condition determination unit 221, the loop construction unit 222 performs the following processing on the character relational expression determined to be executable in parallel.

【0016】(1) オペランド1、オペランド2の文字型
要素について第一の整数型配列、第二の整数型配列を作
成し、文字型要素と結合する。ここで作成する整数型配
列の次元数は、「文字型要素の次元数+1」であり、そ
の追加する次元の寸法は、「文字型要素の長さ/整数型
要素の一要素の長さ」である。本実施例では、整数型配
列の次元数は「1」、寸法は「64」である。
(1) A first integer type array and a second integer type array are created for the character type elements of operand 1 and operand 2 and are combined with the character type elements. The number of dimensions of the integer type array created here is "the number of dimensions of the character type element + 1", and the dimension of the added dimension is "the length of the character type element / the length of one element of the integer type element". Is. In this embodiment, the number of dimensions of the integer type array is "1" and the dimension is "64."

【0017】(2) 整数型配列が一致するか否かを判定す
る部分を、ベクトル長が「(整数型要素の長さ)/整数
型要素の長さ)−1」となるように、第二の中間テキス
トを作成する。本実施例では、ベクトル長は「63」と
なる。
(2) The part for determining whether or not the integer type arrays match is determined so that the vector length becomes "(length of integer type element) / length of integer type element-1". Create the second intermediate text. In this embodiment, the vector length is "63".

【0018】(3) 第一の整数型変数を作成し、整数型配
列が一致するか否かの判定のついた繰り返し数を格納す
る第二の中間テキストを作成する。
(3) A first integer type variable is created, and a second intermediate text for storing the number of repetitions with a judgment as to whether or not the integer type arrays match is created.

【0019】(4) 第一の論理型変数を作成し、第一の整
数型変数を添字とする整数型配列で元の文字関係式の文
字型要素を置き換えた関係式の結果を第一の論理型変数
へ格納する第二の中間テキストを作成する。
(4) The first logical type variable is created, and the result of the relational expression in which the character type element of the original character relational expression is replaced by the integer type array whose subscript is the first integer type variable is Create a second intermediate text to store in a boolean variable.

【0020】(5) 元の関係式を第一の論理型変数で置き
換えた第二の中間テキストを作成する。
(5) A second intermediate text is created by replacing the original relational expression with the first logical variable.

【0021】本実施例では、ループ構成部222により
図8に示す第二の中間テキストが得られ、文字関係式の
整数型配列が一致するか否かを判定する部分がベクトル
長「63」のベクトル命令により実行される。
In the present embodiment, the loop construction unit 222 obtains the second intermediate text shown in FIG. 8, and the portion for determining whether or not the integer type arrays of the character relational expression match is the vector length "63". It is executed by vector instructions.

【0022】以上のように、本実施例においては、文字
関係式をベクトル化することができる。
As described above, in this embodiment, the character relational expression can be vectorized.

【0023】[0023]

【発明の効果】以上説明したように、本発明において
は、従来ベクトル化していなかった文字関係式をベクト
ル化できるため、ベクトルプロセッサにおいてプログラ
ムの実行時間を短縮することができる。
As described above, according to the present invention, the character relational expression which has not been vectorized can be vectorized, so that the execution time of the program can be shortened in the vector processor.

【図面の簡単な説明】[Brief description of drawings]

【図1】本発明の一実施例に使用されるコンパイラの機
能ブロック図である。
FIG. 1 is a functional block diagram of a compiler used in an embodiment of the present invention.

【図2】ソースプログラムの一例を示す図である。FIG. 2 is a diagram showing an example of a source program.

【図3】図2に示したソースプログラムに対する第一の
中間テキストを示す図である。
FIG. 3 is a diagram showing a first intermediate text for the source program shown in FIG.

【図4】図2に示したソースプログラムに対する第二の
中間テキストを示す図である。
FIG. 4 is a diagram showing a second intermediate text for the source program shown in FIG.

【図5】ソースプログラムの他の例を示す図である。FIG. 5 is a diagram showing another example of a source program.

【図6】図5に示したソースプログラムを変形すること
で文字関係式を並列実行可能にできることを示す図であ
る。
6 is a diagram showing that the relational expressions can be executed in parallel by modifying the source program shown in FIG.

【図7】図5に示したソースプログラムに対する第一の
中間テキストを示す図である。
FIG. 7 is a diagram showing a first intermediate text for the source program shown in FIG. 5;

【図8】図5に示したソースプログラムに対する第二の
中間テキストを示す図である。
8 is a diagram showing a second intermediate text for the source program shown in FIG. 5. FIG.

【符号の説明】 1 ソースプログラム 2 コンパイラ 3 目的プログラム 21 構文解析部 22 ベクトル化部 23 コード生成部 24 第一の中間テキスト 25 第二の中間テキスト 221 条件判定部 222 ループ構成部[Description of Codes] 1 source program 2 compiler 3 target program 21 syntax analysis unit 22 vectorization unit 23 code generation unit 24 first intermediate text 25 second intermediate text 221 condition determination unit 222 loop configuration unit

Claims (3)

【特許請求の範囲】[Claims] 【請求項1】 ベクトル演算機能を有するベクトルプロ
セッサに対して、高級言語で書かれたソースプログラム
を読み込み、構文解析を行なって第一の中間テキストを
生成する構文解析部と、 前記第一の中間テキストから並列実行可能部分の認識を
行ない、かつ第二の中間テキストを生成するベクトル化
部と、 前記第二の中間テキストから目的プログラムを生成して
出力するコード生成部とを有するコンパイラのベクトル
化処理方式において、 前記ベクトル化部が、 文字関係式について並列実行可能な条件を満足するかど
うかを判定する条件判定部と、 前記条件判定部で並列実行可能と判定された文字関係式
について、文字型要素を整数型の配列とみなし、かつ関
係式を整数型の配列の一要素毎の比較の繰り返しで実行
するループとして前記第二の中間テキストを構成するこ
とにより、文字関係式をベクトル化するループ構成部と
を有することを特徴とするベクトル化処理方式。
1. A syntax analysis unit for reading a source program written in a high-level language and performing syntax analysis to generate a first intermediate text for a vector processor having a vector operation function; Vectorization by a compiler having a vectorization unit that recognizes parallel executable parts from text and generates a second intermediate text, and a code generation unit that generates and outputs an object program from the second intermediate text In the processing method, the vectorization unit is a condition determination unit that determines whether or not a condition for parallel execution of a character relational expression is satisfied, and a character relational expression that is determined to be parallel executable by the condition determination unit. As a loop that regards the type element as an integer type array and executes the relational expression by repeating the comparison of each element of the integer type array By configuring the second intermediate text, vector processing method characterized by having a loop configuration unit for vectorizing the character relational expression.
【請求項2】 前記条件判定部が、 文字関係式に対する第一の中間テキストから、関係式の
第一のオペランドと第二のオペランドの文字型要素の長
さを取り出し、第一および第二のオペランドの文字型要
素の長さが等しくかつその長さが整数型要素の長さで割
り切れれば、並列実行可能と判定することを特徴とする
請求項1記載のベクトル化処理方式。
2. The condition determination unit extracts the lengths of the character-type elements of the first operand and the second operand of the relational expression from the first intermediate text for the character relational expression, 2. The vectorization processing method according to claim 1, wherein if the lengths of the character type elements of the operands are equal and the lengths are divisible by the lengths of the integer type elements, it is determined that parallel execution is possible.
【請求項3】 前記条件判定部が、 文字関係式に対する第一の中間テキストから、関係式の
関係演算子を取り出し、関係演算子が大小比較を行なう
関係演算子の場合は、文字の大小比較を整数型の一要素
長で行なえる文字コード体系を使用するシステムでは、
並列実行可能と判定し、文字の大小比較を整数型の一要
素長で行なえない文字コード体系を使用するシステムで
は、並列実行不可と判定することを特徴とする請求項2
記載のベクトル化方式。
3. The condition comparison unit extracts the relational operator of the relational expression from the first intermediate text for the character relational expression, and if the relational operator is a relational operator performing a magnitude comparison, character size comparison is performed. In a system that uses a character encoding system that can perform
3. A system that uses a character code system that determines that parallel execution is possible and does not compare the size of characters with an integer type element length, determines that parallel execution is not possible.
The described vectorization method.
JP3197995A 1991-08-07 1991-08-07 Vectorizing processing system Withdrawn JPH0540780A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP3197995A JPH0540780A (en) 1991-08-07 1991-08-07 Vectorizing processing system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP3197995A JPH0540780A (en) 1991-08-07 1991-08-07 Vectorizing processing system

Publications (1)

Publication Number Publication Date
JPH0540780A true JPH0540780A (en) 1993-02-19

Family

ID=16383764

Family Applications (1)

Application Number Title Priority Date Filing Date
JP3197995A Withdrawn JPH0540780A (en) 1991-08-07 1991-08-07 Vectorizing processing system

Country Status (1)

Country Link
JP (1) JPH0540780A (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1754725A2 (en) 2005-08-17 2007-02-21 Nippon Shokubai Co.,Ltd. Production method of water-absorbent resin, water-absorbent resin, and usage of water-absorbent resin
US7960469B2 (en) 2003-06-24 2011-06-14 Nippon Shokubai Co., Ltd. Water absorbent resin composition and production method thereof
US9062140B2 (en) 2005-04-07 2015-06-23 Nippon Shokubai Co., Ltd. Polyacrylic acid (salt) water-absorbent resin, production process thereof, and acrylic acid used in polymerization for production of water-absorbent resin
US9090718B2 (en) 2006-03-24 2015-07-28 Nippon Shokubai Co., Ltd. Water-absorbing resin and method for manufacturing the same
WO2017119378A1 (en) * 2016-01-04 2017-07-13 日本電気株式会社 Program conversion device, program conversion method, and recording medium having program for program conversion recorded therein

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7960469B2 (en) 2003-06-24 2011-06-14 Nippon Shokubai Co., Ltd. Water absorbent resin composition and production method thereof
US9062140B2 (en) 2005-04-07 2015-06-23 Nippon Shokubai Co., Ltd. Polyacrylic acid (salt) water-absorbent resin, production process thereof, and acrylic acid used in polymerization for production of water-absorbent resin
EP1754725A2 (en) 2005-08-17 2007-02-21 Nippon Shokubai Co.,Ltd. Production method of water-absorbent resin, water-absorbent resin, and usage of water-absorbent resin
EP2287215A2 (en) 2005-08-17 2011-02-23 Nippon Shokubai Co., Ltd. Production method of water-absorbent resin, water-absorbent resin and usage of water-absorbent resin
US9090718B2 (en) 2006-03-24 2015-07-28 Nippon Shokubai Co., Ltd. Water-absorbing resin and method for manufacturing the same
WO2017119378A1 (en) * 2016-01-04 2017-07-13 日本電気株式会社 Program conversion device, program conversion method, and recording medium having program for program conversion recorded therein
US10824407B2 (en) 2016-01-04 2020-11-03 Nec Corporation Program conversion device, program conversion method, and non-transitory recording medium having program conversion program recorded therein

Similar Documents

Publication Publication Date Title
Whigham Inductive bias and genetic programming
US20060075305A1 (en) Method and system for source-code model-based testing
CN110149800A (en) It is a kind of for handling the device of abstract syntax tree associated with the source code of source program
JPH0795274B2 (en) Array subscript analysis method
Fauth et al. Automated generation of DSP program development tools using a machine description formalism
JPH05189472A (en) Vectorization processing system for compiler
JPH0540780A (en) Vectorizing processing system
Siek Essentials of compilation: An incremental approach in racket
Blindell Survey on instruction selection: An extensive and modern literature review
Siek Essentials of Compilation
Aronsson et al. Meta Programming and Function Overloading in OpenModelica
JPH06290206A (en) Vectorization systen
JPH04220727A (en) Vectorization processing system
Olsson The art of writing specifications for the ADATE automatic programming system
Ulle Source Code Analysis and Type Inference for R
Pit-Claudel Relational compilation: Functional-to-imperative code generation for performance-critical applications
Rababaah A New Simple Programming Language for Education
JP2956591B2 (en) Method and apparatus for parallelizing a loop having a conditional jump out of the loop
Saraiva et al. Expressing disambiguation filters as combinators
Koppel et al. Automatically deriving control-flow graph generators from operational semantics
Gregor et al. Using LLVM-based JIT compilation in genetic programming
Jeffery Build Your Own Programming Language: A programmer's guide to designing compilers, interpreters, and DSLs for solving modern computing problems
Hjort Blindell et al. Tree Covering
EP3246837A1 (en) Method to generate special purpose virtual machines
Chalmers et al. SMEIL: A Domain-Specific Language for Synchronous Message Exchange Networks

Legal Events

Date Code Title Description
A300 Withdrawal of application because of no request for examination

Free format text: JAPANESE INTERMEDIATE CODE: A300

Effective date: 19981112