JP2585790B2 - Compile processing method for multiple code systems - Google Patents

Compile processing method for multiple code systems

Info

Publication number
JP2585790B2
JP2585790B2 JP1092148A JP9214889A JP2585790B2 JP 2585790 B2 JP2585790 B2 JP 2585790B2 JP 1092148 A JP1092148 A JP 1092148A JP 9214889 A JP9214889 A JP 9214889A JP 2585790 B2 JP2585790 B2 JP 2585790B2
Authority
JP
Japan
Prior art keywords
code
processing
correspondence table
code system
unit
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired - Lifetime
Application number
JP1092148A
Other languages
Japanese (ja)
Other versions
JPH02270033A (en
Inventor
和彦 野場
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.)
Fujitsu Ltd
Original Assignee
Fujitsu 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 Fujitsu Ltd filed Critical Fujitsu Ltd
Priority to JP1092148A priority Critical patent/JP2585790B2/en
Publication of JPH02270033A publication Critical patent/JPH02270033A/en
Application granted granted Critical
Publication of JP2585790B2 publication Critical patent/JP2585790B2/en
Anticipated expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Description

【発明の詳細な説明】 〔概要〕 原始プログラムを入力し,少なくとも構文解析,意味
解析およびコード生成を含む処理により,目的プログラ
ムを生成するコンパイラを備えた計算機システムにおけ
る複数コード系に対応するコンパイル処理方式に関し, コード系の違いによる処理の切り分けをできるだけ行
わないで,異なる複数のコード系の原始プログラムを,
共通な処理論理で翻訳する手段を提供することを目的と
し, コンパイル開始時に,原始プログラムのコード系に応
じて,あるいくつかの特定の文字に対応する2進コード
の対応表を,ある領域に設定する対応表設定処理部を備
え,構文解析,意味解析およびコードの生成の処理にお
いて,前記対応表を参照することにより,原始プログラ
ムのコード系における特定文字の2進コードを,コード
系に依存しない処理論理でもって使用できるように構成
する。
DETAILED DESCRIPTION OF THE INVENTION [Summary] Compile processing corresponding to a plurality of code systems in a computer system having a compiler that generates a target program by inputting a source program and at least processing including syntax analysis, semantic analysis and code generation Regarding the method, the source programs of different code systems can be divided into
The purpose is to provide a means of translating with common processing logic. At the start of compilation, a binary code correspondence table corresponding to some specific characters is stored in a certain area at the start of compilation according to the code system of the source program. It has a correspondence table setting processing unit to set, and in the syntax analysis, semantic analysis and code generation processing, the binary code of a specific character in the code system of the source program depends on the code system by referring to the correspondence table. It is configured so that it can be used with no processing logic.

〔産業上の利用分野〕[Industrial applications]

本発明は,原始プログラムを入力し,少なくとも構文
解析,意味解析およびコード生成を含む処理により,目
的プログラムを生成するコンパイラを備えた計算機シス
テムにおける複数コード系に対応するコンパイル処理方
式に関する。
The present invention relates to a compile processing method corresponding to a plurality of code systems in a computer system having a compiler that generates a target program by inputting a source program and performing at least a process including a syntax analysis, a semantic analysis, and a code generation.

近年の計算機システムの多様化に伴い,多くのシステ
ムのコンパイラを開発する必要が生じている。また,こ
れら異なるシステム間でも,同一の仕様のコンパイラが
必要とされている。
With the diversification of computer systems in recent years, it has become necessary to develop compilers for many systems. Compilers with the same specifications are required between these different systems.

そのためには,ある1つのシステムでコンパイラを作
成し,それを他のシステムへ移植すればよいのである
が,これらは必ずしも同一のコード系とは限らない。し
たがって,開発の負担を軽減するためには,コード系に
依存しない処理論理を持つコンパイラを考慮する必要が
ある。
To do so, a compiler can be created on one system and ported to another system, but these are not necessarily the same code system. Therefore, in order to reduce the development burden, it is necessary to consider a compiler having processing logic independent of the code system.

〔従来の技術〕[Conventional technology]

第4図に従来技術の例を示す。 FIG. 4 shows an example of the prior art.

一般に,COBOLやFORTRAN等のコンパイラでは,第4図
に示すように,原始プログラム10を入力し,字句解
析,構文解析,意味解析,最適化,コード生成
を行って,最終的に機械語命令などからなる目的プログ
ラム11を出力する。
In general, with a compiler such as COBOL or FORTRAN, as shown in Fig. 4, a source program 10 is input, lexical analysis, syntax analysis, semantic analysis, optimization, and code generation are performed. The target program 11 is output.

従来のコンパイラにおける字句解析では,もともと予
約語やコード系のテーブルを持っており,それらを,コ
ード系の判定処理結果に基づいて置き換えることによっ
て,複数のコード系に対応することができていた。
In lexical analysis in a conventional compiler, a table of reserved words and codes was originally provided, and by replacing these based on the results of the judgment processing of the codes, it was possible to handle a plurality of codes.

しかし,構文解析,意味解析,コード生成の処理にお
いては,コード系に依存する部分が比較的少ないことか
ら,コード系に依存する処理が必要になった場合には,
現在のコード系を判定することにより,処理を切り分け
て,コード系ごとのコードの使い分けを行うようにして
いた。なお,最適化の処理では,一般にコード系に依存
することはない。
However, in the processes of syntax analysis, semantic analysis, and code generation, there are relatively few parts that depend on the code system.
By judging the current code system, the processing is divided and the code for each code system is properly used. The optimization process does not generally depend on the code system.

〔発明が解決しようとする課題〕[Problems to be solved by the invention]

すなわち,従来技術では,構文解析,意味解析または
コード生成の処理において,例えばZEROという予約語を
コード化するような場合に,第4図に示すように,コー
ド系の判定を行い,EBCDICコード系であれば,16進数の
“FO"を使用し,ASCIIコード系であれば,16進数の“30"
を使用するというように,処理論理により,複数のコー
ド系に対応するようにしていた。
That is, in the prior art, in the processing of syntactic analysis, semantic analysis or code generation, for example, when a reserved word ZERO is coded, the code system is determined as shown in FIG. 4 and the EBCDIC code system is determined. If so, use hexadecimal "FO". If ASCII code, use hexadecimal "30".
In order to handle a plurality of code systems, processing logic was used.

したがって,処理論理が複雑化し,コンパイラのプロ
グラム規模が大きくなるだけでなく,新たに異なるコー
ド系の原始プログラムを処理対象とした場合に,各所で
処理論理を変更しなければならないので,その開発負担
が大きいという問題があった。
Therefore, the processing logic becomes complicated, and not only does the compiler program scale increase, but also the processing logic must be changed in various places when a new source program of a different code system is to be processed. There was a problem that was large.

本発明は上記問題点の解決を図り,コード系の違いに
よる処理の切り分けをできるだけ行わないで,異なる複
数のコード系の原始プログラムを,共通な処理論理で翻
訳する手段を提供することを目的としている。
SUMMARY OF THE INVENTION An object of the present invention is to solve the above problems and to provide means for translating source programs of a plurality of different code systems with a common processing logic while minimizing processing separation according to a difference in a code system. I have.

〔課題を解決するための手段〕[Means for solving the problem]

第1図は本発明の構成例を示す。 FIG. 1 shows a configuration example of the present invention.

第1図において,10はCOBOLやFORTRAN等の高級言語で
記述された原始プログラム,11はオブジェクト・コード
に展開された目的プログラム,12はCPUおよびメモリなど
からなる処理装置,13は計算機言語の翻訳を行うコンパ
イラ,14はコンパイラにおける各処理部の起動/制御を
行う起動・制御部,15は対応表設定処理部,16は構文解析
を行う構文解析部,17は高級言語の字句を解釈する字句
解析部,18は構文解析結果に従って意味を解析する意味
解析部,19は効率的なオブジェクト・コードを生成する
ための最適化を行う最適化部,20はオブジェクト・コー
ドを生成し目的プログラム11を出力するコード生成部,2
1はメモリ上に確保された共通領域,22は特定の文字とそ
のコードとの対応関係を記憶する対応表を表す。
In FIG. 1, 10 is a source program described in a high-level language such as COBOL or FORTRAN, 11 is a target program expanded into an object code, 12 is a processing device including a CPU and a memory, and 13 is a translation of a computer language. 14 is a start / control unit that starts / controls each processing unit in the compiler, 15 is a correspondence table setting processing unit, 16 is a parsing unit that performs syntactic analysis, and 17 is a lexical unit that interprets high-level language lexical units. An analysis unit, 18 is a semantic analysis unit that analyzes the semantics according to the syntax analysis result, 19 is an optimization unit that performs optimization for generating efficient object code, and 20 is an object code that generates the object code and executes the target program 11. Output code generator, 2
Reference numeral 1 denotes a common area secured on the memory, and reference numeral 22 denotes a correspondence table that stores a correspondence between a specific character and its code.

本発明では,コンパイラ13における起動・制御部14
に,対応表設定処理部15が設けられる。対応表設定処理
部15は,コンパイル開始時に,メモリ上に作業域として
確保された共通領域21内に,原始プログラム10のコード
系に応じた対応表22を設定する。
In the present invention, the activation / control unit 14 in the compiler 13
In addition, a correspondence table setting processing unit 15 is provided. At the start of compiling, the correspondence table setting processor 15 sets a correspondence table 22 corresponding to the code system of the source program 10 in the common area 21 secured as a work area on the memory.

対応表22は,倒えばゼロ,空白,引用符などの特定の
文字が,原始プログラム10のコード系では,各々どのよ
うな2進コードで表現されるかについての情報を持つテ
ーブルである。
The correspondence table 22 is a table having information on what kind of binary code, when defeated, a specific character such as zero, space, or quotation mark is represented in the code system of the source program 10.

起動・制御部14は,コンパイルの各フェーズに応じ
て,構文解析部16ないしコード生成部20の各処理部を,
順次,起動する。ここで,本発明では,特に,構文解析
部16,意味解析部18,コード生成部20において,表意定数
の処理やパディング文字の処理などのために,特定の文
字のコードを展開する必要があった場合に,コード系に
応じて異なる処理論理を用いることなく,対応表22にお
ける該当する領域を参照することにより,その特定の文
字に対応する2進コードを抽出する。
The activation / control unit 14 controls each processing unit of the syntax analysis unit 16 or the code generation unit 20 according to each compilation phase.
Start up sequentially. Here, in the present invention, in particular, in the parsing unit 16, the semantic analyzing unit 18, and the code generating unit 20, it is necessary to develop a code of a specific character for processing of a figurative constant, processing of a padding character, and the like. In this case, the binary code corresponding to the specific character is extracted by referring to the corresponding area in the correspondence table 22 without using a different processing logic depending on the code system.

〔作用〕[Action]

通常,コンパイラ13の構文解析部16,意味解析部18,コ
ード生成部20は,表意定数の処理やパディング文字の処
理など,コード系に依存する処理を含んでいるが,それ
らは字句解析部17による字句解析処理に比べると非常に
少ない。また,処理の切り分けが必要になるコードも限
られている。
Normally, the syntax analyzer 16, semantic analyzer 18, and code generator 20 of the compiler 13 include processing depending on the code system, such as processing of figurative constants and processing of padding characters. Is very small compared to lexical analysis processing by. Also, the code that requires the separation of processing is limited.

したがって,構文解析部16,意味解析部18,コード生成
部20においては,ある特定の文字のコードだけを意識す
る必要があるが,本発明では,これらをあらかじめ共通
領域21に対応表22として設定しておき,この領域におけ
る各々の特定文字に対応するコードを,各処理部で参照
することにより,異なるコード系に対しても共通の処理
論理を用いることができるようにする。
Therefore, it is necessary for the syntax analysis unit 16, the semantic analysis unit 18, and the code generation unit 20 to be aware of only the code of a specific character. In the present invention, these are set in the common area 21 in advance as the correspondence table 22. By referring to the code corresponding to each specific character in this area in each processing unit, common processing logic can be used for different code systems.

その結果,新たに異なるコード系の原始プログラム10
を処理対象とする場合に,処理論理を変更することな
く,対応表設定処理部15において,対応表22に設定する
コードだけを変更するだけで,対応することが可能にな
る。
As a result, a new source program 10
Can be handled by changing only the code set in the correspondence table 22 in the correspondence table setting processing unit 15 without changing the processing logic.

〔実施例〕〔Example〕

第2図は本発明の実施例に係る文字・コード対応表の
例,第3図は本発明の実施例によるコード生成の例を示
す。
FIG. 2 shows an example of a character / code correspondence table according to the embodiment of the present invention, and FIG. 3 shows an example of code generation according to the embodiment of the present invention.

以下,COBOL言語のコンパイラを例にして,本発明の実
施例を説明する。コンパイラは,EBCDICコード系とASCII
コード系に対応できるものとする。もちろん,他の言語
やコード系についても,本発明を同様に適用することが
できる。
Hereinafter, embodiments of the present invention will be described using a COBOL language compiler as an example. Compiler is EBCDIC code system and ASCII
It should be able to handle code systems. Of course, the present invention can be similarly applied to other languages and code systems.

COBOLコンパイラでは,第1図に示す構文解析部16,意
味解析部18,コード生成部20において,コード系に関係
する処理は少なく,コード系に関係するのは,主に,以
下に示す機能を処理する場合などに限られている。
In the COBOL compiler, there are few processes related to the code system in the syntax analysis unit 16, semantic analysis unit 18, and code generation unit 20 shown in Fig. 1, and the following functions mainly relate to the code system. It is limited to processing.

・表意定数の処理 ZERO,SPACE,QUOTEなどの特定の文字を表す予約語の処
理である。
-Processing of figurative constants Processing of reserved words representing specific characters such as ZERO, SPACE, and QUOTE.

・パディング文字の処理 転記における空白詰めなど,未使用部分の領域を特定
の文字で埋める処理である。
-Processing of padding characters This is a process of filling unused areas with specific characters, such as blanking in transcription.

このような表意定数やパディング文字の処理を行う場
合,コード系ごとに異なる2進コードを使い分ける必要
があるが,これらのコードを所定の領域にあらかじめ用
意しておき,その領域を参照することにより,最初に一
回だけ行う対応表へのコード設定の処理を除き,処理論
理をコード系に依存しないようにする。
When processing such figurative constants and padding characters, it is necessary to use different binary codes for each code system. These codes are prepared in a predetermined area in advance, and by referring to that area, The processing logic does not depend on the code system except for the process of setting the code in the correspondence table which is performed only once at the beginning.

第2図は,各コード系に応じて,特定の文字に対応す
るコード情報を持つ対応表22の例を示している。
FIG. 2 shows an example of a correspondence table 22 having code information corresponding to a specific character according to each code system.

第2図(イ)は,EBCDICコード系で使用する対応表22
であり,数字(ゼロ),文字(空白),文字(引用
符),…に対して,それぞれ,16進数のF0,40,7F,…のコ
ードの対応情報を持つ。
Fig. 2 (a) shows the correspondence table 22 used in the EBCDIC code system.
, And has correspondence information of hexadecimal F0, 40, 7F,... For numbers (zero), characters (blanks), characters (quotation marks),.

一方,第2図(ロ)は,ASCIIコード系で使用する対応
表22であり,この対応表22では,数字(ゼロ),文字
(空白),文字(引用符),…に対して,それぞれ,16
進数の30,20,22,…の各コードが対応づけられている。
On the other hand, FIG. 2 (b) is a correspondence table 22 used in the ASCII code system. In this correspondence table 22, numerals (zero), characters (blanks), characters (quotation marks),. , 16
Each code of 30, 20, 22, ... in radix is associated.

最初に,第2図(イ)に示す対応表22を設定しておく
か,第2図(ロ)に示す対応表22を設定しておくかによ
って,各特定の文字の対応表22内における位置が定まっ
ているので,共通の処理論理により,EBCDICコード系と,
ASCIIコード系とで,使用するコードを使い分けること
ができる。
First, depending on whether the correspondence table 22 shown in FIG. 2 (a) is set or the correspondence table 22 shown in FIG. 2 (b) is set, the correspondence table 22 for each specific character is set. Since the position is fixed, EBCDIC code system and common processing logic
The code to be used can be used properly with the ASCII code system.

例えば,第3図に示すCOBOL原始プログラム30をコン
パイルするとする。
For example, assume that the COBOL source program 30 shown in FIG. 3 is compiled.

このCOBOL原始プログラム30が,EBCDICコード系で表さ
れているとすると,第2図(イ)に示すような対応表22
を用意する。
Assuming that this COBOL source program 30 is represented by an EBCDIC code system, a correspondence table 22 shown in FIG.
Prepare

「MOVE SPACE TO A」は,Aという領域に空白を転記
することを意味する文である。
“MOVE SPACE TO A” is a sentence that means to transfer a blank to the area A.

EBCDICコード系では,対応表22において,空白が16進
数の40であるので,これを参照することにより,オブジ
ェクトコード31Aのようなコードを生成する。このオブ
ジェクトコード31Aは,Aの領域を示すa(a1)のアドレ
スに,0x40の値を持つ1バイトのコードをムーブする命
令である。
In the EBCDIC code system, since the blank is 40 in hexadecimal in the correspondence table 22, a code like the object code 31A is generated by referring to this. The object code 31A is an instruction to move a 1-byte code having a value of 0x40 to the address of a (a1) indicating the area of A.

一方,COBOL原始プログラム30が,ASCIIコード系で表さ
れているとすると,第2図(ロ)に示すような対応表22
が用いられ,オブジェクトコード31Bが生成される。こ
の命令では,a(a1)のアドレスに,ASCIIコード系におい
て空白を表す0x20の値を持つ1バイトのコードをムーブ
することを指示している。
On the other hand, assuming that the COBOL source program 30 is represented by an ASCII code system, the correspondence table 22 shown in FIG.
Is used to generate an object code 31B. This instruction instructs to move a 1-byte code having a value of 0x20 representing a space in the ASCII code system to the address of a (a1).

なお,オブジェクトコード31A,31Bは,実際には,2進
の機械語命令である。
Note that the object codes 31A and 31B are actually binary machine language instructions.

ここでは,2つのコード系を扱う例について説明した
が,対応表22を拡張または入れ替えることなどにより,
同様に他のコード系にも適用することができる。すなわ
ち,第1図に示す対応表設定処理部15における設定用の
定数の変更等だけで,多くのコード系に対応させること
が可能になる。
Here, an example of handling two code systems has been described. However, by expanding or replacing the correspondence table 22,
Similarly, it can be applied to other code systems. That is, it is possible to correspond to many code systems only by changing the setting constants in the correspondence table setting processing unit 15 shown in FIG.

〔発明の効果〕〔The invention's effect〕

以上説明したように,本発明によれば,ある特定の文
字のコードを,あらかじめコンパイラが参照する領域に
設定しておき,コード系に依存する処理においては,こ
の領域を参照することにより,コード系に依存しない処
理論理とすることができる。
As described above, according to the present invention, a code of a specific character is set in an area referred to by a compiler in advance, and in a process depending on a code system, the code is referred to by referring to this area. The processing logic can be independent of the system.

その結果,新たに異なるコード系の原始プログラムを
処理対象とする場合に,処理論理を変更することなく,
対応することができ,異なるコード系のコンパイラにつ
いて共通に開発するときの開発効率向上に寄与するとこ
ろが大きい。
As a result, when a new source program of a different code system is to be processed, the processing logic is not changed.
It can respond and greatly contributes to improvement of development efficiency when developing compilers of different code systems in common.

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

第1図は本発明の構成例, 第2図は本発明の実施例に係る文字・コード対応表の
例, 第3図は本発明の実施例によるコード生成の例,第4図
は従来技術の例を示す。 図中,10は原始プログラム,11は目的プログラム,12は処
理装置,13はコンパイラ,14は起動・制御部,15は対応表
設定処理部,16は構文解析部,17は字句解析部,18は意味
解析部,19は最適化部,20はコード生成部,21は共通領域,
22は対応表を表す。
FIG. 1 is an example of the configuration of the present invention, FIG. 2 is an example of a character / code correspondence table according to an embodiment of the present invention, FIG. 3 is an example of code generation according to the embodiment of the present invention, and FIG. Here is an example. In the figure, 10 is a source program, 11 is a target program, 12 is a processing device, 13 is a compiler, 14 is a startup / control unit, 15 is a correspondence table setting processing unit, 16 is a syntax analysis unit, 17 is a lexical analysis unit, 18 Is a semantic analysis unit, 19 is an optimization unit, 20 is a code generation unit, 21 is a common area,
22 represents a correspondence table.

Claims (1)

(57)【特許請求の範囲】(57) [Claims] 【請求項1】原始プログラム(10)を入力し,少なくと
も構文解析,意味解析およびコード生成を含む処理によ
り,目的プログラム(11)を生成するコンパイラを備え
た計算機システムにおいて, コンパイル開始時に,原始プログラムのコード系に応じ
て,各コード系において同じ意味が与えられた特定の文
字に対する2進コードを各意味ごとに各コード系で共通
の位置に記憶する対応表(22)を,コンパイラにおける
各処理部が共通に参照可能な領域に設定する対応表設定
処理部(15)と, 構文解析,意味解析およびコード生成の処理において,
前記対応表を参照することにより,原始プログラムのコ
ード系における前記特定文字の2進コードを,コード系
の判断論理を含まない処理論理でもって使用する処理部
(16,18,20)とを備えた ことを特徴とする複数コード系に対応するコンパイル処
理方式。
1. A computer system having a compiler for inputting a source program (10) and generating a target program (11) by at least processing including syntax analysis, semantic analysis, and code generation. The correspondence table (22) that stores the binary code for a specific character given the same meaning in each code system in a common position in each code system according to each code system according to In the correspondence table setting processing section (15), which sets the area that can be commonly referenced by the section, and in the syntax analysis, semantic analysis, and code generation processing,
A processing unit (16, 18, 20) that uses the binary code of the specific character in the code system of the source program with processing logic that does not include the determination logic of the code system by referring to the correspondence table A compilation processing method that supports multiple code systems.
JP1092148A 1989-04-12 1989-04-12 Compile processing method for multiple code systems Expired - Lifetime JP2585790B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP1092148A JP2585790B2 (en) 1989-04-12 1989-04-12 Compile processing method for multiple code systems

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP1092148A JP2585790B2 (en) 1989-04-12 1989-04-12 Compile processing method for multiple code systems

Publications (2)

Publication Number Publication Date
JPH02270033A JPH02270033A (en) 1990-11-05
JP2585790B2 true JP2585790B2 (en) 1997-02-26

Family

ID=14046347

Family Applications (1)

Application Number Title Priority Date Filing Date
JP1092148A Expired - Lifetime JP2585790B2 (en) 1989-04-12 1989-04-12 Compile processing method for multiple code systems

Country Status (1)

Country Link
JP (1) JP2585790B2 (en)

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS61183743A (en) * 1985-02-09 1986-08-16 Omron Tateisi Electronics Co Compiler

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS61183743A (en) * 1985-02-09 1986-08-16 Omron Tateisi Electronics Co Compiler

Also Published As

Publication number Publication date
JPH02270033A (en) 1990-11-05

Similar Documents

Publication Publication Date Title
US5375242A (en) Compiler architecture for cross-module optimization
EP1164478A2 (en) Method and apparatus for resolving data references in generated code
US5956510A (en) Apparatus and method for revising computer program code
KR960035260A (en) Method and apparatus for indicating the location of an error detected in a software macro call
JP2585790B2 (en) Compile processing method for multiple code systems
KR20090011974A (en) Method for extracting the target files of compilation
JPH07160490A (en) Coding assistance device
KR0169909B1 (en) Method for designing assembly code generator for target processor
JPH0414144A (en) Compiling processing method
JP2672968B2 (en) Source list output processing method for debugging
JPH0689166A (en) Parts processing description expanding system
JP2977642B2 (en) FORTRAN compilation processor
JPS58114247A (en) Automatic precision extending system
JP2827724B2 (en) Program debug processing method
JPS63280335A (en) Language processing system
JPH02120935A (en) Program translation converting system
KR0169908B1 (en) Back-end of compiler using intermediate codes and tis method for generating assembly codes
JPH0358136A (en) Compiler operation system in machine different in character code system
JPH0340033A (en) Recognizing/processing system for code system of call origin
JPH04349533A (en) Compiling device and compiling method
JPH05210411A (en) Method for translating robot program
Babich et al. An approach to compiler construction for a general-purpose simulation language
JPH0126091B2 (en)
JP2001273151A (en) Device and method for executing program, recording medium and control program
JPS62166432A (en) Control system for program translation