[svn:parrot] r39867 - in trunk: . compilers/pge examples/pge

cotto at svn.parrot.org cotto at svn.parrot.org
Thu Jul 2 17:12:37 UTC 2009


Author: cotto
Date: Thu Jul  2 17:12:36 2009
New Revision: 39867
URL: https://trac.parrot.org/parrot/changeset/39867

Log:
[examples] move PGE demo to examples where it'll be tested for compilability automatically
Coke++ for the suggestion

Added:
   trunk/examples/pge/
   trunk/examples/pge/demo.pir   (props changed)
      - copied unchanged from r39866, trunk/compilers/pge/demo.pir
Deleted:
   trunk/compilers/pge/demo.pir
Modified:
   trunk/MANIFEST

Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST	Thu Jul  2 07:07:07 2009	(r39866)
+++ trunk/MANIFEST	Thu Jul  2 17:12:36 2009	(r39867)
@@ -1,7 +1,7 @@
 # ex: set ro:
 # $Id$
 #
-# generated by tools/dev/mk_manifest_and_skip.pl Thu Jul  2 07:01:15 2009 UT
+# generated by tools/dev/mk_manifest_and_skip.pl Thu Jul  2 17:10:26 2009 UT
 #
 # See below for documentation on the format of this file.
 #
@@ -138,7 +138,6 @@
 compilers/pge/PGE/builtins.pg                               [pge]
 compilers/pge/README.pod                                    []doc
 compilers/pge/STATUS                                        [pge]
-compilers/pge/demo.pir                                      [pge]
 compilers/pirc/README.pod                                   []doc
 compilers/pirc/TODO                                         [pirc]
 compilers/pirc/heredoc/heredocmain.c                        [pirc]
@@ -738,6 +737,7 @@
 examples/past/01-sub.pir                                    [examples]
 examples/past/blocktype_immediate.pir                       [examples]
 examples/past/four_plus_one.pir                             [examples]
+examples/pge/demo.pir                                       [examples]
 examples/pir/befunge/Changes                                [examples]
 examples/pir/befunge/Configure.pl                           [examples]
 examples/pir/befunge/MAINTAINER                             [examples]

Deleted: trunk/compilers/pge/demo.pir
==============================================================================
--- trunk/compilers/pge/demo.pir	Thu Jul  2 17:12:36 2009	(r39866)
+++ /dev/null	00:00:00 1970	(deleted)
@@ -1,128 +0,0 @@
-# Copyright (C) 2005-2009, Parrot Foundation.
-# $Id$
-
-.include "errors.pasm"
-.sub _main
-    .local string x
-    .local string pattern
-    .local int istraced
-    .local pmc stdin
-    .local pmc rulesub
-    .local pmc pir
-    .local pmc exp
-    .local pmc match
-    .local pmc p6rule_compile
-    .local pmc p5regexp_compile
-    .local pmc glob_compile
-    .local int istrace
-    .local string gname
-
-    errorson .PARROT_ERRORS_PARAM_COUNT_FLAG
-
-    load_bytecode "PGE.pbc"
-    load_bytecode "dumper.pir"
-    load_bytecode "PGE/Dumper.pir"
-    load_bytecode "PGE/Glob.pir"
-    load_bytecode "PGE/Text.pir"
-    load_bytecode "PGE/Util.pir"
-    p6rule_compile = compreg "PGE::Perl6Regex"
-    glob_compile = compreg "PGE::Glob"
-    p5regexp_compile = compreg "PGE::P5Regex"
-    istrace = 0
-    null rulesub
-
-  read_loop:
-    print "\ninput \"regex <pattern>\", \"glob <pattern>\", \"save <name>\",\n"
-    print "target string, \"pir\", \"exp\", \"trace\", \"next\"\n"
-    getstdin stdin
-    readline x, stdin
-    length $I0, x
-    if $I0 < 1 goto end_demo
-    $I0 = index x, " "
-    if $I0 > 0 goto get_cmd
-    $I0 = index x, "\n"
-  get_cmd:
-    $S0 = substr x, 0, $I0
-    chopn x, 1
-    if $S0 == "next" goto match_next
-    if $S0 == "regex" goto make_p6rule
-    if $S0 == "glob" goto make_glob
-    if $S0 == "save" goto save_rule
-    if $S0 == "pir" goto print_pir
-    if $S0 == "exp" goto print_exp
-    if $S0 == "trace" goto toggle_trace
-    if $S0 == "p5regex" goto make_regexp
-
-    if_null rulesub, match_nopattern
-    match = rulesub(x)
-  match_result:
-    unless match goto match_fail
-    print "match succeeded\n"
-    $P0 = get_global "_dumper"
-    $P0(match, "$/")
-    goto read_loop
-  match_fail:
-    print "match failed\n"
-    goto read_loop
-  match_nopattern:
-    print "no pattern entered yet\n"
-    goto read_loop
-
-  match_next:
-    match."next"()
-    goto match_result
-
-  make_glob:
-    pattern = substr x, 5
-    (rulesub) = glob_compile(pattern)
-    goto read_loop
-
-  make_p6rule:
-    pattern = substr x, 5
-    (rulesub) = p6rule_compile(pattern)
-    goto read_loop
-
-  make_regexp:
-    pattern = substr x, 7
-    (rulesub) = p5regexp_compile(pattern)
-    goto read_loop
-
-  save_rule:
-    if_null rulesub, match_nopattern
-    x = substr x, 5
-    set_global x, rulesub
-    print "Saved as "
-    print x
-    print "\n"
-    goto read_loop
-
-
-  print_pir:
-    if_null rulesub, match_nopattern
-    print pir
-    goto read_loop
-
-  print_exp:
-    if_null rulesub, match_nopattern
-    $P0 = get_global "_dumper"
-    $P0(exp, "exp")
-    goto read_loop
-
-  toggle_trace:
-    istrace = not istrace
-    trace istrace
-    unless istrace goto trace_off
-    print "Tracing is now on\n"
-    goto read_loop
-  trace_off:
-    print "Tracing is now off\n"
-    goto read_loop
-
-  end_demo:
-.end
-
-# Local Variables:
-#   mode: pir
-#   fill-column: 100
-# End:
-# vim: expandtab shiftwidth=4 ft=pir:

Copied: trunk/examples/pge/demo.pir (from r39866, trunk/compilers/pge/demo.pir)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ trunk/examples/pge/demo.pir	Thu Jul  2 17:12:36 2009	(r39867, copy of r39866, trunk/compilers/pge/demo.pir)
@@ -0,0 +1,128 @@
+# Copyright (C) 2005-2009, Parrot Foundation.
+# $Id$
+
+.include "errors.pasm"
+.sub _main
+    .local string x
+    .local string pattern
+    .local int istraced
+    .local pmc stdin
+    .local pmc rulesub
+    .local pmc pir
+    .local pmc exp
+    .local pmc match
+    .local pmc p6rule_compile
+    .local pmc p5regexp_compile
+    .local pmc glob_compile
+    .local int istrace
+    .local string gname
+
+    errorson .PARROT_ERRORS_PARAM_COUNT_FLAG
+
+    load_bytecode "PGE.pbc"
+    load_bytecode "dumper.pir"
+    load_bytecode "PGE/Dumper.pir"
+    load_bytecode "PGE/Glob.pir"
+    load_bytecode "PGE/Text.pir"
+    load_bytecode "PGE/Util.pir"
+    p6rule_compile = compreg "PGE::Perl6Regex"
+    glob_compile = compreg "PGE::Glob"
+    p5regexp_compile = compreg "PGE::P5Regex"
+    istrace = 0
+    null rulesub
+
+  read_loop:
+    print "\ninput \"regex <pattern>\", \"glob <pattern>\", \"save <name>\",\n"
+    print "target string, \"pir\", \"exp\", \"trace\", \"next\"\n"
+    getstdin stdin
+    readline x, stdin
+    length $I0, x
+    if $I0 < 1 goto end_demo
+    $I0 = index x, " "
+    if $I0 > 0 goto get_cmd
+    $I0 = index x, "\n"
+  get_cmd:
+    $S0 = substr x, 0, $I0
+    chopn x, 1
+    if $S0 == "next" goto match_next
+    if $S0 == "regex" goto make_p6rule
+    if $S0 == "glob" goto make_glob
+    if $S0 == "save" goto save_rule
+    if $S0 == "pir" goto print_pir
+    if $S0 == "exp" goto print_exp
+    if $S0 == "trace" goto toggle_trace
+    if $S0 == "p5regex" goto make_regexp
+
+    if_null rulesub, match_nopattern
+    match = rulesub(x)
+  match_result:
+    unless match goto match_fail
+    print "match succeeded\n"
+    $P0 = get_global "_dumper"
+    $P0(match, "$/")
+    goto read_loop
+  match_fail:
+    print "match failed\n"
+    goto read_loop
+  match_nopattern:
+    print "no pattern entered yet\n"
+    goto read_loop
+
+  match_next:
+    match."next"()
+    goto match_result
+
+  make_glob:
+    pattern = substr x, 5
+    (rulesub) = glob_compile(pattern)
+    goto read_loop
+
+  make_p6rule:
+    pattern = substr x, 5
+    (rulesub) = p6rule_compile(pattern)
+    goto read_loop
+
+  make_regexp:
+    pattern = substr x, 7
+    (rulesub) = p5regexp_compile(pattern)
+    goto read_loop
+
+  save_rule:
+    if_null rulesub, match_nopattern
+    x = substr x, 5
+    set_global x, rulesub
+    print "Saved as "
+    print x
+    print "\n"
+    goto read_loop
+
+
+  print_pir:
+    if_null rulesub, match_nopattern
+    print pir
+    goto read_loop
+
+  print_exp:
+    if_null rulesub, match_nopattern
+    $P0 = get_global "_dumper"
+    $P0(exp, "exp")
+    goto read_loop
+
+  toggle_trace:
+    istrace = not istrace
+    trace istrace
+    unless istrace goto trace_off
+    print "Tracing is now on\n"
+    goto read_loop
+  trace_off:
+    print "Tracing is now off\n"
+    goto read_loop
+
+  end_demo:
+.end
+
+# Local Variables:
+#   mode: pir
+#   fill-column: 100
+# End:
+# vim: expandtab shiftwidth=4 ft=pir:


More information about the parrot-commits mailing list