changeset 59:a52f0229f22b

Merge.
author David A. Holland
date Sun, 31 Mar 2013 01:17:45 -0400
parents 0cd5a1d55ed6 (current diff) 8a204d153398 (diff)
children bf39ba646885
files tests/Makefile
diffstat 10 files changed, 161 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/directive.c	Sun Mar 31 01:13:03 2013 -0400
+++ b/directive.c	Sun Mar 31 01:17:45 2013 -0400
@@ -39,6 +39,7 @@
 #include "directive.h"
 #include "macro.h"
 #include "eval.h"
+#include "output.h"
 
 struct ifstate {
 	struct ifstate *prev;
@@ -49,6 +50,7 @@
 };
 
 static struct ifstate *ifstate;
+static bool in_multiline_comment;
 
 ////////////////////////////////////////////////////////////
 // common parsing bits
@@ -408,23 +410,138 @@
 	complain_fail();
 }
 
+/*
+ * If desired, warn about a nested comment. The comment begins at
+ * offset POS from the place P.
+ */
+static
+void
+warn_nestcomment(const struct place *p, size_t pos)
+{
+	struct place p2;
+
+	if (warns.nestcomment) {
+		p2 = *p;
+		p2.column += pos;
+		complain(p, "Warning: %c%c within comment",
+			 '/', '*');
+		if (mode.werror) {
+			complain_failed();
+		}
+	}
+}
+
+/*
+ * Check for comment delimiters in LINE. If a multi-line comment is
+ * continuing or ending, set ACOMM to its length. If a multi-line
+ * comment is starting, set BCOMM to its length. Set TEXT to the
+ * length of text that is not commented out, or that contains comments
+ * that both begin and end on this line. ACOMM + TEXT + BCOMM == LEN.
+ *
+ * Updates in_multiline_comment to the appropriate state for after
+ * this line is handled.
+ */
+static
+size_t
+directive_scancomments(const struct place *p, char *line, size_t len,
+		       size_t *acomm, size_t *text, size_t *bcomm)
+{
+	size_t pos;
+	size_t first_commentend;
+	size_t last_commentstart;
+	bool incomment;
+
+	first_commentend = len;
+	last_commentstart = len;
+	incomment = in_multiline_comment;
+	for (pos = 0; pos+1 < len; pos++) {
+		if (line[pos] == '/' && line[pos+1] == '*') {
+			if (incomment) {
+				warn_nestcomment(p, pos);
+			} else {
+				incomment = true;
+				last_commentstart = pos;
+			}
+		} else if (line[pos] == '*' && line[pos+1] == '/') {
+			if (incomment) {
+				incomment = false;
+				if (first_commentend == len) {
+					first_commentend = pos;
+				}
+				last_commentstart = len;
+			} else {
+				/* stray end-comment; should we care? */
+			}
+		}
+	}
+
+	if (in_multiline_comment && first_commentend < last_commentstart) {
+		/* multiline comment ends */
+		/* first_commentend points to the star, adjust */
+		*acomm = first_commentend + 2;
+		*text = len - *acomm;
+	} else if (in_multiline_comment) {
+		/* comment did not end, so another one cannot have started */
+		assert(last_commentstart == len);
+		*acomm = len;
+		*text = 0;
+	} else {
+		*acomm = 0;
+		*text = len;
+	}
+
+	*bcomm = len - last_commentstart;
+	*text -= *bcomm;
+
+	in_multiline_comment = incomment;
+	return len;
+}
+
 void
 directive_gotline(struct place *p, char *line, size_t len)
 {
+	size_t acomm;	/* length of comment ending on this line */
+	size_t text;	/* length of non-multi-line-comment text */
+	size_t bcomm;	/* length of comment beginning on this line */
 	size_t skip;
 
+	directive_scancomments(p, line, len, &acomm, &text, &bcomm);
+
+	if (acomm > 0) {
+		if (mode.output_retain_comments && ifstate->curtrue) {
+			/*
+			 * Do not expand the comment; send it straight
+			 * to the output. This will cause it to appear
+			 * first if we're partway through collecting a
+			 * macro argument. Too bad. This isn't a
+			 * standard mode anyway.
+			 */
+			output(p, line, acomm);
+		}
+		p->column += acomm;
+	}
+
 	/* check if we have a directive line */
-	skip = strspn(line, ws);
-	if (line[skip] == '#') {
+	skip = strspn(line + acomm, ws);
+	if (acomm == 0 && line[skip] == '#') {
 		skip = skip + 1 + strspn(line + skip + 1, ws);
+		assert(skip <= text);
 		p->column += skip;
-		directive_gotdirective(p, line+skip, len-skip);
+		directive_gotdirective(p, line+skip, text-skip);
+		p->column += text-skip;
 	} else if (ifstate->curtrue) {
-		macro_sendline(p, line, len);
+		macro_sendline(p, line + acomm, text);
+		p->column += text;
+	}
+
+	if (bcomm > 0) {
+		if (mode.output_retain_comments && ifstate->curtrue) {
+			output(p, line + acomm + text, bcomm);
+		}
+		p->column += bcomm;
 	}
 }
 
-
 void
 directive_goteof(struct place *p)
 {
--- a/tests/Makefile	Sun Mar 31 01:13:03 2013 -0400
+++ b/tests/Makefile	Sun Mar 31 01:17:45 2013 -0400
@@ -1,17 +1,11 @@
-#	$NetBSD$
-
-all: run-tests .WAIT show-diffs
-
-TESTDIR=	${TESTSBASE}/usr.bin/tradcpp
-
-TESTS_SH+=	tradcpp
-
-.include <bsd.test.mk>
-
 TRADCPP_OBJDIR!=	${MAKE} -C .. -V .OBJDIR
 TRADCPP=	${TRADCPP_OBJDIR}/tradcpp
 
-TESTS=t01 t02 t03 t04 t05 t06 t07 t08 t09 t10 t11 t12 t16 t17 t18 t19
+TESTS=\
+	t01 t02 t03 t04 t05 t06 t07 t08 t09 t10 t11 t12 t13 t14 t15 t16 \
+	t17 t18 t19
+
+all: run-tests .WAIT show-diffs
 
 .for T in $(TESTS)
 run-tests: $(T).diff
@@ -40,3 +34,11 @@
 .endfor
 
 .PHONY: all run-tests show-diffs clean good
+
+############################################################
+
+.if defined(ALLOW_BROKEN_ATF_POLLUTION)
+TESTDIR=	${TESTSBASE}/usr.bin/tradcpp
+TESTS_SH+=	tradcpp
+.include <bsd.test.mk>
+.endif
--- a/tests/t07.good	Sun Mar 31 01:13:03 2013 -0400
+++ b/tests/t07.good	Sun Mar 31 01:17:45 2013 -0400
@@ -1,1 +1,3 @@
 
+
+
--- a/tests/t09.good	Sun Mar 31 01:13:03 2013 -0400
+++ b/tests/t09.good	Sun Mar 31 01:17:45 2013 -0400
@@ -1,1 +1,3 @@
- fnord 
+
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/t13.c	Sun Mar 31 01:17:45 2013 -0400
@@ -0,0 +1,4 @@
+/*
+#define FOO BAR
+*/
+FOO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/t13.good	Sun Mar 31 01:17:45 2013 -0400
@@ -0,0 +1,4 @@
+
+
+
+FOO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/t14.c	Sun Mar 31 01:17:45 2013 -0400
@@ -0,0 +1,4 @@
+/*
+#define FOO BAR */
+FOO
+FOO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/t14.good	Sun Mar 31 01:17:45 2013 -0400
@@ -0,0 +1,4 @@
+
+
+FOO
+FOO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/t15.c	Sun Mar 31 01:17:45 2013 -0400
@@ -0,0 +1,3 @@
+#define FOO /* BAR */ BAZ
+FOO
+FOO
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/t15.good	Sun Mar 31 01:17:45 2013 -0400
@@ -0,0 +1,2 @@
+ BAZ
+ BAZ