[pypy-svn] r65722 - in pypy/extradoc/talk/icooolps2009: . code
cfbolz at codespeak.net
cfbolz at codespeak.net
Wed Jun 10 14:42:04 CEST 2009
Author: cfbolz
Date: Wed Jun 10 14:42:01 2009
New Revision: 65722
Modified:
pypy/extradoc/talk/icooolps2009/code/full.txt
pypy/extradoc/talk/icooolps2009/code/no-green-folding.txt
pypy/extradoc/talk/icooolps2009/code/normal-tracing.txt
pypy/extradoc/talk/icooolps2009/code/tlr-paper-full.py
pypy/extradoc/talk/icooolps2009/code/tlr-paper.py
pypy/extradoc/talk/icooolps2009/paper.tex
Log:
undo the smallification of the last commit.
Modified: pypy/extradoc/talk/icooolps2009/code/full.txt
==============================================================================
--- pypy/extradoc/talk/icooolps2009/code/full.txt (original)
+++ pypy/extradoc/talk/icooolps2009/code/full.txt Wed Jun 10 14:42:01 2009
@@ -1,4 +1,4 @@
-{
+{\small
\begin{verbatim}
loop_start(a0, regs0)
# MOV_R_A 0
Modified: pypy/extradoc/talk/icooolps2009/code/no-green-folding.txt
==============================================================================
--- pypy/extradoc/talk/icooolps2009/code/no-green-folding.txt (original)
+++ pypy/extradoc/talk/icooolps2009/code/no-green-folding.txt Wed Jun 10 14:42:01 2009
@@ -1,4 +1,4 @@
-{
+{\small
\begin{verbatim}
loop_start(a0, regs0, bytecode0, pc0)
# MOV_R_A 0
Modified: pypy/extradoc/talk/icooolps2009/code/normal-tracing.txt
==============================================================================
--- pypy/extradoc/talk/icooolps2009/code/normal-tracing.txt (original)
+++ pypy/extradoc/talk/icooolps2009/code/normal-tracing.txt Wed Jun 10 14:42:01 2009
@@ -1,4 +1,4 @@
-{
+{\small
\begin{verbatim}
loop_start(a0, regs0, bytecode0, pc0)
opcode0 = strgetitem(bytecode0, pc0)
Modified: pypy/extradoc/talk/icooolps2009/code/tlr-paper-full.py
==============================================================================
--- pypy/extradoc/talk/icooolps2009/code/tlr-paper-full.py (original)
+++ pypy/extradoc/talk/icooolps2009/code/tlr-paper-full.py Wed Jun 10 14:42:01 2009
@@ -1,4 +1,4 @@
-{
+{\small
\begin{verbatim}
tlrjitdriver = JitDriver(greens = ['pc', 'bytecode'],
reds = ['a', 'regs'])
Modified: pypy/extradoc/talk/icooolps2009/code/tlr-paper.py
==============================================================================
--- pypy/extradoc/talk/icooolps2009/code/tlr-paper.py (original)
+++ pypy/extradoc/talk/icooolps2009/code/tlr-paper.py Wed Jun 10 14:42:01 2009
@@ -1,4 +1,4 @@
-{
+{\small
\begin{verbatim}
def interpret(bytecode, a):
regs = [0] * 256
Modified: pypy/extradoc/talk/icooolps2009/paper.tex
==============================================================================
--- pypy/extradoc/talk/icooolps2009/paper.tex (original)
+++ pypy/extradoc/talk/icooolps2009/paper.tex Wed Jun 10 14:42:01 2009
@@ -296,7 +296,7 @@
they are the place where the check for a closed loop is performed.
\begin{figure}
-{
+{\small
\begin{verbatim}
def f(a, b):
if b % 46 == 41:
@@ -388,7 +388,7 @@
\label{fig:tlr-basic}
\end{figure}
\begin{figure}
-{
+{\small
\begin{verbatim}
MOV_A_R 0 # i = a
MOV_A_R 1 # copy of 'a'
@@ -732,7 +732,7 @@
\begin{figure}[h]
\label{fig:bench-example}
-{
+{\small
\begin{verbatim}
def f(a):
t = (1, 2, 3)
More information about the Pypy-commit
mailing list