$fp = fopen("statistics", "a");
$remoteaddress = gethostbyaddr($REMOTE_ADDR);
$mydate = date("j M Y H:i");
fwrite($fp,$mydate);
fwrite($fp,",");
fwrite($fp,$remoteaddress);
fwrite($fp,",");
fwrite($fp,$REMOTE_ADDR);
fwrite($fp,",");
fwrite($fp,$REQUEST_URI);
fwrite($fp,"\n");
fclose($fp);
?>

|
CSI Instruction Set
According to the function they perform CSI instructions are organized in the following
groups:
-
Simple Arithmetic and Logical Instructions
include
standard arithmetic and logical instructions add, subtract, multiply, and, etc.
-
Comparison-related instructions
perform compare operation during
their execution.
-
Accumulation-Related Instructions
perform accumulations during
their execution.
-
Stream Reorganization Instructions
provide a form of conditional stream processing alternative
to the masked execution. For detail, see
PDCS-02 paper
-
Special-Purpose Instructions
includes instructions which specify
the complex arithmetic operations, such as the Paeth prediction,
Sum of Absolute Differences.
-
Auxiliary Instructions
are used to move data to or from the CSI registers.
!!!UNDER CONSTRUCTION!!!
|
|