Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(722)

Unified Diff: src/cmd/gc/racewalk.c

Issue 7942045: code review 7942045: cmd/gc: more race instrumentation. (Closed)
Patch Set: diff -r 924fbbd725d4 https://go.googlecode.com/hg/ Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/pkg/runtime/race/testdata/mop_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/cmd/gc/racewalk.c
===================================================================
--- a/src/cmd/gc/racewalk.c
+++ b/src/cmd/gc/racewalk.c
@@ -312,6 +312,10 @@
racewalknode(&n->right, init, 0, 0);
goto ret;
+ case OITAB:
+ racewalknode(&n->left, init, 0, 0);
+ goto ret;
+
// should not appear in AST by now
case OSEND:
case ORECV:
@@ -323,6 +327,7 @@
case OPANIC:
case ORECOVER:
case OCONVIFACE:
+ case OCMPIFACE:
case OMAKECHAN:
case OMAKEMAP:
case OMAKESLICE:
@@ -338,6 +343,12 @@
case OADDSTR:
case ODOTTYPE:
case ODOTTYPE2:
+ case OCALLPART: // lowered to PTRLIT
+ case OCLOSURE: // lowered to PTRLIT
+ case ORANGE: // lowered to ordinary for loop
+ case OARRAYLIT: // lowered to assignments
+ case OMAPLIT:
+ case OSTRUCTLIT:
yyerror("racewalk: %O must be lowered by now", n->op);
goto ret;
@@ -364,30 +375,23 @@
// does not require instrumentation
case OPRINT: // don't bother instrumenting it
case OPRINTN: // don't bother instrumenting it
+ case OCHECKNOTNIL: // always followed by a read.
case OPARAM: // it appears only in fn->exit to copy heap params back
+ case OCLOSUREVAR:// immutable pointer to captured variable
+ case ODOTMETH: // either part of CALLMETH or CALLPART (lowered to PTRLIT)
goto ret;
// unimplemented
case OSLICESTR:
case OAPPEND:
- case OCMPIFACE:
- case OARRAYLIT:
- case OMAPLIT:
- case OSTRUCTLIT:
- case OCLOSURE:
case ODCL:
case ODCLCONST:
case ODCLTYPE:
case OLITERAL:
- case ORANGE:
case OTYPE:
case ONONAME:
case OINDREG:
- case ODOTMETH:
- case OITAB:
case OHMUL:
- case OCHECKNOTNIL:
- case OCLOSUREVAR:
goto ret;
}
« no previous file with comments | « no previous file | src/pkg/runtime/race/testdata/mop_test.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b