cvsuser     03/10/14 01:36:06

  Modified:    docs     jit.pod
               languages/imcc/t/syn file.t
               t/op     string.t
  Log:
  enable -j, -P for PIR tests; add end op to substr; dddp doc
  
  Revision  Changes    Path
  1.16      +1 -8      parrot/docs/jit.pod
  
  Index: jit.pod
  ===================================================================
  RCS file: /cvs/public/parrot/docs/jit.pod,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -w -r1.15 -r1.16
  --- jit.pod   2 Oct 2003 14:24:19 -0000       1.15
  +++ jit.pod   14 Oct 2003 08:36:01 -0000      1.16
  @@ -535,11 +535,6 @@
        echo "b runops_jit
        r -d -j $1.pbc
        n
  -     n
  -     n
  -     n
  -     n
  -     n
        add-symbol-file $1.o 0
        s
        " > .ddd
  @@ -548,9 +543,7 @@
   
   Run this with e.g. I<dddp t/op/jit_2>, then turn on the register status,
   I<step> or I<nexti> through the source, or set break points as with any
  -other language. Though - as we don't have line number info currently -
  -you might delete empty lines and join labels with ops in the pasm file
  -before.
  +other language.
   
   You can examine parrot registers via the debugger or even set them and
   you can always step into external opcode and look at I<*interpreter>.
  
  
  
  1.13      +0 -4      parrot/languages/imcc/t/syn/file.t
  
  Index: file.t
  ===================================================================
  RCS file: /cvs/public/parrot/languages/imcc/t/syn/file.t,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -w -r1.12 -r1.13
  --- file.t    2 Oct 2003 17:13:42 -0000       1.12
  +++ file.t    14 Oct 2003 08:36:03 -0000      1.13
  @@ -148,7 +148,6 @@
   
   output_is(<<'CODE', <<'OUT', "call sub in external pbc");
   .pcc_sub _sub1 prototyped
  -    bounds 1 # disable JIT
       print "sub1\n"
       load_bytecode "temp.pbc"
       print "loaded\n"
  @@ -183,7 +182,6 @@
   output_is(<<'CODE', <<'OUT', "call sub in external pbc, return");
   .pcc_sub _sub1 prototyped
       print "sub1\n"
  -    bounds 1 # disable JIT
       load_bytecode "temp.pbc"
       print "loaded\n"
       $P0 = global "_sub2"
  @@ -222,7 +220,6 @@
   output_is(<<'CODE', <<'OUT', "call sub in external pbc with 2 subs");
   .pcc_sub _sub1 prototyped
       print "sub1\n"
  -    bounds 1 # disable JIT
       load_bytecode "temp.pbc"
       print "loaded\n"
       $P0 = global "_sub2"
  @@ -254,7 +251,6 @@
   output_is(<<'CODE', <<'OUT', "call sub in external imc, return");
   .pcc_sub _sub1 prototyped
       print "sub1\n"
  -    bounds 1 # disable JIT
       load_bytecode "temp.imc"
       print "loaded\n"
       $P0 = global "_sub2"
  
  
  
  1.59      +3 -2      parrot/t/op/string.t
  
  Index: string.t
  ===================================================================
  RCS file: /cvs/public/parrot/t/op/string.t,v
  retrieving revision 1.58
  retrieving revision 1.59
  diff -u -w -r1.58 -r1.59
  --- string.t  14 Oct 2003 02:47:18 -0000      1.58
  +++ string.t  14 Oct 2003 08:36:06 -0000      1.59
  @@ -485,6 +485,7 @@
     set S0, "JAPH"
     substr S1, S0, 2
     print S1
  +  end
   CODE
   
   output_is( <<'CODE', '<><', "concat_s_s|sc, null onto null" );
  
  
  

Reply via email to