JPH08305579A - Compiler processing system - Google Patents

Compiler processing system

Info

Publication number
JPH08305579A
JPH08305579A JP10498195A JP10498195A JPH08305579A JP H08305579 A JPH08305579 A JP H08305579A JP 10498195 A JP10498195 A JP 10498195A JP 10498195 A JP10498195 A JP 10498195A JP H08305579 A JPH08305579 A JP H08305579A
Authority
JP
Japan
Prior art keywords
compiler
branch
instruction
program
object program
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.)
Pending
Application number
JP10498195A
Other languages
Japanese (ja)
Inventor
Satoshi Itsukida
諭 五木田
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.)
Panasonic Holdings Corp
Original Assignee
Matsushita Electric Industrial Co 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 Matsushita Electric Industrial Co Ltd filed Critical Matsushita Electric Industrial Co Ltd
Priority to JP10498195A priority Critical patent/JPH08305579A/en
Publication of JPH08305579A publication Critical patent/JPH08305579A/en
Pending legal-status Critical Current

Links

Landscapes

  • Advance Control (AREA)
  • Devices For Executing Special Programs (AREA)

Abstract

PURPOSE: To provide the compiler processing system in which branch predict accuracy of branch information is improved and an object program with a high execution efficiency is generated. CONSTITUTION: A compiler 102 generates a 1st object program 103 from a source program 101. Then the compiler 102 generates branch information 104a generated at execution of the 1st object program 103 and a 2nd object program 105 on which an object code to collect the branch information 104a is reflected.

Description

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

【0001】[0001]

【産業上の利用分野】本発明は、コンパイラによってソ
ースプログラムに基づくオブジェクトプログラムを作成
するコンパイラ処理方式に関するものである。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to a compiler processing method for creating an object program based on a source program by a compiler.

【0002】[0002]

【従来の技術】近年、多くのプロセッサでは、処理の高
速化のために、命令の実行処理を複数の実行部分に分割
することにより、パイプライン機構をサポートしてい
る。パイプライン機構を持つCPUの場合、単位時間当
たりの命令投入数を多くすることができ、命令処理の高
速化が可能となる。
2. Description of the Related Art In recent years, many processors support a pipeline mechanism by dividing an instruction execution process into a plurality of execution parts in order to speed up the process. In the case of a CPU having a pipeline mechanism, the number of instructions input per unit time can be increased and the instruction processing speed can be increased.

【0003】しかし、パイプライン機構では種々のハザ
ードが存在する。これらはパイプラインハザードといわ
れ、これらのパイプラインハザードに関しては、たとえ
ば、1993年8月20日発行『コンピュータアーキテ
クチャ原理 コロナ社』の第98頁〜第100頁に説明
されている。
However, there are various hazards in the pipeline mechanism. These are called pipeline hazards, and these pipeline hazards are described, for example, on pages 98 to 100 of "Computer Architecture Principles Corona Publishing Co.," issued August 20, 1993.

【0004】これらのパイプラインハザードの一つとし
て、条件分岐によって次命令が変化してしまい、先行フ
ェッチした命令と矛盾を引き起こすコントロールハザー
ドがあるが、これを解消するためには、ディレイドブラ
ンチ方式と分岐予測方式の2通りの技法が存在する。
As one of these pipeline hazards, there is a control hazard in which the next instruction changes due to a conditional branch and causes a contradiction with the instruction fetched in advance. To solve this, there is a delayed branch method. There are two techniques of branch prediction.

【0005】これらの方式のうち、分岐予測方式の場合
は、あらかじめ分岐する方向を予測しておき、予測した
方向の命令をフェッチしておくものであるが、その場
合、分岐情報が必要となる。分岐情報を得る方法として
は、プロセッサ内部のハードウェアで設定する方法と外
部から与える方法とがある。
Among these methods, the branch prediction method predicts the branch direction in advance and fetches an instruction in the predicted direction. In that case, branch information is required. . As a method of obtaining branch information, there are a method of setting by hardware inside the processor and a method of giving it from the outside.

【0006】分岐情報を外部から与える方法の場合で
は、コンパイラがソースプログラムをコンパイルする時
に分岐情報を決定する。そのような従来の方法につい
て、図面を参照しながら以下に説明する。
In the case where the branch information is externally provided, the compiler determines the branch information when compiling the source program. Such a conventional method will be described below with reference to the drawings.

【0007】図3は従来のコンパイラ処理方式における
処理の流れ(フロー)を示すブロック図である。図3に
おいて、301はソースプログラム、302はコンパイ
ラ、303は分岐情報、304は分岐情報ファイル、3
05はオブジェクトプログラムである。
FIG. 3 is a block diagram showing the flow of processing in the conventional compiler processing method. In FIG. 3, 301 is a source program, 302 is a compiler, 303 is branch information, 304 is a branch information file, 3
Reference numeral 05 is an object program.

【0008】以上のようなブロックで表されたコンパイ
ラ処理方式について、そのフローを以下に説明する。図
3において、コンパイラ302にはソースプログラム3
01が入力されるものとする。コンパイラ302の内部
では、コンパイラ302に入力されたソースプログラム
301のソースコードに基づいて、分岐情報303が分
岐情報ファイル304内に生成され、コンパイラ302
からは、分岐情報303を反映した命令コードからなる
オブジェクトプログラム305が出力される。
The flow of the compiler processing method represented by the above blocks will be described below. In FIG. 3, the compiler 302 includes the source program 3
It is assumed that 01 is input. Inside the compiler 302, the branch information 303 is generated in the branch information file 304 based on the source code of the source program 301 input to the compiler 302.
Outputs an object program 305 including an instruction code reflecting the branch information 303.

【0009】[0009]

【発明が解決しようとする課題】しかしながら上記のよ
うな従来のコンパイラ処理方式では、分岐情報303
は、コンパイラ302に入力されたソースプログラム3
01のソースコードに基づいて、コンパイラ302の内
部で生成されるため、この分岐情報303の分岐予測精
度が低くなるという問題点を有していた。
However, in the conventional compiler processing method as described above, the branch information 303
Is the source program 3 input to the compiler 302
Since it is generated inside the compiler 302 based on the 01 source code, the branch prediction accuracy of the branch information 303 is low.

【0010】従って、このような分岐情報303がコン
パイラ302から出力される命令コードに反映するた
め、コンパイラ302からは実行効率の低い命令コード
を含むオブジェクトプログラム305が出力されるとい
う問題点をも有していた。
Therefore, since the branch information 303 is reflected in the instruction code output from the compiler 302, the compiler 302 also outputs the object program 305 including the instruction code with low execution efficiency. Was.

【0011】本発明は、上記問題点に鑑み、分岐情報の
分岐予測精度を向上することができ、実行効率の高い命
令コードからなるオブジェクトプログラムを生成するこ
とができるコンパイラ処理方式を提供することを目的と
する。
In view of the above problems, the present invention provides a compiler processing method capable of improving the accuracy of branch prediction of branch information and generating an object program consisting of an instruction code with high execution efficiency. To aim.

【0012】[0012]

【課題を解決するための手段】上記目的を達成するため
に本発明の請求項1に記載のコンパイラ処理方式は、コ
ンパイラによって、分岐命令が解釈可能なプロセッサに
与えられるソースプログラムに基づいて、前記プロセッ
サが解読可能なオブジェクトプログラムを作成するコン
パイラ処理方式において、前記コンパイラに、前記ソー
スプログラムを字句に分解して、その字句を解析する字
句解析部と、前記字句解析部で字句解析された結果に基
づいて構文を認識し、前記ソースプログラムに対応した
中間コードを生成する構文解析部と、前記構文解析部か
らの中間コードに対応する命令コードを生成するコード
生成部と、前記コード生成部で生成された命令コード
に、前記ソースプログラムに含まれる分岐命令の実行時
に分岐が行なわれたかどうかを表す分岐情報を収集する
命令を加える情報収集命令生成部と、前記コード生成部
で命令コードを生成した際に、前記分岐情報を前記命令
コード中に含んだ分岐命令を生成する分岐命令生成部
と、前記情報収集命令生成部と分岐命令生成部を独立し
て動作させる独立動作手段とを設け、前記ソースプログ
ラムと、前記コンパイラが前記ソースプログラムから生
成した第1のオブジェクトプログラムによって生成され
た分岐情報とに基づいて、前記コンパイラによって第2
のオブジェクトプログラムを生成するようにした。
In order to achieve the above object, the compiler processing method according to claim 1 of the present invention is based on a source program given to a processor which can interpret a branch instruction by the compiler. In a compiler processing method for creating an object program readable by a processor, the compiler decomposes the source program into lexical parts, and a lexical analysis part for analyzing the lexical parts, and a result lexically analyzed by the lexical analysis part. A syntax analysis unit that recognizes a syntax based on the syntax and generates an intermediate code corresponding to the source program, a code generation unit that generates an instruction code corresponding to the intermediate code from the syntax analysis unit, and a code generation unit. The executed instruction code was branched when the branch instruction included in the source program was executed. An information collection instruction generation unit for adding an instruction for collecting branch information indicating whether or not the branch information generation unit generates a branch instruction including the branch information in the instruction code when the code generation unit generates the instruction code. Section and independent operation means for independently operating the information collection instruction generation section and the branch instruction generation section, and are generated by the source program and the first object program generated by the compiler from the source program. Second based on the branch information by the compiler.
The object program of is generated.

【0013】[0013]

【作用】請求項1の方式によると、コンパイラによっ
て、ソースプログラムから第1のオブジェクトプログラ
ムが生成される。
According to the method of the first aspect, the compiler generates the first object program from the source program.

【0014】そして、コンパイラによって、第1のオブ
ジェクトプログラムの実行時に発生した分岐情報とその
分岐情報を収集するオブジェクトコードとが反映した第
2のオブジェクトプログラムが生成される。
Then, the compiler generates a second object program in which the branch information generated when the first object program is executed and the object code for collecting the branch information are reflected.

【0015】[0015]

【実施例】以下、本発明の一実施例のコンパイラ処理方
式について、図面を参照しながら説明する。
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS A compiler processing system according to an embodiment of the present invention will be described below with reference to the drawings.

【0016】図1は本実施例のコンパイラ処理方式にお
ける処理の流れ(フロー)を示すブロック図である。図
1において、101はソースプログラム、102はコン
パイラ、103は第1のオブジェクトプログラム、10
4は分岐情報ファイル、105は第2のオブジェクトプ
ログラムである。
FIG. 1 is a block diagram showing the flow of processing in the compiler processing method of this embodiment. In FIG. 1, 101 is a source program, 102 is a compiler, 103 is a first object program, 10
Reference numeral 4 is a branch information file, and 105 is a second object program.

【0017】以上のようなブロックで表されたコンパイ
ラ処理方式について、そのフローを以下に説明する。図
1において、コンパイラ102にはソースプログラム1
01が入力されるものとする。コンパイラ102は、入
力されたソースプログラム101に含まれているソース
コードに基づいて、第1のオブジェクトプログラム10
3を出力する。第1のオブジェクトプログラム103
は、その実行時に、ソースプログラム101で指定され
た動作を実行するとともに、分岐情報ファイル104を
生成する。
The flow of the compiler processing method represented by the above blocks will be described below. In FIG. 1, the compiler 102 includes a source program 1
It is assumed that 01 is input. The compiler 102 uses the source code included in the input source program 101 to generate the first object program 10
3 is output. First object program 103
Executes the operation specified by the source program 101 and generates the branch information file 104 at the time of its execution.

【0018】この分岐情報ファイル104は、第1のオ
ブジェクトプログラム103による分岐命令の実行時
に、実際に分岐条件が成立し分岐動作が行なわれたかど
うかを表す分岐情報104aを記録する。分岐情報ファ
イル104に記録された分岐情報104aの例を図2に
示す。
The branch information file 104 records branch information 104a indicating whether or not a branch condition is actually satisfied and a branch operation is performed when the first object program 103 executes a branch instruction. An example of the branch information 104a recorded in the branch information file 104 is shown in FIG.

【0019】図2において、分岐情報104aとして、
分岐情報ファイル104の一行に、実行された分岐命令
の第1のオブジェクトプログラム103におけるアドレ
ス104b、分岐命令の内容104c、分岐による飛び
先アドレス104d、分岐動作の成否情報104eが記
録される。この分岐情報104aは分岐命令が実行され
る度に更新される。
In FIG. 2, as the branch information 104a,
In one line of the branch information file 104, an address 104b in the first object program 103 of the executed branch instruction, a content 104c of the branch instruction, a jump destination address 104d due to the branch, and success / failure information 104e of the branch operation are recorded. This branch information 104a is updated every time a branch instruction is executed.

【0020】以上のように構成された分岐情報104a
を、コンパイラ102は、第1のオブジェクトプログラ
ム103とともに読み込み、第2のオブジェクトプログ
ラム105を出力する。
Branch information 104a configured as described above
Is read together with the first object program 103, and the second object program 105 is output.

【0021】このような方式でコンパイラ102から生
成された第2のオブジェクトプログラム105は、第1
のオブジェクトプログラム103実行時の分岐情報10
4aとその分岐情報104aを収集するオブジェクトコ
ードとが反映しているので、分岐予測精度の高い分岐情
報104aを含んだ命令コードとなっている。
The second object program 105 generated from the compiler 102 in this way is the first object program 105.
Information 10 when executing the object program 103 of
4a and the object code that collects the branch information 104a are reflected, so the instruction code includes the branch information 104a with high branch prediction accuracy.

【0022】次に、コンパイラ102について、その内
部構成に基づいて図4を参照しながら説明する。図4は
本実施例のコンパイラ処理方式におけるコンパイラの構
成を示すブロック図である。図4において、401はソ
ースプログラム、402はコンパイラ、411は字句解
析部、412は構文解析部、413はコード生成部、4
14は分岐命令生成部、415は情報収集命令生成部、
405はオブジェクトプログラムである。
Next, the compiler 102 will be described based on its internal configuration with reference to FIG. FIG. 4 is a block diagram showing the configuration of the compiler in the compiler processing method of this embodiment. In FIG. 4, 401 is a source program, 402 is a compiler, 411 is a lexical analysis unit, 412 is a syntax analysis unit, 413 is a code generation unit, 4
14 is a branch instruction generation unit, 415 is an information collection instruction generation unit,
405 is an object program.

【0023】以上のような構成要素からなるコンパイラ
402について、その動作を以下に説明する。図4にお
いて、コンパイラ402は、ソースプログラム401を
入力としてオブジェクトプログラム405を生成する。
The operation of the compiler 402 having the above components will be described below. In FIG. 4, the compiler 402 inputs the source program 401 and generates an object program 405.

【0024】以上の生成処理は、図4に示した字句解析
部411、構文解析部412、コード生成部413、分
岐命令生成部414、情報収集命令生成部415によっ
て行なわれる。
The above generation processing is performed by the lexical analysis unit 411, the syntax analysis unit 412, the code generation unit 413, the branch instruction generation unit 414, and the information collection instruction generation unit 415 shown in FIG.

【0025】分岐命令生成部414は、分岐情報ファイ
ル404をもとに分岐情報を生成し、この分岐情報をコ
ード生成部413から出力された命令コード中に含んだ
分岐命令を生成する。
The branch instruction generation unit 414 generates branch information based on the branch information file 404, and generates a branch instruction including this branch information in the instruction code output from the code generation unit 413.

【0026】また、情報収集命令生成部415は、分岐
命令実行時に分岐が行なわれたかどうかを表す分岐情報
を収集する命令を生成する。生成された命令により、そ
の実行時に分岐情報が収集されるとともに、その分岐情
報を記録するための分岐情報ファイルが作成され、収集
された分岐情報が記録される。
The information collection instruction generation unit 415 also generates an instruction for collecting branch information indicating whether or not a branch was taken when the branch instruction was executed. The generated instructions collect branch information at the time of execution, create a branch information file for recording the branch information, and record the collected branch information.

【0027】また、分岐命令生成部414および情報収
集命令生成部415は、それぞれ独立に動作するように
外部から設定でき、コンパイラ起動時などに指定でき
る。以上のように、本実施例では、コンパイラ102に
よって、ソースプログラム101から第1のオブジェク
トプログラム103が生成され、さらに、コンパイラ1
02によって、第1のオブジェクトプログラム103の
実行時に発生した分岐情報104aとその分岐情報10
4aを収集するオブジェクトコードとが反映した第2の
オブジェクトプログラム105が生成される。
Further, the branch instruction generation unit 414 and the information collection instruction generation unit 415 can be set externally so as to operate independently, and can be designated when the compiler is started. As described above, in the present embodiment, the compiler 102 generates the first object program 103 from the source program 101, and the compiler 1
02, the branch information 104a generated at the time of execution of the first object program 103 and the branch information 10
A second object program 105 that reflects the object code for collecting 4a is generated.

【0028】そのため、分岐情報104aの分岐予測精
度を向上することができ、実行効率の高い命令コードか
らなる第2のオブジェクトプログラム105を生成する
ことができる。
Therefore, it is possible to improve the accuracy of branch prediction of the branch information 104a, and it is possible to generate the second object program 105 composed of an instruction code with high execution efficiency.

【0029】なお、上記の実施例において、分岐情報を
収納する分岐情報ファイルを分岐情報格納場所としてプ
ロセッサ内に設け、分岐命令生成部によって、分岐情報
を含まない分岐命令を作成し、分岐情報をプロセッサ内
の分岐情報格納場所に収納する命令を生成するようにし
てもよい。
In the above embodiment, the branch information file for storing the branch information is provided in the processor as the branch information storage location, and the branch instruction generation unit creates a branch instruction that does not include the branch information and stores the branch information. An instruction to be stored in the branch information storage location in the processor may be generated.

【0030】また、上記の各実施例において、コンパイ
ラによって、第1のオブジェクトプログラムおよび分岐
情報に基づいて、第2のオブジェクトプログラムを実行
する第2のオブジェクトプログラム実行ファイルを作成
するようにしてもよい。
Further, in each of the above embodiments, the compiler may create the second object program execution file for executing the second object program based on the first object program and the branch information. .

【0031】また、上記の各実施例において、第1のオ
ブジェクトプログラムを、第2のオブジェクトプログラ
ムを生成するコンパイラとは独立して存在するコンパイ
ラを用いて生成するようにしてもよい。
Further, in each of the above embodiments, the first object program may be generated by using a compiler existing independently of the compiler generating the second object program.

【0032】[0032]

【発明の効果】以上のように本発明によれば、コンパイ
ラは、ソースプログラムから第1のオブジェクトプログ
ラムを生成し、さらに、コンパイラは、第1のオブジェ
クトプログラムの実行時に発生した分岐情報とその分岐
情報を収集するオブジェクトコードとが反映した第2の
オブジェクトプログラムを生成することができる。
As described above, according to the present invention, the compiler generates the first object program from the source program, and the compiler further generates branch information generated when the first object program is executed and the branch information. It is possible to generate the second object program that is reflected by the object code for collecting information.

【0033】そのため、分岐情報の分岐予測精度を向上
することができ、実行効率の高い命令コードからなる第
2のオブジェクトプログラムを、プロセッサが解読可能
なオブジェクトプログラムとして生成することができ
る。
Therefore, the accuracy of branch prediction of branch information can be improved, and the second object program composed of an instruction code with high execution efficiency can be generated as an object program readable by the processor.

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

【図1】本発明の実施例のコンパイラ処理方式のフロー
説明図
FIG. 1 is an explanatory flowchart of a compiler processing method according to an embodiment of the present invention.

【図2】同実施例の分岐情報の説明図FIG. 2 is an explanatory diagram of branch information of the same embodiment.

【図3】従来のコンパイラ処理方式のフロー説明図FIG. 3 is a flow explanatory diagram of a conventional compiler processing method.

【図4】本発明の実施例のコンパイラ処理方式における
コンパイラの構成図
FIG. 4 is a configuration diagram of a compiler in the compiler processing method according to the embodiment of this invention.

【符号の説明】[Explanation of symbols]

101 ソースプログラム 102 コンパイラ 103 第1のオブジェクトプログラム 104 分岐情報ファイル 105 第2のオブジェクトプログラム 411 字句解析部 412 構文解析部 413 コード生成部 414 分岐命令生成部 415 情報収集命令生成部 101 Source Program 102 Compiler 103 First Object Program 104 Branch Information File 105 Second Object Program 411 Lexical Analysis Section 412 Syntax Analysis Section 413 Code Generation Section 414 Branch Instruction Generation Section 415 Information Collection Instruction Generation Section

Claims (4)

【特許請求の範囲】[Claims] 【請求項1】 コンパイラによって、分岐命令が解釈可
能なプロセッサに与えられるソースプログラムに基づい
て、前記プロセッサが解読可能なオブジェクトプログラ
ムを作成するコンパイラ処理方式において、前記コンパ
イラに、前記ソースプログラムを字句に分解して、その
字句を解析する字句解析部と、前記字句解析部で字句解
析された結果に基づいて構文を認識し、前記ソースプロ
グラムに対応した中間コードを生成する構文解析部と、
前記構文解析部からの中間コードに対応する命令コード
を生成するコード生成部と、前記コード生成部で生成さ
れた命令コードに、前記ソースプログラムに含まれる分
岐命令の実行時に分岐が行なわれたかどうかを表す分岐
情報を収集する命令を加える情報収集命令生成部と、前
記コード生成部で命令コードを生成した際に、前記分岐
情報を前記命令コード中に含んだ分岐命令を生成する分
岐命令生成部と、前記情報収集命令生成部と分岐命令生
成部を独立して動作させる独立動作手段とを設け、前記
ソースプログラムと、前記コンパイラが前記ソースプロ
グラムから生成した第1のオブジェクトプログラムによ
って生成された分岐情報とに基づいて、前記コンパイラ
によって第2のオブジェクトプログラムを生成するコン
パイラ処理方式。
1. A compiler processing method for creating an object program readable by the processor based on a source program provided to a processor capable of interpreting a branch instruction by the compiler, wherein the compiler makes the source program lexical. Decomposes, a lexical analysis unit that analyzes the lexical phrase, recognizes the syntax based on the result of the lexical analysis in the lexical analysis unit, and a syntax analysis unit that generates intermediate code corresponding to the source program,
A code generation unit that generates an instruction code corresponding to the intermediate code from the syntax analysis unit, and whether the instruction code generated by the code generation unit is branched when a branch instruction included in the source program is executed. And an information collecting instruction generating section for adding an instruction for collecting branch information, and a branch instruction generating section for generating a branch instruction including the branch information in the instruction code when the code generating section generates the instruction code. And an independent operation means for independently operating the information collection instruction generation unit and the branch instruction generation unit, and the branch generated by the source program and the first object program generated from the source program by the compiler. A compiler processing method for generating a second object program by the compiler based on the information.
【請求項2】 分岐命令生成部によって、分岐情報を含
まない分岐命令を作成し、分岐情報をプロセッサ内の分
岐情報格納場所に収納する命令を生成する請求項1に記
載のコンパイラ処理方式。
2. The compiler processing method according to claim 1, wherein the branch instruction generation unit generates a branch instruction that does not include branch information, and generates an instruction that stores the branch information in a branch information storage location in a processor.
【請求項3】 コンパイラによって、第1のオブジェク
トプログラムおよび分岐情報に基づいて、第2のオブジ
ェクトプログラムを実行する第2のオブジェクトプログ
ラム実行ファイルを作成する請求項1または請求項2に
記載のコンパイラ処理方式。
3. The compiler process according to claim 1, wherein the compiler creates a second object program execution file that executes the second object program based on the first object program and the branch information. method.
【請求項4】 第1のオブジェクトプログラムを、第2
のオブジェクトプログラムを生成するコンパイラとは独
立して存在するコンパイラを用いて生成する請求項1か
ら請求項3のいずれかに記載のコンパイラ処理方式。
4. The first object program, the second object program
The compiler processing method according to any one of claims 1 to 3, wherein the compiler program is generated using a compiler that exists independently of the compiler that generates the object program.
JP10498195A 1995-04-28 1995-04-28 Compiler processing system Pending JPH08305579A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP10498195A JPH08305579A (en) 1995-04-28 1995-04-28 Compiler processing system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP10498195A JPH08305579A (en) 1995-04-28 1995-04-28 Compiler processing system

Publications (1)

Publication Number Publication Date
JPH08305579A true JPH08305579A (en) 1996-11-22

Family

ID=14395277

Family Applications (1)

Application Number Title Priority Date Filing Date
JP10498195A Pending JPH08305579A (en) 1995-04-28 1995-04-28 Compiler processing system

Country Status (1)

Country Link
JP (1) JPH08305579A (en)

Similar Documents

Publication Publication Date Title
JP3819572B2 (en) Dynamic branch prediction system
JP3311462B2 (en) Compile processing unit
US5920723A (en) Compiler with inter-modular procedure optimization
US6345384B1 (en) Optimized program code generator, a method for compiling a source text and a computer-readable medium for a processor capable of operating with a plurality of instruction sets
KR100555116B1 (en) In-line database for receiver type in object-oriented systems
US20010037497A1 (en) Apparatus and method for generating optimization objects
JP2006350686A (en) Instruction set simulator generation device and simulator generation method
JP2009524866A (en) System and method for parallel execution of programs
JP3130446B2 (en) Program conversion device and processor
JP2002091777A (en) Compiler and register assigning method therefor
JP2007018254A (en) Language processor
JPH08305579A (en) Compiler processing system
Lukoschus et al. Removing cycles in Esterel programs
CN102360306A (en) Method for extracting and optimizing information of cyclic data flow charts in high-level language codes
Nakra et al. Width sensitive scheduling for resource constrained VLIW processors
Huang et al. Balancing reuse opportunities and performance gains with subblock value reuse
JPH11195011A (en) Language translation processor, language translation processing method and record medium recording language translation processing program
JP2001265605A (en) Instruction string optimization method for compiler, compiler device, recording medium and program
JP3130421B2 (en) Program analysis method and apparatus
JP2000305786A (en) Compile processor and program recording medium
JPH09319587A (en) System for generating program through post-optimize using measured information
JP2003067195A (en) Optimization compile method and optimization compile device
JP4006887B2 (en) Compiler, processor and recording medium
Xianfeng Microarchitecture modeling for timing analysis of embedded software
JP2001005665A (en) Branch predicting device

Legal Events

Date Code Title Description
A977 Report on retrieval

Free format text: JAPANESE INTERMEDIATE CODE: A971007

Effective date: 20040531

A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A131

Effective date: 20040622

A02 Decision of refusal

Free format text: JAPANESE INTERMEDIATE CODE: A02

Effective date: 20041019