4.3BSD-Reno/share/man/cat1/px.0
PX(1) UNIX Reference Manual PX(1)
NNAAMMEE
ppxx - Pascal interpreter
SSYYNNOOPPSSIISS
ppxx [_o_b_j [_a_r_g_u_m_e_n_t ...]]
DDEESSCCRRIIPPTTIIOONN
PPxx interprets the abstract machine code generated by pi(1). The first
argument is the file to be interpreted, and defaults to _o_b_j; remaining
arguments are available to the Pascal program using the built-ins _a_r_g_v
and _a_r_g_c. PPxx is also invoked by ppiixx when running `load and go'.
If the program terminates abnormally an error message and a control flow
backtrace are printed. The number of statements executed and total exe-
cution time are printed after normal termination. The pp option of ppii
suppresses all of this except the message indicating the cause of abnor-
mal termination.
FFIILLEESS
_o_b_j default object file
_p_m_o_n._o_u_t profile data file
SSEEEE AALLSSOO
_B_e_r_k_e_l_e_y _P_a_s_c_a_l _U_s_e_r'_s _M_a_n_u_a_l
pi(1), pix(1)
DDIIAAGGNNOOSSTTIICCSS
Most run-time error messages are self-explanatory. Some of the more
unusual ones are:
Reference to an inactive file
A file other than _i_n_p_u_t or _o_u_t_p_u_t was used before a call to _r_e_s_e_t
or _r_e_w_r_i_t_e.
Statement count limit exceeded
The limit of 500,000 executed statements (which prevents excessive
looping or recursion) has been exceeded.
Bad data found on integer read
Bad data found on real read
Usually, non-numeric input was found for a number. For reals, Pas-
cal requires digits before and after the decimal point so that
numbers like `.1' or `21.' evoke the second diagnostic.
panic:
_S_o_m_e _m_e_s_s_a_g_e Indicates an internal inconsistency detected in ppxx
probably due to a Pascal system bug.
AAUUTTHHOORRSS
Charles B. Haley, William Joy, and Ken Thompson
VAX-11 version by Kirk McKusick
HHIISSTTOORRYY
PPxx appeared in 3 BSD.
BBUUGGSS
Post-mortem traceback is not limited; infinite recursion leads to almost
infinite traceback.