JPH02212927A - Binary integer multiplication processing method - Google Patents

Binary integer multiplication processing method

Info

Publication number
JPH02212927A
JPH02212927A JP1033927A JP3392789A JPH02212927A JP H02212927 A JPH02212927 A JP H02212927A JP 1033927 A JP1033927 A JP 1033927A JP 3392789 A JP3392789 A JP 3392789A JP H02212927 A JPH02212927 A JP H02212927A
Authority
JP
Japan
Prior art keywords
bits
bit
multiplicand
multiplier
multiplication
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
JP1033927A
Other languages
Japanese (ja)
Other versions
JP2583599B2 (en
Inventor
Takanori Terada
孝則 寺田
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 JP1033927A priority Critical patent/JP2583599B2/en
Publication of JPH02212927A publication Critical patent/JPH02212927A/en
Application granted granted Critical
Publication of JP2583599B2 publication Critical patent/JP2583599B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Abstract

PURPOSE:To realize 63-bit integer type multiplication without using a floating decimal point instruction by executing sorting by means of the high-order n bits of the multiplicands and the high-order n bits of the multiplier, and when overflow does not occur, calculating the product between the multiplicand and multiplier by means of the calculation between the respective data at n bits. CONSTITUTION:When a multiplicand X is multiplied by a multiplier Y so that a multiplication result may be expressed in the range of 2n bits by a computer 10 whose one word consists of the n bits, first the multiplicand and multiplier are respectively divided into n bits in a processing stage P1. In a processing stage P2, the top bit of the low-order n bits is transferred to the lowest-order bit of the high-order n bits. The original value of the high-order n bits are shifted to a left side by one bit respectively. Next in a processing stage P3, the overflow is checked so that the multiplication result may be expressed in the range of 2n bits, and the product and sum of the respective n bits are calculated, and the calculation result is obtained. Thus the 63-bit integer type multiplication in a FORTRAN program, etc., can be realized without using the floating decimal point instruction.

Description

【発明の詳細な説明】 〔概要〕 計算機が持つ乗算命令実行機構で扱う2進整数の長さの
2倍の長さを持つ被乗数および乗数の乗算を行う2進整
数乗算処理方法に関し。
DETAILED DESCRIPTION OF THE INVENTION [Summary] This invention relates to a binary integer multiplication processing method that performs multiplication of a multiplicand and a multiplier whose length is twice the length of a binary integer handled by a multiplication instruction execution mechanism of a computer.

FORTRANプログラム等における63ビツト整数型
の乗算を、浮動小数点命令を使用しないで実現する手段
を提供することを目的とし。
The purpose of this invention is to provide a means for implementing 63-bit integer type multiplication in FORTRAN programs, etc., without using floating point instructions.

被乗数Xおよび乗数Yのそれぞれについて、上位nビッ
トと下位nビットとに分割して、各々nビットのレジス
タに割り当てる処理過程と、nビットのレジスタに剖り
当てた被乗数Xおよび乗数Yのそれぞれについて、上位
nビットを左に1ビット分シフトするとともに、下位n
ビットの最上位ビットを、上位nビットの最下位ビット
に繰り入れる処理過程と、被乗数Xの上位nビットおよ
び乗数Yの上位nビットの値により1場合分けを行い、
オーバフローの検出を行うとともに、オーバフローとな
らない場合に、各nビットのデータ間の演算により、被
乗数Xと乗数Yとの積を計算する処理過程とを備えるよ
うに構成する。
The process of dividing each of the multiplicand , shift the upper n bits to the left by 1 bit, and shift the lower n bits to the left by 1 bit, and
A processing process in which the most significant bit of the bit is carried into the least significant bit of the upper n bits, and one case is divided according to the values of the upper n bits of the multiplicand X and the upper n bits of the multiplier Y,
The present invention is configured to include a process of detecting an overflow and, if an overflow does not occur, calculating the product of the multiplicand X and the multiplier Y by calculation between each n-bit data.

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

本発明は、計算機が持つ乗算命令実行機構で扱う2道整
数の長さの2倍の長さを持つ被乗数および乗数の乗算を
行う2進整数乗算処理方法に関する。
The present invention relates to a binary integer multiplication processing method for multiplying a multiplicand and a multiplier whose length is twice the length of a two-way integer handled by a multiplication instruction execution mechanism of a computer.

計算機による科学技術計算や事務処理計算では。In scientific and technical calculations and office processing calculations using computers.

乗算が頻繁に用いられる。計算機で扱う数値の中で最も
単純な形式は、2進整数であるが1乗算の対象となる2
進整数で表される被乗数1乗数について1桁数を増やす
ことが望まれる。
Multiplication is frequently used. The simplest form of numbers handled by computers is a binary integer, but 2 is the number that can be multiplied by 1.
It is desired to increase the number of digits by one for a multiplicand expressed as a base integer.

〔従来の技術〕[Conventional technology]

従来、18832ビットの計算機などによって実行され
るFORTRANプロTR上では、31ビツト整数型ど
うしの乗算が可能であるが、63ビツト整数型の乗算は
実行できなかった。
Conventionally, on FORTRAN Pro TR executed by a 18832-bit computer, multiplication of 31-bit integer types was possible, but multiplication of 63-bit integer types was not possible.

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

従来、FORTRANプロTR上等では、63ビツト整
数型の乗算ができなかったため、そのような乗算を行う
場合には5例えば整数型の数値を浮動小数点に変換し、
浮動小数点命令を使用して乗算を行った後、結果につい
て整数型に型変換を行うというような処理が必要になる
という問題があった。そのため2処理手続きが煩雑で、
処理も遅くなるという問題があった。
Conventionally, in FORTRAN Pro TR, etc., multiplication of 63-bit integer types was not possible, so when performing such multiplication, for example, convert an integer type value to a floating point number,
There was a problem in that after performing multiplication using floating point instructions, it was necessary to convert the result to an integer type. Therefore, the two processing procedures are complicated,
There was also the problem that processing was slow.

本発明は上記問題点の解決を図り、FORTRANプロ
TR上等における63ビット整数型の乗算を、浮動小数
点命令を使用しないで実現する手段を提供することを目
的としている。
The present invention aims to solve the above-mentioned problems and provides a means for realizing 63-bit integer type multiplication in FORTRAN Pro TR etc. without using floating point instructions.

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

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

第1図において、10はCPUおよびメモリ等からなる
計X機、PIないしR3は計算機lOによる乗算のため
の処理過程、Xは被乗数、Yは乗数、R1ないしR4は
レジスタを表す。
In FIG. 1, 10 represents a total of X machines consisting of a CPU, memory, etc., PI to R3 represent processing steps for multiplication by a computer IO, X represents a multiplicand, Y represents a multiplier, and R1 to R4 represent registers.

計算機lOは、nビットのデータを保持する複数のレジ
スタR1−R4を持ち、これらのレジスタに設定された
2進整数の乗算命令実行機構を有する。
The computer IO has a plurality of registers R1 to R4 that hold n-bit data, and has a binary integer multiplication instruction execution mechanism set in these registers.

それぞれ2nビツトの範囲内で表される2進整数である
被乗数Xおよび乗数Yの乗算を行う場合。
When performing multiplication by a multiplicand X and a multiplier Y, which are binary integers each represented within a range of 2n bits.

次のような処理過程P1〜P3によって5乗算を実行す
る。
Multiplication by 5 is executed through the following processing steps P1 to P3.

処理過程P1では、被乗数Xを、上位nビットのXlと
、下位nビットのX2とに分け、それぞれレジスタR1
,レジスタR2に設定する。また。
In processing step P1, the multiplicand X is divided into upper n bits Xl and lower n bits X2, and each is stored in register R1.
, set in register R2. Also.

乗数Yを、上位nビットのYlと、下位nビットのY2
とに分け、それぞれレジスタR3,レジスタR4に設定
する。
The multiplier Y is defined as Yl for the upper n bits and Y2 for the lower n bits.
and set them in register R3 and register R4, respectively.

処理過程P2では、レジスタR1,レジスタR2に削り
当てた被乗数Xについて、上位nビットを左に1ビット
分シフトするとともに、下位nビットの最上位ビットを
、上位nビットの最下位ビットに繰り入れる処理を行う
、同様に、レジスタR3,レジスタR4に割り当てた乗
数Yについて。
In processing step P2, for the multiplicand X removed from registers R1 and R2, the upper n bits are shifted to the left by 1 bit, and the most significant bit of the lower n bits is transferred to the least significant bit of the upper n bits. Similarly, for the multiplier Y assigned to registers R3 and R4.

上位nビットを左に1ビット分シフトするとともに、下
位nビットの最上位ビットを、上位nビットの最下位ビ
ットに繰り入れる処理を行う。
The upper n bits are shifted to the left by one bit, and the most significant bit of the lower n bits is carried into the least significant bit of the upper n bits.

次に、処理過程P3では、被乗数Xの上位nビットX1
および乗数Yの上位nビットY2の値により、場合分け
を行い、オーバフローの検出を行うとともに、オーバフ
ローとならない場合に、上記各nビットのデータ間の演
算により、被乗数Xと乗数Yとの積を計算する。
Next, in processing step P3, the upper n bits X1 of the multiplicand
Based on the value of the upper n bits Y2 of the multiplier Y, the cases are divided and overflow is detected.If an overflow does not occur, the product of the multiplicand calculate.

〔作用〕[Effect]

本発明では、1語がnビットの計夏機10により、2n
ビツトの範囲内で表される被乗数X1乗数Yについての
乗算を行うにあたって、まず、処理過程P1により、そ
れぞれnビットに分割する。
In the present invention, by the summer calculator 10 in which one word has n bits, 2n
In performing multiplication of the multiplicand X1 and the multiplier Y expressed within the range of bits, first, each is divided into n bits in processing step P1.

このnビット間で、そのまま乗算命令を実行すると、下
位nビットの先頭ビットが符号ビットとして扱われるた
め、このビットがたまたま“1′″であるとすると2部
分的に負の数の計算が行われることになる。そこで、処
理過程P2により、この下位nビットの先頭ビットを、
上位nビットの最下位ビットに操り入れる。上位nビッ
トの元の値は、1ビツトずつ左側ヘシフトする。
If you execute a multiplication instruction as is between these n bits, the first bit of the lower n bits will be treated as a sign bit, so if this bit happens to be "1'", the calculation of a partially negative number will be performed. You will be killed. Therefore, in processing step P2, the first bit of the lower n bits is
Manipulate to the least significant bit of the upper n bits. The original value of the upper n bits is shifted to the left one bit at a time.

次に、処理過程P3では1乗算結果が2nビツト(大賀
の有効桁としては、2n−1ビツト)の範囲内で表され
るように、オーバフローの検査を行い、各nビットの積
および和を計算して、求めるべき計算結果を得る。
Next, in processing step P3, an overflow check is performed, and the product and sum of each n bit are calculated so that the result of one multiplication is expressed within the range of 2n bits (2n-1 bits as the effective digits of Oga). Calculate and obtain the desired calculation result.

〔実施例〕〔Example〕

第2図は本発明の一実施例についての適用システムの画
、第3図は本発明の一実施例による処理の例9第4図は
本発明の一実施例処理フローを示す。
FIG. 2 is a diagram of an application system according to an embodiment of the present invention, and FIG. 3 is an example of processing according to an embodiment of the present invention. FIG. 4 shows a processing flow of an embodiment of the present invention.

本発明は1例えば第2図に示すようなシステムにおいて
実施される。第2図において、20はFORTRAN言
語で記述されたプログラムをコンパイルした結果のFO
RTRANオブジェクトプログラム、21はパラメータ
リスト、22はライブラリとして提供される63ビツト
乗算関数ルーチンを表す。
The invention may be implemented in a system such as that shown in FIG. 2, for example. In Figure 2, 20 is the FO that is the result of compiling a program written in the FORTRAN language.
In the RTRAN object program, 21 represents a parameter list, and 22 represents a 63-bit multiplication function routine provided as a library.

従来、FORTRA、N言語によるプログラムでは16
3ビツト整数型どうしの乗算はできず、仕様制限になっ
ていた。本実施例では、63ビツト整数型の乗算を行う
場合、FORTRANオブジェクトプログラム20は、
それぞれ63ビツト整数型の被乗数X1乗数Yおよび結
果域からなるパラメータリスト21を作成し、あらかじ
め用意された63ビツト乗算関数ルーチン22を呼び出
す。
Conventionally, a program using FORTRA or N language has 16
Multiplication between 3-bit integer types was not possible, which was a specification restriction. In this embodiment, when performing multiplication of 63-bit integer type, the FORTRAN object program 20 performs the following:
A parameter list 21 consisting of a multiplicand X1, a multiplier Y, and a result area each of 63-bit integer type is created, and a 63-bit multiplication function routine 22 prepared in advance is called.

63ビツト乗算関数ルーチン22は、第1図に示すよう
な処理過程により、63ビット整数型の乗算を実行する
。そして1乗算結果をパラメータリス)21の結果域に
設定して、呼び出し元のFORTRANオブジェクトプ
ログラム20に復帰する。
The 63-bit multiplication function routine 22 executes 63-bit integer type multiplication through the process shown in FIG. Then, the 1 multiplication result is set in the result area of the parameter list 21, and the process returns to the calling FORTRAN object program 20.

例えば、第3図(alに示すように、FORTRANオ
ブジェクトプログラム20において。
For example, in the FORTRAN object program 20 as shown in FIG.

rl−2147483648車2」 の乗算を行うとする。RL-2147483648 car 2” Suppose we want to perform the multiplication of .

FORTRANオブジェクトプログラム20は。FORTRAN object program 20.

第3図中)に示すようなパラメータリスト21を作成し
、その先頭アドレスを所定のレジスタRegに設定して
、63ビツト乗算関数ルーチン22を呼び出す。
A parameter list 21 as shown in FIG.

63ビツト乗算間数ルーチン22は、第3図(C)。The 63-bit multiplication routine 22 is shown in FIG. 3(C).

+d)に示すように、被乗数X1乗数Yを、それぞれ3
2ビツトのXI、X2およびYl、Y2に分割し、X2
.Y2の先頭ビットを、それぞれXI。
+d), the multiplicand X1 and the multiplier Y are each 3
Divide into 2 bits XI, X2 and Yl, Y2,
.. The first bit of Y2 is XI respectively.

Ylに繰り入れる処理を行う、なお、第3図(C)。In addition, FIG. 3(C) performs the process of carrying into Yl.

fdlでは、数値を16進数字で表している。In fdl, numerical values are expressed in hexadecimal digits.

演算の原理は、以下のとおりである。The principle of the calculation is as follows.

z=x−yを考える。ここで、X≧0.Y2Oとする。Consider z=x−y. Here, X≧0. Let it be Y2O.

X−Xl・2sI→−X2.Y−Yl・2”+Y2(0
≦X2.Y2≦211)とすると。
X−Xl・2sI→−X2. Y-Yl・2”+Y2(0
≦X2. Y2≦211).

Z−X −Y −XI −YL = 2”+ (XI −Y2+X2−
Yl)X2”+X2・Y2 となる、ここで Xl・Yl       ≧O Xl・Y2+X2・Yl≧O X2・Y2     ≧0であるから。
Z−X −Y −XI −YL = 2”+ (XI −Y2+X2−
Yl)X2''+X2・Y2, where Xl・Yl ≧O

Z≦20となるためには。In order for Z≦20.

XI−Yl≦2でなければならない。It must be XI-Yl≦2.

これを満たす組(XI、Yl)によって、以下の組み合
わせになる。
The combinations (XI, Yl) that meet this requirement result in the following combinations.

この場合分けによる処理は、以下のとおりになる。The processing based on this case is as follows.

1)Xi−0,Yl謹0の場合 これは、Z−X2・Y2を計算すればよい。1) When Xi-0, Yl is 0 This can be done by calculating Z-X2·Y2.

ti)Xi−Y1=1の場合 Z−2°+ (X2+Y2)2”+X2−Y2であるか
ら。
ti) When Xi-Y1=1, Z-2°+(X2+Y2)2''+X2-Y2.

2≦261は。2≦261.

(X2+Y2)2”+X2・Y2≦2thj・・・・・
・(1)と同値である。
(X2+Y2)2”+X2・Y2≦2thj・・・・・・
・Equivalent to (1).

X2<2”、Y2(2”から。X2<2", Y2 (from 2".

X2+Y2<2”、   X2・Y2<2”であるから
、(1)式の左辺の計算において、論理加算命令で桁溢
れ(オーバフロー)が起こることはない。
Since X2+Y2<2'' and X2·Y2<2'', overflow will not occur in the logical addition instruction in the calculation of the left side of equation (1).

従って、(l)式が成立することと、x−yで桁溢れが
起きないことは同値であり1(l)式で等号が成立して
よいのは、x−y<oの場合だけである。
Therefore, the fact that formula (l) holds is equivalent to the fact that overflow does not occur in x-y, and the equality sign in formula (l) can only hold if x-y<o. It is.

1n)(Xi−0かつYl≠0)または(XI≠0かつ
Yl−0)の場合 X1≠OかつYl−0と仮定しても一般性は失われない
、このとき。
1n) In the case of (Xi-0 and Yl≠0) or (XI≠0 and Yl-0) Generality is not lost even if it is assumed that X1≠O and Yl-0.

z−x i・Y2・2!I+X2・Y2となる。z-x i・Y2・2! I+X2・Y2.

Z≦21は。Z≦21.

Xl・Y2・2寥1+X2・Y2≦2°・・・・・・(
2)と同値になる。従って、Xl・Y2の計算で。
Xl・Y2・2寥1+X2・Y2≦2°・・・・・・(
It becomes the same value as 2). Therefore, by calculating Xl・Y2.

上位4バイト(32ビツト)が0でなければ。Unless the upper 4 bytes (32 bits) are 0.

桁溢れとなる。There will be overflow.

1v)(X1=2かつYl−1)または(X 1−1か
つYl−2)の場合 この場合、Xt・Y2+X2・Yl−0かつX2・Y2
#0から、X2−Y2−0であり5かつx −y<oで
なければ桁溢れになる。
1v) (X1=2 and Yl-1) or (X 1-1 and Yl-2) In this case, Xt・Y2+X2・Yl-0 and X2・Y2
From #0, if X2-Y2-0 is 5 and x-y<o, overflow occurs.

v)Xi≧2かつY1≧2の場合 Xl−Yl−2”≧2thst”あるので2桁溢れとな
る。
v) When Xi≧2 and Y1≧2, there is an overflow of two digits because Xl-Yl-2"≧2thst".

以上の演算の原理を利用して、63ビット整数型の乗算
およびオーバフローの検出を、第4図に示す処理■〜0
のように行う、以下、第4図に示す処理Φ〜■に従って
説明する。
Using the above principles of arithmetic, multiplication of 63-bit integer type and overflow detection are performed using the process shown in Figure 4.
Hereinafter, a description will be given according to the processes Φ to ■ shown in FIG. 4, which are performed as follows.

■ 被乗数Xおよび乗数Yを、それぞれ上位・下位の3
2ビツトずつに分割し、その分割したXI。
■ Multiplicand X and multiplier Y are divided into the upper and lower three
Divide into 2 bits each and divide the resulting XI.

X2およびYl、Y2をそれぞれレジスタに設定する。Set X2, Yl, and Y2 in registers, respectively.

■ Xが負数ならば、符号を反転して正数にする。■ If X is a negative number, reverse the sign to make it a positive number.

この処理は以下のように行う。This process is performed as follows.

xi<oなら、Xlに−XI−1を入れる。If xi<o, put -XI-1 in Xl.

さらに、X2が最小値でないなら、X2に−X2を入れ
る。Xの符号を反転したことを記憶してお(。
Furthermore, if X2 is not the minimum value, -X2 is entered into X2. Remember that we reversed the sign of X (.

Yについても同様に、負数ならば、符号を反転して正数
にする。
Similarly, if Y is a negative number, the sign is reversed to make it a positive number.

■ 次に、X2の先頭ビットをXIに繰り入れる処理を
行う、この処理は以下のように行う。
(2) Next, the first bit of X2 is transferred to XI. This process is performed as follows.

XIとX2を合わせて左に1ビツトシフトする。Combine XI and X2 and shift 1 bit to the left.

X2だけを右に1ビツトシフトする。Shift only X2 to the right by 1 bit.

Y2の先頭ビットについても、同様にYlの最下位ビッ
トに繰り入れる処理を行う。
Similarly, the first bit of Y2 is carried into the least significant bit of Yl.

Φ XlとYlの値により、処理i〜処理Vの場合分け
を行う。
Processing i to processing V are classified based on the values of Φ Xl and Yl.

■ 前述した演算の原理に従って、各場合分けに応じた
オーバフロー検出を行い、オーバフローが起きない場合
に、32ビツトの乗算と論理和の各演算により、積(Z
)を計算する。なお、  X、 Yが負数ならば、符号
反転により、正数に直して計算を行っているので、最後
に元のX、Yのどちらか一方だけが負数である場合に、
積Zの符号を反転して、2を負数で表す。
■ According to the principle of calculation described above, overflow is detected according to each case, and if no overflow occurs, the product (Z
). Note that if X and Y are negative numbers, the calculation is performed by converting them to positive numbers by reversing the sign, so in the end, if only one of the original X or Y is a negative number,
Reverse the sign of the product Z to represent 2 as a negative number.

〔発明の効果〕〔Effect of the invention〕

以上説明したように1本発明によれば2例えば1語が3
2ビットの計算機上で、63ビット整数型の乗算を浮動
小数点命令を使用しないで実現できるようになり、応用
プログラムにおける計算精度を向上させるとともに、処
理負担を軽減することが可能になる。
As explained above, 1.According to the present invention, 2.For example, 1 word is 3.
It is now possible to perform 63-bit integer type multiplication on a 2-bit computer without using floating-point instructions, improving calculation accuracy in application programs and reducing the processing load.

【図面の簡単な説明】[Brief explanation of the drawing]

第1図は本発明の構成例 第2図は本発明の一実施例についての通用システムの例
。 第3図は本発明の一実施例による処理の例。 第4図は本発明の一実施例処理フローを示す。 図中、10は計算機、P1〜P3は処理過程。 R1−R4はレジスタ、Xは被乗数、Yは乗数を表す。
FIG. 1 shows a configuration example of the present invention. FIG. 2 shows an example of a general system according to an embodiment of the present invention. FIG. 3 is an example of processing according to an embodiment of the present invention. FIG. 4 shows a processing flow of an embodiment of the present invention. In the figure, 10 is a computer, and P1 to P3 are processing steps. R1-R4 are registers, X is a multiplicand, and Y is a multiplier.

Claims (1)

【特許請求の範囲】 nビットのデータを保持する複数のレジスタを備えると
ともに、nビットの2進整数による被乗数とnビットの
2進整数による乗数との乗算命令実行機構を有する計算
機を用いて、それぞれ2nビットの範囲内で表される2
進整数である被乗数Xおよび乗数Yの乗算を行う2進整
数乗算処理方法であって、 被乗数Xおよび乗数Yのそれぞれについて、上位nビッ
トと下位nビットとに分割して、各々上記nビットのレ
ジスタに割り当てる処理過程(P1)と、 上記nビットのレジスタに割り当てた被乗数Xおよび乗
数Yのそれぞれについて、上位nビットを左に1ビット
分シフトするとともに、下位nビットの最上位ビットを
、上位nビットの最下位ビットに繰り入れる処理過程(
P2)と、 被乗数Xの上位nビットおよび乗数Yの上位nビットの
値により、場合分けを行い、オーバフローの検出を行う
とともに、オーバフローとならない場合に、上記各nビ
ットのデータ間の演算により、被乗数Xと乗数Yとの積
を計算する処理過程(P3)とを備えたことを特徴とす
る2進整数乗算処理方法。
[Scope of Claims] Using a computer that is equipped with a plurality of registers that hold n-bit data and has a multiplication instruction execution mechanism for multiplying a multiplicand by an n-bit binary integer and a multiplier by an n-bit binary integer, 2, each represented within 2n bits
A binary integer multiplication processing method for multiplying a multiplicand X and a multiplier Y, which are base integers, by dividing each of the multiplicand X and the multiplier Y into upper n bits and lower n bits, and multiplying each of the n bits Processing process (P1) for allocating to registers: For each of the multiplicand The process of carrying into the least significant bit of n bits (
P2) and the values of the upper n bits of the multiplicand A binary integer multiplication processing method, comprising a processing step (P3) of calculating a product of a multiplicand X and a multiplier Y.
JP1033927A 1989-02-14 1989-02-14 Binary integer multiplication processing method Expired - Fee Related JP2583599B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP1033927A JP2583599B2 (en) 1989-02-14 1989-02-14 Binary integer multiplication processing method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP1033927A JP2583599B2 (en) 1989-02-14 1989-02-14 Binary integer multiplication processing method

Publications (2)

Publication Number Publication Date
JPH02212927A true JPH02212927A (en) 1990-08-24
JP2583599B2 JP2583599B2 (en) 1997-02-19

Family

ID=12400153

Family Applications (1)

Application Number Title Priority Date Filing Date
JP1033927A Expired - Fee Related JP2583599B2 (en) 1989-02-14 1989-02-14 Binary integer multiplication processing method

Country Status (1)

Country Link
JP (1) JP2583599B2 (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2008544344A (en) * 2005-05-09 2008-12-04 サンディスク アイエル リミテッド Large number multiplication method and device
CN111596888A (en) * 2020-03-02 2020-08-28 成都优博创通信技术股份有限公司 Method for realizing 32-bit unsigned number integer multiplication on low-bit-width MCU (microprogrammed control Unit)

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS60229140A (en) * 1984-04-26 1985-11-14 Nec Corp Double precision multiplier

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS60229140A (en) * 1984-04-26 1985-11-14 Nec Corp Double precision multiplier

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2008544344A (en) * 2005-05-09 2008-12-04 サンディスク アイエル リミテッド Large number multiplication method and device
JP4728392B2 (en) * 2005-05-09 2011-07-20 サンディスク アイエル リミテッド Large number multiplication method and device
KR101247164B1 (en) * 2005-05-09 2013-03-25 샌디스크 아이엘 엘티디 Large number multiplication method and device
CN111596888A (en) * 2020-03-02 2020-08-28 成都优博创通信技术股份有限公司 Method for realizing 32-bit unsigned number integer multiplication on low-bit-width MCU (microprogrammed control Unit)

Also Published As

Publication number Publication date
JP2583599B2 (en) 1997-02-19

Similar Documents

Publication Publication Date Title
KR102447636B1 (en) Apparatus and method for performing arithmetic operations for accumulating floating point numbers
US7991820B1 (en) One step binary summarizer
US8856759B2 (en) Method and apparatus providing COBOL decimal type arithmetic functions with improved performance
JPH0573269A (en) Adder
Lewin et al. Theory and design of digital computer systems
CN101300544B (en) Large number multiplication method and device
US20040117423A1 (en) Signed integer long division apparatus and methods for use with processors
JPH02212927A (en) Binary integer multiplication processing method
JPH0346024A (en) Floating point computing element
Koç A Tutorial on p-adic Arithmetic
JP2708526B2 (en) Binary integer division processing method
Trivedi et al. A Review on Single Precision Floating Point Arithmetic Unit of 32 bit Number
US20190205130A1 (en) Microprocessor with circuit for series calculation
Brown Binary arithmetic
Mia A Fast Multiplication Approach Using a Tree-Based Structure
JP3522167B2 (en) Arithmetic processing circuit and arithmetic processing method
Clementi et al. Pipelined addition, accumulation and multiplication of binary numbers on cellular automata
Manikandan et al. Implementation of Unsigned Multiplier using Efficient Carry-Select Adder for DSP Applications
Padgett et al. Fixed Point Numbers
Tinder et al. 86.1 Number Systems
JPS63214835A (en) Calculating system for floating decimal of polynomial
Cosentino et al. Adaptation of the Mactaggart and Jack complex multiplication algorithm for floating-point operators
Jamil Design of a Content Addressable Memory-based Parallel Processor implementing (− 1+ j)-based Binary Number System
JPH0222733A (en) Multiplication instruction processing system
JPH02178833A (en) Adder for adding data different in bit length

Legal Events

Date Code Title Description
LAPS Cancellation because of no payment of annual fees