gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-18-


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-18-gc974d36
Date: Wed, 29 May 2013 17:34:29 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, gawk-4.1-stable has been updated
       via  c974d36e7386c93f809be67cba108df71d267f45 (commit)
       via  193a78e55fc2e0cd54e0da204d2f9eb0f90f1fb2 (commit)
      from  94b64f95755e183578d74fafa3e6403a1f23545a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=c974d36e7386c93f809be67cba108df71d267f45

commit c974d36e7386c93f809be67cba108df71d267f45
Author: Arnold D. Robbins <address@hidden>
Date:   Wed May 29 20:34:07 2013 +0300

    Additional profiling bug fixes.

diff --git a/ChangeLog b/ChangeLog
index 53f2f17..c7aa451 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2013-05-29         Arnold D. Robbins     <address@hidden>
+
+       * profile.c (pp_group3): Renamed from pp_concat. Change all calls.
+       (is_binary): Change return type to bool.
+       (is_scalar): New function.
+       (pp_concat): New function to handle concatenation operator better.
+       (pprint): Call it at case Op_concat.
+       General: Add leading comments as needed.
+
 2013-05-28         Arnold D. Robbins     <address@hidden>
 
        * main.c (main): Add minor hack to not run code if pretty printing
diff --git a/profile.c b/profile.c
index 391136d..095de09 100644
--- a/profile.c
+++ b/profile.c
@@ -29,8 +29,10 @@ static void pprint(INSTRUCTION *startp, INSTRUCTION *endp, 
bool in_for_header);
 static void pp_parenthesize(NODE *n);
 static void parenthesize(int type, NODE *left, NODE *right);
 static char *pp_list(int nargs, const char *paren, const char *delim);
-static char *pp_concat(const char *s1, const char *s2, const char *s3);
-static int is_binary(int type);
+static char *pp_group3(const char *s1, const char *s2, const char *s3);
+static char *pp_concat(int nargs);
+static bool is_binary(int type);
+static bool is_scalar(int type);
 static int prec_level(int type);
 static void pp_push(int type, char *s, int flag);
 static NODE *pp_pop(void);
@@ -44,7 +46,6 @@ const char *redir2str(int redirtype);
 #define DONT_FREE 1
 #define CAN_FREE  2
 
-
 static RETSIGTYPE dump_and_exit(int signum) ATTRIBUTE_NORETURN;
 static RETSIGTYPE just_dump(int signum);
 
@@ -127,6 +128,8 @@ indent_out(void)
        assert(indent_level >= 0);
 }
 
+/* pp_push --- push a pretty printed string onto the stack */
+
 static void
 pp_push(int type, char *s, int flag)
 {
@@ -140,6 +143,8 @@ pp_push(int type, char *s, int flag)
        pp_stack = n;
 }
 
+/* pp_pop --- pop a pretty printed string off the stack */
+
 static NODE *
 pp_pop()
 {
@@ -149,6 +154,8 @@ pp_pop()
        return n;
 }
 
+/* pp_free --- release a pretty printed node */
+
 static void
 pp_free(NODE *n)
 {
@@ -157,9 +164,7 @@ pp_free(NODE *n)
        freenode(n);
 }
 
-/*
- * pprint --- pretty print a program segment
- */
+/* pprint --- pretty print a program segment */
 
 static void
 pprint(INSTRUCTION *startp, INSTRUCTION *endp, bool in_for_header)
@@ -234,7 +239,7 @@ pprint(INSTRUCTION *startp, INSTRUCTION *endp, bool 
in_for_header)
                                str = pp_string(m->stptr, m->stlen, '"');
                                if ((m->flags & INTLSTR) != 0) {
                                        char *tmp = str;
-                                       str = pp_concat("_", tmp, "");
+                                       str = pp_group3("_", tmp, "");
                                        efree(tmp);
                                }
                                pp_push(pc->opcode, str, CAN_FREE);
@@ -291,7 +296,7 @@ pprint(INSTRUCTION *startp, INSTRUCTION *endp, bool 
in_for_header)
                        case Op_assign_concat:
                                t2 = pp_pop(); /* l.h.s. */
                                t1 = pp_pop();
-                               tmp = pp_concat(t2->pp_str, op2str(Op_concat), 
t1->pp_str);
+                               tmp = pp_group3(t2->pp_str, op2str(Op_concat), 
t1->pp_str);
                                fprintf(prof_fp, "%s%s%s", t2->pp_str, 
op2str(Op_assign), tmp);
                                efree(tmp);
 cleanup:
@@ -311,7 +316,7 @@ cleanup:
                case Op_subscript:
                        tmp = pp_list(pc->sub_count, op2str(pc->opcode), ", ");
                        t1 = pp_pop();
-                       str = pp_concat(t1->pp_str, tmp, "");
+                       str = pp_group3(t1->pp_str, tmp, "");
                        efree(tmp);
                        pp_free(t1);
                        pp_push(pc->opcode, str, CAN_FREE);
@@ -323,7 +328,7 @@ cleanup:
                        t2 = pp_pop();
                        t1 = pp_pop();
                        parenthesize(pc->opcode, t1, t2);
-                       str = pp_concat(t1->pp_str, op2str(pc->opcode), 
t2->pp_str);
+                       str = pp_group3(t1->pp_str, op2str(pc->opcode), 
t2->pp_str);
                        pp_free(t1);
                        pp_free(t2);
                        pp_push(pc->opcode, str, CAN_FREE);
@@ -345,7 +350,7 @@ cleanup:
                                tmp = pp_number(m);
                        else
                                tmp = pp_string(m->stptr, m->stlen, '"');
-                       str = pp_concat(t1->pp_str, op2str(pc->opcode), tmp);
+                       str = pp_group3(t1->pp_str, op2str(pc->opcode), tmp);
                        efree(tmp);
                        pp_free(t1);
                        pp_push(pc->opcode, str, CAN_FREE);
@@ -366,7 +371,7 @@ cleanup:
                        t2 = pp_pop();
                        t1 = pp_pop();
                        parenthesize(pc->opcode, t1, t2);
-                       str = pp_concat(t1->pp_str, op2str(pc->opcode), 
t2->pp_str);
+                       str = pp_group3(t1->pp_str, op2str(pc->opcode), 
t2->pp_str);
                        pp_free(t1);
                        pp_free(t2);
                        pp_push(pc->opcode, str, CAN_FREE);
@@ -378,9 +383,9 @@ cleanup:
                case Op_postdecrement:
                        t1 = pp_pop();
                        if (pc->opcode == Op_preincrement || pc->opcode == 
Op_predecrement)
-                               str = pp_concat(op2str(pc->opcode), t1->pp_str, 
"");
+                               str = pp_group3(op2str(pc->opcode), t1->pp_str, 
"");
                        else
-                               str = pp_concat(t1->pp_str, op2str(pc->opcode), 
"");
+                               str = pp_group3(t1->pp_str, op2str(pc->opcode), 
"");
                        pp_free(t1);
                        pp_push(pc->opcode, str, CAN_FREE);
                        break;
@@ -394,7 +399,7 @@ cleanup:
                                pp_parenthesize(t1);
 
                        /* optypes table (eval.c) includes space after ! */
-                       str = pp_concat(op2str(pc->opcode), t1->pp_str, "");
+                       str = pp_group3(op2str(pc->opcode), t1->pp_str, "");
                        pp_free(t1);
                        pp_push(pc->opcode, str, CAN_FREE);
                        break;
@@ -408,7 +413,7 @@ cleanup:
                case Op_assign_exp:
                        t2 = pp_pop(); /* l.h.s. */
                        t1 = pp_pop();
-                       str = pp_concat(t2->pp_str, op2str(pc->opcode), 
t1->pp_str);
+                       str = pp_group3(t2->pp_str, op2str(pc->opcode), 
t1->pp_str);
                        pp_free(t2);
                        pp_free(t1);
                        pp_push(pc->opcode, str, CAN_FREE);
@@ -427,8 +432,7 @@ cleanup:
                        break; 
 
                case Op_concat:
-                       str = pp_list(pc->expr_count, NULL,
-                                                       (pc->concat_flag & 
CSUBSEP) != 0 ? ", " : op2str(Op_concat));
+                       str = pp_concat(pc->expr_count);
                        pp_push(Op_concat, str, CAN_FREE);
                        break;
 
@@ -462,12 +466,12 @@ cleanup:
                        array = t1->pp_str;
                        if (pc->expr_count > 1) {
                                sub = pp_list(pc->expr_count, "()", ", ");
-                               str = pp_concat(sub, op2str(Op_in_array), 
array);
+                               str = pp_group3(sub, op2str(Op_in_array), 
array);
                                efree(sub);
                        } else {
                                t2 = pp_pop();
                                sub = t2->pp_str;
-                               str = pp_concat(sub, op2str(Op_in_array), 
array);
+                               str = pp_group3(sub, op2str(Op_in_array), 
array);
                                pp_free(t2);
                        }
                        pp_free(t1);
@@ -504,7 +508,7 @@ cleanup:
                        else if ((pc->sub_flags & GENSUB) != 0)
                                fname = "gensub";
                        tmp = pp_list(pc->expr_count, "()", ", ");
-                       str = pp_concat(fname, tmp, "");
+                       str = pp_group3(fname, tmp, "");
                        efree(tmp);
                        pp_push(Op_sub_builtin, str, CAN_FREE);
                }
@@ -521,10 +525,10 @@ cleanup:
                        if (fname != NULL) {
                                if (pc->expr_count > 0) {
                                        tmp = pp_list(pc->expr_count, "()", ", 
");
-                                       str = pp_concat(fname, tmp, "");
+                                       str = pp_group3(fname, tmp, "");
                                        efree(tmp);
                                } else
-                                       str = pp_concat(fname, "()", "");
+                                       str = pp_group3(fname, "()", "");
                                pp_push(Op_builtin, str, CAN_FREE);
                        } else
                                fatal(_("internal error: builtin with null 
fname"));
@@ -535,7 +539,7 @@ cleanup:
                case Op_K_printf:
                case Op_K_print_rec:
                        if (pc->opcode == Op_K_print_rec)
-                               tmp = pp_concat(" ", op2str(Op_field_spec), 
"0");
+                               tmp = pp_group3(" ", op2str(Op_field_spec), 
"0");
                        else if (pc->redir_type != 0)
                                tmp = pp_list(pc->expr_count, "()", ", ");
                        else {
@@ -585,12 +589,12 @@ cleanup:
                                if (is_binary(t2->type))
                                        pp_parenthesize(t2);
                                txt = t2->pp_str;
-                               str = pp_concat(txt, op2str(pc->opcode), restr);
+                               str = pp_group3(txt, op2str(pc->opcode), restr);
                                pp_free(t2);
                        } else {
                                NODE *re = m->re_exp;
                                restr = pp_string(re->stptr, re->stlen, '/');
-                               str = pp_concat(txt, op2str(pc->opcode), restr);
+                               str = pp_group3(txt, op2str(pc->opcode), restr);
                                efree(restr);
                        }
                        pp_free(t1);
@@ -602,10 +606,10 @@ cleanup:
                case Op_K_getline_redir:
                        if (pc->into_var) {
                                t1 = pp_pop();
-                               tmp = pp_concat(op2str(Op_K_getline), " ", 
t1->pp_str);
+                               tmp = pp_group3(op2str(Op_K_getline), " ", 
t1->pp_str);
                                pp_free(t1);
                        } else
-                               tmp = pp_concat(op2str(Op_K_getline), "", "");
+                               tmp = pp_group3(op2str(Op_K_getline), "", "");
 
                        if (pc->redir_type != 0) {
                                int before = (pc->redir_type == redirect_pipein
@@ -615,9 +619,9 @@ cleanup:
                                if (is_binary(t2->type))
                                        pp_parenthesize(t2);
                                if (before)
-                                       str = pp_concat(t2->pp_str, 
redir2str(pc->redir_type), tmp);
+                                       str = pp_group3(t2->pp_str, 
redir2str(pc->redir_type), tmp);
                                else
-                                       str = pp_concat(tmp, 
redir2str(pc->redir_type), t2->pp_str);
+                                       str = pp_group3(tmp, 
redir2str(pc->redir_type), t2->pp_str);
                                efree(tmp);
                                pp_free(t2);
                        } else
@@ -639,10 +643,10 @@ cleanup:
                        pcount = (pc + 1)->expr_count;
                        if (pcount > 0) {
                                tmp = pp_list(pcount, "()", ", ");
-                               str = pp_concat(pre, fname, tmp);
+                               str = pp_group3(pre, fname, tmp);
                                efree(tmp);
                        } else
-                               str = pp_concat(pre, fname, "()");
+                               str = pp_group3(pre, fname, "()");
                        if (pc->opcode == Op_indirect_func_call) {
                                t1 = pp_pop();  /* indirect var */
                                pp_free(t1);
@@ -682,7 +686,7 @@ cleanup:
                        pprint(ip->condpair_left->nexti, ip->condpair_right, 
false);
                        t2 = pp_pop();
                        t1 = pp_pop();
-                       str = pp_concat(t1->pp_str, ", ", t2->pp_str);
+                       str = pp_group3(t1->pp_str, ", ", t2->pp_str);
                        pp_free(t1);
                        pp_free(t2);
                        pp_push(Op_line_range, str, CAN_FREE);
@@ -1065,7 +1069,40 @@ prec_level(int type)
        }
 }
 
-static int
+/* is_scalar --- return true if scalar, false otherwise */
+
+static bool
+is_scalar(int type)
+{
+       switch (type) {
+       case Op_push_lhs:
+       case Op_push_param:
+       case Op_push_array:
+       case Op_push:
+       case Op_push_i:
+       case Op_push_re:
+       case Op_subscript:
+       case Op_subscript_lhs:
+       case Op_func_call:
+       case Op_builtin:
+       case Op_field_spec:
+       case Op_field_spec_lhs:
+       case Op_preincrement:
+       case Op_predecrement:
+       case Op_postincrement:
+       case Op_postdecrement:
+       case Op_unary_minus:
+       case Op_not:
+               return true;
+
+       default:
+               return false;
+       }
+}
+
+/* is_binary --- return true if type represents a binary operator */
+
+static bool
 is_binary(int type)
 {
        switch (type) {
@@ -1111,7 +1148,7 @@ is_binary(int type)
        }
 }
 
-/* parenthesize --- parenthesize an expression in stack */
+/* pp_parenthesize --- parenthesize an expression in stack */
 
 static void
 pp_parenthesize(NODE *sp)
@@ -1131,6 +1168,8 @@ pp_parenthesize(NODE *sp)
        sp->flags |= CAN_FREE;
 }
 
+/* parenthesize --- parenthesize two nodes */
+
 static void
 parenthesize(int type, NODE *left, NODE *right)
 {
@@ -1183,7 +1222,7 @@ pp_string(const char *in_str, size_t len, int delim)
                obufout = obuf + olen; \
                ofre += osiz; \
                osiz *= 2; \
-} ofre -= (l)
+       } ofre -= (l)
 
        osiz = len + 3 + 2;     /* initial size; 3 for delim + terminating null 
*/
        emalloc(obuf, char *, osiz, "pp_string");
@@ -1258,6 +1297,8 @@ pp_node(NODE *n)
        return pp_string(n->stptr, n->stlen, '"');
 }
 
+/* pp_list --- pretty print a list, with surrounding characters and separator 
*/
+
 static NODE **pp_args = NULL;
 static int npp_args;
 
@@ -1313,8 +1354,88 @@ pp_list(int nargs, const char *paren, const char *delim)
        return str;                                     
 }
 
+/* pp_concat --- handle concatenation and correct parenthesizing of 
expressions */
+
+static char *
+pp_concat(int nargs)
+{
+       NODE *r;
+       char *str, *s;
+       size_t len;
+       static const size_t delimlen = 1;       /* " " */
+       int i;
+       int pl_l, pl_r;
+
+       if (pp_args == NULL) {
+               npp_args = nargs;
+               emalloc(pp_args, NODE **, (nargs + 2) * sizeof(NODE *), 
"pp_concat");
+       } else if (nargs > npp_args) {
+               npp_args = nargs;
+               erealloc(pp_args, NODE **, (nargs + 2) * sizeof(NODE *), 
"pp_concat");
+       }
+
+       /*
+        * items are on the stack in reverse order that they
+        * will be printed to pop them off backwards.
+        */
+
+       len = -delimlen;
+       for (i = nargs; i >= 1; i--) {
+               r = pp_args[i] = pp_pop();
+               len += r->pp_len + delimlen + 2;
+       }
+
+       emalloc(str, char *, len + 1, "pp_concat");
+       s = str;
+
+       /* now copy in */
+       for (i = 1; i < nargs; i++) {
+               r = pp_args[i];
+
+               pl_l = prec_level(pp_args[i]->type);
+               pl_r = prec_level(pp_args[i+1]->type);
+
+               if (is_scalar(pp_args[i]->type) && 
is_scalar(pp_args[i+1]->type)) {
+                       memcpy(s, r->pp_str, r->pp_len);
+                       s += r->pp_len;
+               } else if (pl_l <= pl_r || is_scalar(pp_args[i+1]->type)) {
+                       *s++ = '(';
+                       memcpy(s, r->pp_str, r->pp_len);
+                       s += r->pp_len;
+                       *s++ = ')';
+               } else {
+                       memcpy(s, r->pp_str, r->pp_len);
+                       s += r->pp_len;
+               }
+               pp_free(r);
+
+               if (i < nargs) {
+                       *s++ = ' ';
+               }
+       }
+       
+       pl_l = prec_level(pp_args[nargs-1]->type);
+       pl_r = prec_level(pp_args[nargs]->type);
+       r = pp_args[nargs];
+       if (pl_l >= pl_r && ! is_scalar(pp_args[nargs]->type)) {
+               *s++ = '(';
+               memcpy(s, r->pp_str, r->pp_len);
+               s += r->pp_len;
+               *s++ = ')';
+       } else {
+               memcpy(s, r->pp_str, r->pp_len);
+               s += r->pp_len;
+       }
+       pp_free(r);
+
+       *s = '\0';
+       return str;                                     
+}
+
+/* pp_group3 --- string together up to 3 strings */
+
 static char *
-pp_concat(const char *s1, const char *s2, const char *s3)
+pp_group3(const char *s1, const char *s2, const char *s3)
 {
        size_t len1, len2, len3, l;
        char *str, *s;
@@ -1323,7 +1444,7 @@ pp_concat(const char *s1, const char *s2, const char *s3)
        len2 = strlen(s2);
        len3 = strlen(s3);
        l = len1 + len2 + len3 + 2;
-       emalloc(str, char *, l, "pp_concat");
+       emalloc(str, char *, l, "pp_group3");
        s = str;
        if (len1 > 0) {
                memcpy(s, s1, len1);
@@ -1394,5 +1515,3 @@ redir2str(int redirtype)
                fatal(_("redir2str: unknown redirection type %d"), redirtype);
        return redirtab[redirtype];
 }
-
-       

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=193a78e55fc2e0cd54e0da204d2f9eb0f90f1fb2

commit 193a78e55fc2e0cd54e0da204d2f9eb0f90f1fb2
Author: Arnold D. Robbins <address@hidden>
Date:   Tue May 28 21:19:36 2013 +0300

    Minor profiling fixes. More to come.

diff --git a/ChangeLog b/ChangeLog
index 75e86d7..53f2f17 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-05-28         Arnold D. Robbins     <address@hidden>
+
+       * main.c (main): Add minor hack to not run code if pretty printing
+       and undocumented env var GAWK_NO_PP_RUN exists.
+       * profile.c (pp_string): Explicitly print NUL chars as \000.
+
 2013-05-27         Arnold D. Robbins     <address@hidden>
 
        * configure.ac (AM_INIT_AUTOMAKE): Add dist-lzip to quiet
diff --git a/main.c b/main.c
index 9ea76cd..7438ee3 100644
--- a/main.c
+++ b/main.c
@@ -722,6 +722,9 @@ out:
 
        if (do_debug)
                debug_prog(code_block);
+       else if (do_pretty_print && ! do_debug && getenv("GAWK_NO_PP_RUN") != 
NULL)
+               /* hack to run pretty printer only. need a better solution */
+               ;
        else
                interpret(code_block);
 
diff --git a/profile.c b/profile.c
index 435cad1..391136d 100644
--- a/profile.c
+++ b/profile.c
@@ -1196,6 +1196,11 @@ pp_string(const char *in_str, size_t len, int delim)
                if (delim != '/' && *str == delim) {
                        *obufout++ = '\\';
                        *obufout++ = delim;
+               } else if (*str == '\0') {
+                       *obufout++ = '\\';
+                       *obufout++ = '0';
+                       *obufout++ = '0';
+                       *obufout++ = '0';
                } else if ((cp = strchr(escapes, *str)) != NULL) {
                        i = cp - escapes;
                        *obufout++ = '\\';

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog |   15 +++++
 main.c    |    3 +
 profile.c |  204 +++++++++++++++++++++++++++++++++++++++++++++++++------------
 3 files changed, 182 insertions(+), 40 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]