1 |
/* |
2 |
instrument-js.c - JavaScript instrumentation routines |
3 |
Copyright (C) 2007, 2008 siliconforks.com |
4 |
|
5 |
This program is free software; you can redistribute it and/or modify |
6 |
it under the terms of the GNU General Public License as published by |
7 |
the Free Software Foundation; either version 2 of the License, or |
8 |
(at your option) any later version. |
9 |
|
10 |
This program is distributed in the hope that it will be useful, |
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 |
GNU General Public License for more details. |
14 |
|
15 |
You should have received a copy of the GNU General Public License along |
16 |
with this program; if not, write to the Free Software Foundation, Inc., |
17 |
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
18 |
*/ |
19 |
|
20 |
#include <config.h> |
21 |
|
22 |
#include "instrument-js.h" |
23 |
|
24 |
#include <assert.h> |
25 |
#include <stdlib.h> |
26 |
#include <string.h> |
27 |
|
28 |
#include <jsapi.h> |
29 |
#include <jsarena.h> |
30 |
#include <jsatom.h> |
31 |
#include <jsemit.h> |
32 |
#include <jsexn.h> |
33 |
#include <jsfun.h> |
34 |
#include <jsinterp.h> |
35 |
#include <jsiter.h> |
36 |
#include <jsparse.h> |
37 |
#include <jsregexp.h> |
38 |
#include <jsscope.h> |
39 |
#include <jsstr.h> |
40 |
|
41 |
#include "encoding.h" |
42 |
#include "global.h" |
43 |
#include "highlight.h" |
44 |
#include "resource-manager.h" |
45 |
#include "util.h" |
46 |
|
47 |
struct IfDirective { |
48 |
const jschar * condition_start; |
49 |
const jschar * condition_end; |
50 |
uint16_t start_line; |
51 |
uint16_t end_line; |
52 |
struct IfDirective * next; |
53 |
}; |
54 |
|
55 |
bool jscoverage_mozilla = false; |
56 |
|
57 |
static bool * exclusive_directives = NULL; |
58 |
|
59 |
static JSRuntime * runtime = NULL; |
60 |
static JSContext * context = NULL; |
61 |
static JSObject * global = NULL; |
62 |
static JSVersion js_version = JSVERSION_ECMA_3; |
63 |
|
64 |
/* |
65 |
JSParseNode objects store line numbers starting from 1. |
66 |
The lines array stores line numbers starting from 0. |
67 |
*/ |
68 |
static const char * file_id = NULL; |
69 |
static char * lines = NULL; |
70 |
static uint16_t num_lines = 0; |
71 |
|
72 |
void jscoverage_set_js_version(const char * version) { |
73 |
js_version = JS_StringToVersion(version); |
74 |
if (js_version != JSVERSION_UNKNOWN) { |
75 |
return; |
76 |
} |
77 |
|
78 |
char * end; |
79 |
js_version = (JSVersion) strtol(version, &end, 10); |
80 |
if ((size_t) (end - version) != strlen(version)) { |
81 |
fatal("invalid version: %s", version); |
82 |
} |
83 |
} |
84 |
|
85 |
void jscoverage_init(void) { |
86 |
runtime = JS_NewRuntime(8L * 1024L * 1024L); |
87 |
if (runtime == NULL) { |
88 |
fatal("cannot create runtime"); |
89 |
} |
90 |
|
91 |
context = JS_NewContext(runtime, 8192); |
92 |
if (context == NULL) { |
93 |
fatal("cannot create context"); |
94 |
} |
95 |
|
96 |
JS_SetVersion(context, js_version); |
97 |
|
98 |
global = JS_NewObject(context, NULL, NULL, NULL); |
99 |
if (global == NULL) { |
100 |
fatal("cannot create global object"); |
101 |
} |
102 |
|
103 |
if (! JS_InitStandardClasses(context, global)) { |
104 |
fatal("cannot initialize standard classes"); |
105 |
} |
106 |
} |
107 |
|
108 |
void jscoverage_cleanup(void) { |
109 |
JS_DestroyContext(context); |
110 |
JS_DestroyRuntime(runtime); |
111 |
} |
112 |
|
113 |
static void print_javascript(const jschar * characters, size_t num_characters, Stream * f) { |
114 |
for (size_t i = 0; i < num_characters; i++) { |
115 |
jschar c = characters[i]; |
116 |
/* |
117 |
XXX does not handle no-break space, other unicode "space separator" |
118 |
*/ |
119 |
switch (c) { |
120 |
case 0x9: |
121 |
case 0xB: |
122 |
case 0xC: |
123 |
Stream_write_char(f, c); |
124 |
break; |
125 |
default: |
126 |
if (32 <= c && c <= 126) { |
127 |
Stream_write_char(f, c); |
128 |
} |
129 |
else { |
130 |
Stream_printf(f, "\\u%04x", c); |
131 |
} |
132 |
break; |
133 |
} |
134 |
} |
135 |
} |
136 |
|
137 |
static void print_string(JSString * s, Stream * f) { |
138 |
size_t length = JSSTRING_LENGTH(s); |
139 |
jschar * characters = JSSTRING_CHARS(s); |
140 |
for (size_t i = 0; i < length; i++) { |
141 |
jschar c = characters[i]; |
142 |
if (32 <= c && c <= 126) { |
143 |
switch (c) { |
144 |
case '"': |
145 |
Stream_write_string(f, "\\\""); |
146 |
break; |
147 |
/* |
148 |
case '\'': |
149 |
Stream_write_string(f, "\\'"); |
150 |
break; |
151 |
*/ |
152 |
case '\\': |
153 |
Stream_write_string(f, "\\\\"); |
154 |
break; |
155 |
default: |
156 |
Stream_write_char(f, c); |
157 |
break; |
158 |
} |
159 |
} |
160 |
else { |
161 |
switch (c) { |
162 |
case 0x8: |
163 |
Stream_write_string(f, "\\b"); |
164 |
break; |
165 |
case 0x9: |
166 |
Stream_write_string(f, "\\t"); |
167 |
break; |
168 |
case 0xa: |
169 |
Stream_write_string(f, "\\n"); |
170 |
break; |
171 |
/* IE doesn't support this */ |
172 |
/* |
173 |
case 0xb: |
174 |
Stream_write_string(f, "\\v"); |
175 |
break; |
176 |
*/ |
177 |
case 0xc: |
178 |
Stream_write_string(f, "\\f"); |
179 |
break; |
180 |
case 0xd: |
181 |
Stream_write_string(f, "\\r"); |
182 |
break; |
183 |
default: |
184 |
Stream_printf(f, "\\u%04x", c); |
185 |
break; |
186 |
} |
187 |
} |
188 |
} |
189 |
} |
190 |
|
191 |
static void print_string_atom(JSAtom * atom, Stream * f) { |
192 |
assert(ATOM_IS_STRING(atom)); |
193 |
JSString * s = ATOM_TO_STRING(atom); |
194 |
print_string(s, f); |
195 |
} |
196 |
|
197 |
static void print_regex(jsval value, Stream * f) { |
198 |
assert(JSVAL_IS_STRING(value)); |
199 |
JSString * s = JSVAL_TO_STRING(value); |
200 |
size_t length = JSSTRING_LENGTH(s); |
201 |
jschar * characters = JSSTRING_CHARS(s); |
202 |
for (size_t i = 0; i < length; i++) { |
203 |
jschar c = characters[i]; |
204 |
if (32 <= c && c <= 126) { |
205 |
Stream_write_char(f, c); |
206 |
} |
207 |
else { |
208 |
Stream_printf(f, "\\u%04x", c); |
209 |
} |
210 |
} |
211 |
} |
212 |
|
213 |
static void print_quoted_string_atom(JSAtom * atom, Stream * f) { |
214 |
assert(ATOM_IS_STRING(atom)); |
215 |
JSString * s = ATOM_TO_STRING(atom); |
216 |
Stream_write_char(f, '"'); |
217 |
print_string(s, f); |
218 |
Stream_write_char(f, '"'); |
219 |
} |
220 |
|
221 |
static const char * get_op(uint8 op) { |
222 |
switch(op) { |
223 |
case JSOP_OR: |
224 |
return "||"; |
225 |
case JSOP_AND: |
226 |
return "&&"; |
227 |
case JSOP_BITOR: |
228 |
return "|"; |
229 |
case JSOP_BITXOR: |
230 |
return "^"; |
231 |
case JSOP_BITAND: |
232 |
return "&"; |
233 |
case JSOP_EQ: |
234 |
return "=="; |
235 |
case JSOP_NE: |
236 |
return "!="; |
237 |
case JSOP_STRICTEQ: |
238 |
return "==="; |
239 |
case JSOP_STRICTNE: |
240 |
return "!=="; |
241 |
case JSOP_LT: |
242 |
return "<"; |
243 |
case JSOP_LE: |
244 |
return "<="; |
245 |
case JSOP_GT: |
246 |
return ">"; |
247 |
case JSOP_GE: |
248 |
return ">="; |
249 |
case JSOP_LSH: |
250 |
return "<<"; |
251 |
case JSOP_RSH: |
252 |
return ">>"; |
253 |
case JSOP_URSH: |
254 |
return ">>>"; |
255 |
case JSOP_ADD: |
256 |
return "+"; |
257 |
case JSOP_SUB: |
258 |
return "-"; |
259 |
case JSOP_MUL: |
260 |
return "*"; |
261 |
case JSOP_DIV: |
262 |
return "/"; |
263 |
case JSOP_MOD: |
264 |
return "%"; |
265 |
default: |
266 |
abort(); |
267 |
} |
268 |
} |
269 |
|
270 |
static void instrument_expression(JSParseNode * node, Stream * f); |
271 |
static void instrument_statement(JSParseNode * node, Stream * f, int indent, bool is_jscoverage_if); |
272 |
static void output_statement(JSParseNode * node, Stream * f, int indent, bool is_jscoverage_if); |
273 |
|
274 |
enum FunctionType { |
275 |
FUNCTION_NORMAL, |
276 |
FUNCTION_GETTER_OR_SETTER |
277 |
}; |
278 |
|
279 |
static void output_for_in(JSParseNode * node, Stream * f) { |
280 |
assert(node->pn_type == TOK_FOR); |
281 |
assert(node->pn_arity == PN_BINARY); |
282 |
Stream_write_string(f, "for "); |
283 |
if (node->pn_iflags & JSITER_FOREACH) { |
284 |
Stream_write_string(f, "each "); |
285 |
} |
286 |
Stream_write_char(f, '('); |
287 |
instrument_expression(node->pn_left, f); |
288 |
Stream_write_char(f, ')'); |
289 |
} |
290 |
|
291 |
static void output_array_comprehension_or_generator_expression(JSParseNode * node, Stream * f) { |
292 |
assert(node->pn_type == TOK_LEXICALSCOPE); |
293 |
assert(node->pn_arity == PN_NAME); |
294 |
JSParseNode * for_node = node->pn_expr; |
295 |
assert(for_node->pn_type == TOK_FOR); |
296 |
assert(for_node->pn_arity == PN_BINARY); |
297 |
JSParseNode * p = for_node; |
298 |
while (p->pn_type == TOK_FOR) { |
299 |
p = p->pn_right; |
300 |
} |
301 |
JSParseNode * if_node = NULL; |
302 |
if (p->pn_type == TOK_IF) { |
303 |
if_node = p; |
304 |
assert(if_node->pn_arity == PN_TERNARY); |
305 |
p = if_node->pn_kid2; |
306 |
} |
307 |
assert(p->pn_arity == PN_UNARY); |
308 |
p = p->pn_kid; |
309 |
if (p->pn_type == TOK_YIELD) { |
310 |
/* for generator expressions */ |
311 |
p = p->pn_kid; |
312 |
} |
313 |
|
314 |
instrument_expression(p, f); |
315 |
p = for_node; |
316 |
while (p->pn_type == TOK_FOR) { |
317 |
Stream_write_char(f, ' '); |
318 |
output_for_in(p, f); |
319 |
p = p->pn_right; |
320 |
} |
321 |
if (if_node) { |
322 |
Stream_write_string(f, " if ("); |
323 |
instrument_expression(if_node->pn_kid1, f); |
324 |
Stream_write_char(f, ')'); |
325 |
} |
326 |
} |
327 |
|
328 |
static void instrument_function(JSParseNode * node, Stream * f, int indent, enum FunctionType type) { |
329 |
assert(node->pn_type == TOK_FUNCTION); |
330 |
assert(node->pn_arity == PN_FUNC); |
331 |
JSObject * object = node->pn_funpob->object; |
332 |
assert(JS_ObjectIsFunction(context, object)); |
333 |
JSFunction * function = (JSFunction *) JS_GetPrivate(context, object); |
334 |
assert(function); |
335 |
assert(object == &function->object); |
336 |
Stream_printf(f, "%*s", indent, ""); |
337 |
if (type == FUNCTION_NORMAL) { |
338 |
Stream_write_string(f, "function "); |
339 |
} |
340 |
|
341 |
/* function name */ |
342 |
if (function->atom) { |
343 |
print_string_atom(function->atom, f); |
344 |
} |
345 |
|
346 |
/* |
347 |
function parameters - see JS_DecompileFunction in jsapi.cpp, which calls |
348 |
js_DecompileFunction in jsopcode.cpp |
349 |
*/ |
350 |
Stream_write_char(f, '('); |
351 |
JSArenaPool pool; |
352 |
JS_INIT_ARENA_POOL(&pool, "instrument_function", 256, 1, &context->scriptStackQuota); |
353 |
jsuword * local_names = NULL; |
354 |
if (JS_GET_LOCAL_NAME_COUNT(function)) { |
355 |
local_names = js_GetLocalNameArray(context, function, &pool); |
356 |
if (local_names == NULL) { |
357 |
fatal("out of memory"); |
358 |
} |
359 |
} |
360 |
bool destructuring = false; |
361 |
for (int i = 0; i < function->nargs; i++) { |
362 |
if (i > 0) { |
363 |
Stream_write_string(f, ", "); |
364 |
} |
365 |
JSAtom * param = JS_LOCAL_NAME_TO_ATOM(local_names[i]); |
366 |
if (param == NULL) { |
367 |
destructuring = true; |
368 |
JSParseNode * expression = NULL; |
369 |
assert(node->pn_body->pn_type == TOK_LC || node->pn_body->pn_type == TOK_BODY); |
370 |
JSParseNode * semi = node->pn_body->pn_head; |
371 |
assert(semi->pn_type == TOK_SEMI); |
372 |
JSParseNode * comma = semi->pn_kid; |
373 |
assert(comma->pn_type == TOK_COMMA); |
374 |
for (JSParseNode * p = comma->pn_head; p != NULL; p = p->pn_next) { |
375 |
assert(p->pn_type == TOK_ASSIGN); |
376 |
JSParseNode * rhs = p->pn_right; |
377 |
assert(JSSTRING_LENGTH(ATOM_TO_STRING(rhs->pn_atom)) == 0); |
378 |
if (rhs->pn_slot == i) { |
379 |
expression = p->pn_left; |
380 |
break; |
381 |
} |
382 |
} |
383 |
assert(expression != NULL); |
384 |
instrument_expression(expression, f); |
385 |
} |
386 |
else { |
387 |
print_string_atom(param, f); |
388 |
} |
389 |
} |
390 |
JS_FinishArenaPool(&pool); |
391 |
Stream_write_string(f, ") {\n"); |
392 |
|
393 |
/* function body */ |
394 |
if (function->flags & JSFUN_EXPR_CLOSURE) { |
395 |
/* expression closure - use output_statement instead of instrument_statement */ |
396 |
if (node->pn_body->pn_type == TOK_BODY) { |
397 |
assert(node->pn_body->pn_arity == PN_LIST); |
398 |
assert(node->pn_body->pn_count == 2); |
399 |
output_statement(node->pn_body->pn_head->pn_next, f, indent + 2, false); |
400 |
} |
401 |
else { |
402 |
output_statement(node->pn_body, f, indent + 2, false); |
403 |
} |
404 |
} |
405 |
else { |
406 |
assert(node->pn_body->pn_type == TOK_LC); |
407 |
assert(node->pn_body->pn_arity == PN_LIST); |
408 |
JSParseNode * p = node->pn_body->pn_head; |
409 |
if (destructuring) { |
410 |
p = p->pn_next; |
411 |
} |
412 |
for (; p != NULL; p = p->pn_next) { |
413 |
instrument_statement(p, f, indent + 2, false); |
414 |
} |
415 |
} |
416 |
|
417 |
Stream_write_string(f, "}\n"); |
418 |
} |
419 |
|
420 |
static void instrument_function_call(JSParseNode * node, Stream * f) { |
421 |
JSParseNode * function_node = node->pn_head; |
422 |
if (function_node->pn_type == TOK_FUNCTION) { |
423 |
JSObject * object = function_node->pn_funpob->object; |
424 |
assert(JS_ObjectIsFunction(context, object)); |
425 |
JSFunction * function = (JSFunction *) JS_GetPrivate(context, object); |
426 |
assert(function); |
427 |
assert(object == &function->object); |
428 |
|
429 |
if (function_node->pn_flags & TCF_GENEXP_LAMBDA) { |
430 |
/* it's a generator expression */ |
431 |
Stream_write_char(f, '('); |
432 |
output_array_comprehension_or_generator_expression(function_node->pn_body, f); |
433 |
Stream_write_char(f, ')'); |
434 |
return; |
435 |
} |
436 |
else { |
437 |
Stream_write_char(f, '('); |
438 |
instrument_expression(function_node, f); |
439 |
Stream_write_char(f, ')'); |
440 |
} |
441 |
} |
442 |
else { |
443 |
instrument_expression(function_node, f); |
444 |
} |
445 |
Stream_write_char(f, '('); |
446 |
for (struct JSParseNode * p = function_node->pn_next; p != NULL; p = p->pn_next) { |
447 |
if (p != node->pn_head->pn_next) { |
448 |
Stream_write_string(f, ", "); |
449 |
} |
450 |
instrument_expression(p, f); |
451 |
} |
452 |
Stream_write_char(f, ')'); |
453 |
} |
454 |
|
455 |
static void instrument_declarations(JSParseNode * list, Stream * f) { |
456 |
assert(list->pn_arity == PN_LIST); |
457 |
for (JSParseNode * p = list->pn_head; p != NULL; p = p->pn_next) { |
458 |
switch (p->pn_type) { |
459 |
case TOK_NAME: |
460 |
assert(p->pn_arity == PN_NAME); |
461 |
if (p != list->pn_head) { |
462 |
Stream_write_string(f, ", "); |
463 |
} |
464 |
print_string_atom(p->pn_atom, f); |
465 |
if (p->pn_expr != NULL) { |
466 |
Stream_write_string(f, " = "); |
467 |
instrument_expression(p->pn_expr, f); |
468 |
} |
469 |
break; |
470 |
case TOK_ASSIGN: |
471 |
case TOK_RB: |
472 |
case TOK_RC: |
473 |
/* destructuring */ |
474 |
instrument_expression(p, f); |
475 |
break; |
476 |
default: |
477 |
abort(); |
478 |
break; |
479 |
} |
480 |
} |
481 |
} |
482 |
|
483 |
/* |
484 |
See <Expressions> in jsparse.h. |
485 |
TOK_FUNCTION is handled as a statement and as an expression. |
486 |
TOK_DBLDOT is not handled (XML op). |
487 |
TOK_DEFSHARP and TOK_USESHARP are not handled. |
488 |
TOK_ANYNAME is not handled (XML op). |
489 |
TOK_AT is not handled (XML op). |
490 |
TOK_DBLCOLON is not handled. |
491 |
TOK_XML* are not handled. |
492 |
There seem to be some undocumented expressions: |
493 |
TOK_INSTANCEOF binary |
494 |
TOK_IN binary |
495 |
*/ |
496 |
static void instrument_expression(JSParseNode * node, Stream * f) { |
497 |
switch (node->pn_type) { |
498 |
case TOK_FUNCTION: |
499 |
instrument_function(node, f, 0, FUNCTION_NORMAL); |
500 |
break; |
501 |
case TOK_COMMA: |
502 |
for (struct JSParseNode * p = node->pn_head; p != NULL; p = p->pn_next) { |
503 |
if (p != node->pn_head) { |
504 |
Stream_write_string(f, ", "); |
505 |
} |
506 |
instrument_expression(p, f); |
507 |
} |
508 |
break; |
509 |
case TOK_ASSIGN: |
510 |
instrument_expression(node->pn_left, f); |
511 |
Stream_write_char(f, ' '); |
512 |
switch (node->pn_op) { |
513 |
case JSOP_ADD: |
514 |
case JSOP_SUB: |
515 |
case JSOP_MUL: |
516 |
case JSOP_MOD: |
517 |
case JSOP_LSH: |
518 |
case JSOP_RSH: |
519 |
case JSOP_URSH: |
520 |
case JSOP_BITAND: |
521 |
case JSOP_BITOR: |
522 |
case JSOP_BITXOR: |
523 |
case JSOP_DIV: |
524 |
Stream_printf(f, "%s", get_op(node->pn_op)); |
525 |
break; |
526 |
default: |
527 |
/* do nothing - it must be a simple assignment */ |
528 |
break; |
529 |
} |
530 |
Stream_write_string(f, "= "); |
531 |
instrument_expression(node->pn_right, f); |
532 |
break; |
533 |
case TOK_HOOK: |
534 |
instrument_expression(node->pn_kid1, f); |
535 |
Stream_write_string(f, "? "); |
536 |
instrument_expression(node->pn_kid2, f); |
537 |
Stream_write_string(f, ": "); |
538 |
instrument_expression(node->pn_kid3, f); |
539 |
break; |
540 |
case TOK_OR: |
541 |
case TOK_AND: |
542 |
case TOK_BITOR: |
543 |
case TOK_BITXOR: |
544 |
case TOK_BITAND: |
545 |
case TOK_EQOP: |
546 |
case TOK_RELOP: |
547 |
case TOK_SHOP: |
548 |
case TOK_PLUS: |
549 |
case TOK_MINUS: |
550 |
case TOK_STAR: |
551 |
case TOK_DIVOP: |
552 |
switch (node->pn_arity) { |
553 |
case PN_BINARY: |
554 |
instrument_expression(node->pn_left, f); |
555 |
Stream_printf(f, " %s ", get_op(node->pn_op)); |
556 |
instrument_expression(node->pn_right, f); |
557 |
break; |
558 |
case PN_LIST: |
559 |
for (struct JSParseNode * p = node->pn_head; p != NULL; p = p->pn_next) { |
560 |
if (p != node->pn_head) { |
561 |
Stream_printf(f, " %s ", get_op(node->pn_op)); |
562 |
} |
563 |
instrument_expression(p, f); |
564 |
} |
565 |
break; |
566 |
default: |
567 |
abort(); |
568 |
} |
569 |
break; |
570 |
case TOK_UNARYOP: |
571 |
switch (node->pn_op) { |
572 |
case JSOP_NEG: |
573 |
Stream_write_char(f, '-'); |
574 |
instrument_expression(node->pn_kid, f); |
575 |
break; |
576 |
case JSOP_POS: |
577 |
Stream_write_char(f, '+'); |
578 |
instrument_expression(node->pn_kid, f); |
579 |
break; |
580 |
case JSOP_NOT: |
581 |
Stream_write_char(f, '!'); |
582 |
instrument_expression(node->pn_kid, f); |
583 |
break; |
584 |
case JSOP_BITNOT: |
585 |
Stream_write_char(f, '~'); |
586 |
instrument_expression(node->pn_kid, f); |
587 |
break; |
588 |
case JSOP_TYPEOF: |
589 |
Stream_write_string(f, "typeof "); |
590 |
instrument_expression(node->pn_kid, f); |
591 |
break; |
592 |
case JSOP_VOID: |
593 |
Stream_write_string(f, "void "); |
594 |
instrument_expression(node->pn_kid, f); |
595 |
break; |
596 |
default: |
597 |
fatal_source(file_id, node->pn_pos.begin.lineno, "unknown operator (%d)", node->pn_op); |
598 |
break; |
599 |
} |
600 |
break; |
601 |
case TOK_INC: |
602 |
case TOK_DEC: |
603 |
/* |
604 |
This is not documented, but node->pn_op tells whether it is pre- or post-increment. |
605 |
*/ |
606 |
switch (node->pn_op) { |
607 |
case JSOP_INCNAME: |
608 |
case JSOP_INCPROP: |
609 |
case JSOP_INCELEM: |
610 |
Stream_write_string(f, "++"); |
611 |
instrument_expression(node->pn_kid, f); |
612 |
break; |
613 |
case JSOP_DECNAME: |
614 |
case JSOP_DECPROP: |
615 |
case JSOP_DECELEM: |
616 |
Stream_write_string(f, "--"); |
617 |
instrument_expression(node->pn_kid, f); |
618 |
break; |
619 |
case JSOP_NAMEINC: |
620 |
case JSOP_PROPINC: |
621 |
case JSOP_ELEMINC: |
622 |
instrument_expression(node->pn_kid, f); |
623 |
Stream_write_string(f, "++"); |
624 |
break; |
625 |
case JSOP_NAMEDEC: |
626 |
case JSOP_PROPDEC: |
627 |
case JSOP_ELEMDEC: |
628 |
instrument_expression(node->pn_kid, f); |
629 |
Stream_write_string(f, "--"); |
630 |
break; |
631 |
default: |
632 |
abort(); |
633 |
break; |
634 |
} |
635 |
break; |
636 |
case TOK_NEW: |
637 |
Stream_write_string(f, "new "); |
638 |
instrument_function_call(node, f); |
639 |
break; |
640 |
case TOK_DELETE: |
641 |
Stream_write_string(f, "delete "); |
642 |
instrument_expression(node->pn_kid, f); |
643 |
break; |
644 |
case TOK_DOT: |
645 |
/* |
646 |
This may have originally been x['foo-bar']. Because the string 'foo-bar' |
647 |
contains illegal characters, we have to use the subscript syntax instead of |
648 |
the dot syntax. |
649 |
*/ |
650 |
instrument_expression(node->pn_expr, f); |
651 |
assert(ATOM_IS_STRING(node->pn_atom)); |
652 |
{ |
653 |
JSString * s = ATOM_TO_STRING(node->pn_atom); |
654 |
bool must_quote; |
655 |
if (JSSTRING_LENGTH(s) == 0) { |
656 |
must_quote = true; |
657 |
} |
658 |
else if (js_CheckKeyword(JSSTRING_CHARS(s), JSSTRING_LENGTH(s)) != TOK_EOF) { |
659 |
must_quote = true; |
660 |
} |
661 |
else if (! js_IsIdentifier(s)) { |
662 |
must_quote = true; |
663 |
} |
664 |
else { |
665 |
must_quote = false; |
666 |
} |
667 |
if (must_quote) { |
668 |
Stream_write_char(f, '['); |
669 |
print_quoted_string_atom(node->pn_atom, f); |
670 |
Stream_write_char(f, ']'); |
671 |
} |
672 |
else { |
673 |
Stream_write_char(f, '.'); |
674 |
print_string_atom(node->pn_atom, f); |
675 |
} |
676 |
} |
677 |
break; |
678 |
case TOK_LB: |
679 |
instrument_expression(node->pn_left, f); |
680 |
Stream_write_char(f, '['); |
681 |
instrument_expression(node->pn_right, f); |
682 |
Stream_write_char(f, ']'); |
683 |
break; |
684 |
case TOK_LP: |
685 |
instrument_function_call(node, f); |
686 |
break; |
687 |
case TOK_RB: |
688 |
Stream_write_char(f, '['); |
689 |
for (struct JSParseNode * p = node->pn_head; p != NULL; p = p->pn_next) { |
690 |
if (p != node->pn_head) { |
691 |
Stream_write_string(f, ", "); |
692 |
} |
693 |
/* TOK_COMMA is a special case: a hole in the array */ |
694 |
if (p->pn_type != TOK_COMMA) { |
695 |
instrument_expression(p, f); |
696 |
} |
697 |
} |
698 |
if (node->pn_extra == PNX_ENDCOMMA) { |
699 |
Stream_write_char(f, ','); |
700 |
} |
701 |
Stream_write_char(f, ']'); |
702 |
break; |
703 |
case TOK_RC: |
704 |
Stream_write_char(f, '{'); |
705 |
for (struct JSParseNode * p = node->pn_head; p != NULL; p = p->pn_next) { |
706 |
if (p->pn_type != TOK_COLON) { |
707 |
fatal_source(file_id, p->pn_pos.begin.lineno, "unsupported node type (%d)", p->pn_type); |
708 |
} |
709 |
if (p != node->pn_head) { |
710 |
Stream_write_string(f, ", "); |
711 |
} |
712 |
|
713 |
/* check whether this is a getter or setter */ |
714 |
switch (p->pn_op) { |
715 |
case JSOP_GETTER: |
716 |
case JSOP_SETTER: |
717 |
if (p->pn_op == JSOP_GETTER) { |
718 |
Stream_write_string(f, "get "); |
719 |
} |
720 |
else { |
721 |
Stream_write_string(f, "set "); |
722 |
} |
723 |
instrument_expression(p->pn_left, f); |
724 |
if (p->pn_right->pn_type != TOK_FUNCTION) { |
725 |
fatal_source(file_id, p->pn_pos.begin.lineno, "expected function"); |
726 |
} |
727 |
instrument_function(p->pn_right, f, 0, FUNCTION_GETTER_OR_SETTER); |
728 |
break; |
729 |
default: |
730 |
instrument_expression(p->pn_left, f); |
731 |
Stream_write_string(f, ": "); |
732 |
instrument_expression(p->pn_right, f); |
733 |
break; |
734 |
} |
735 |
} |
736 |
Stream_write_char(f, '}'); |
737 |
break; |
738 |
case TOK_RP: |
739 |
Stream_write_char(f, '('); |
740 |
instrument_expression(node->pn_kid, f); |
741 |
Stream_write_char(f, ')'); |
742 |
break; |
743 |
case TOK_NAME: |
744 |
print_string_atom(node->pn_atom, f); |
745 |
break; |
746 |
case TOK_STRING: |
747 |
print_quoted_string_atom(node->pn_atom, f); |
748 |
break; |
749 |
case TOK_REGEXP: |
750 |
assert(node->pn_op == JSOP_REGEXP); |
751 |
{ |
752 |
JSObject * object = node->pn_pob->object; |
753 |
jsval result; |
754 |
js_regexp_toString(context, object, &result); |
755 |
print_regex(result, f); |
756 |
} |
757 |
break; |
758 |
case TOK_NUMBER: |
759 |
/* |
760 |
A 64-bit IEEE 754 floating point number has a 52-bit fraction. |
761 |
2^(-52) = 2.22 x 10^(-16) |
762 |
Thus there are 16 significant digits. |
763 |
To keep the output simple, special-case zero. |
764 |
*/ |
765 |
if (node->pn_dval == 0.0) { |
766 |
Stream_write_string(f, "0"); |
767 |
} |
768 |
else { |
769 |
Stream_printf(f, "%.15g", node->pn_dval); |
770 |
} |
771 |
break; |
772 |
case TOK_PRIMARY: |
773 |
switch (node->pn_op) { |
774 |
case JSOP_TRUE: |
775 |
Stream_write_string(f, "true"); |
776 |
break; |
777 |
case JSOP_FALSE: |
778 |
Stream_write_string(f, "false"); |
779 |
break; |
780 |
case JSOP_NULL: |
781 |
Stream_write_string(f, "null"); |
782 |
break; |
783 |
case JSOP_THIS: |
784 |
Stream_write_string(f, "this"); |
785 |
break; |
786 |
/* jsscan.h mentions `super' ??? */ |
787 |
default: |
788 |
abort(); |
789 |
} |
790 |
break; |
791 |
case TOK_INSTANCEOF: |
792 |
instrument_expression(node->pn_left, f); |
793 |
Stream_write_string(f, " instanceof "); |
794 |
instrument_expression(node->pn_right, f); |
795 |
break; |
796 |
case TOK_IN: |
797 |
instrument_expression(node->pn_left, f); |
798 |
Stream_write_string(f, " in "); |
799 |
instrument_expression(node->pn_right, f); |
800 |
break; |
801 |
case TOK_LEXICALSCOPE: |
802 |
assert(node->pn_arity == PN_NAME); |
803 |
assert(node->pn_expr->pn_type == TOK_LET); |
804 |
assert(node->pn_expr->pn_arity == PN_BINARY); |
805 |
Stream_write_string(f, "let("); |
806 |
assert(node->pn_expr->pn_left->pn_type == TOK_LP); |
807 |
assert(node->pn_expr->pn_left->pn_arity == PN_LIST); |
808 |
instrument_declarations(node->pn_expr->pn_left, f); |
809 |
Stream_write_string(f, ") "); |
810 |
instrument_expression(node->pn_expr->pn_right, f); |
811 |
break; |
812 |
case TOK_YIELD: |
813 |
assert(node->pn_arity == PN_UNARY); |
814 |
Stream_write_string(f, "yield"); |
815 |
if (node->pn_kid != NULL) { |
816 |
Stream_write_char(f, ' '); |
817 |
instrument_expression(node->pn_kid, f); |
818 |
} |
819 |
break; |
820 |
case TOK_ARRAYCOMP: |
821 |
assert(node->pn_arity == PN_LIST); |
822 |
{ |
823 |
JSParseNode * block_node; |
824 |
switch (node->pn_count) { |
825 |
case 1: |
826 |
block_node = node->pn_head; |
827 |
break; |
828 |
case 2: |
829 |
block_node = node->pn_head->pn_next; |
830 |
break; |
831 |
default: |
832 |
abort(); |
833 |
break; |
834 |
} |
835 |
Stream_write_char(f, '['); |
836 |
output_array_comprehension_or_generator_expression(block_node, f); |
837 |
Stream_write_char(f, ']'); |
838 |
} |
839 |
break; |
840 |
case TOK_VAR: |
841 |
assert(node->pn_arity == PN_LIST); |
842 |
Stream_write_string(f, "var "); |
843 |
instrument_declarations(node, f); |
844 |
break; |
845 |
case TOK_LET: |
846 |
assert(node->pn_arity == PN_LIST); |
847 |
Stream_write_string(f, "let "); |
848 |
instrument_declarations(node, f); |
849 |
break; |
850 |
default: |
851 |
fatal_source(file_id, node->pn_pos.begin.lineno, "unsupported node type (%d)", node->pn_type); |
852 |
} |
853 |
} |
854 |
|
855 |
static void output_statement(JSParseNode * node, Stream * f, int indent, bool is_jscoverage_if) { |
856 |
switch (node->pn_type) { |
857 |
case TOK_FUNCTION: |
858 |
instrument_function(node, f, indent, FUNCTION_NORMAL); |
859 |
break; |
860 |
case TOK_LC: |
861 |
assert(node->pn_arity == PN_LIST); |
862 |
/* |
863 |
Stream_write_string(f, "{\n"); |
864 |
*/ |
865 |
for (struct JSParseNode * p = node->pn_u.list.head; p != NULL; p = p->pn_next) { |
866 |
instrument_statement(p, f, indent, false); |
867 |
} |
868 |
/* |
869 |
Stream_printf(f, "%*s", indent, ""); |
870 |
Stream_write_string(f, "}\n"); |
871 |
*/ |
872 |
break; |
873 |
case TOK_IF: |
874 |
{ |
875 |
assert(node->pn_arity == PN_TERNARY); |
876 |
|
877 |
uint16_t line = node->pn_pos.begin.lineno; |
878 |
if (! is_jscoverage_if) { |
879 |
if (line > num_lines) { |
880 |
fatal("file %s contains more than 65,535 lines", file_id); |
881 |
} |
882 |
if (line >= 2 && exclusive_directives[line - 2]) { |
883 |
is_jscoverage_if = true; |
884 |
} |
885 |
} |
886 |
|
887 |
Stream_printf(f, "%*s", indent, ""); |
888 |
Stream_write_string(f, "if ("); |
889 |
instrument_expression(node->pn_kid1, f); |
890 |
Stream_write_string(f, ") {\n"); |
891 |
if (is_jscoverage_if && node->pn_kid3) { |
892 |
uint16_t else_start = node->pn_kid3->pn_pos.begin.lineno; |
893 |
uint16_t else_end = node->pn_kid3->pn_pos.end.lineno + 1; |
894 |
Stream_printf(f, "%*s", indent + 2, ""); |
895 |
Stream_printf(f, "_$jscoverage['%s'].conditionals[%d] = %d;\n", file_id, else_start, else_end); |
896 |
} |
897 |
instrument_statement(node->pn_kid2, f, indent + 2, false); |
898 |
Stream_printf(f, "%*s", indent, ""); |
899 |
Stream_write_string(f, "}\n"); |
900 |
|
901 |
if (node->pn_kid3 || is_jscoverage_if) { |
902 |
Stream_printf(f, "%*s", indent, ""); |
903 |
Stream_write_string(f, "else {\n"); |
904 |
|
905 |
if (is_jscoverage_if) { |
906 |
uint16_t if_start = node->pn_kid2->pn_pos.begin.lineno + 1; |
907 |
uint16_t if_end = node->pn_kid2->pn_pos.end.lineno + 1; |
908 |
Stream_printf(f, "%*s", indent + 2, ""); |
909 |
Stream_printf(f, "_$jscoverage['%s'].conditionals[%d] = %d;\n", file_id, if_start, if_end); |
910 |
} |
911 |
|
912 |
if (node->pn_kid3) { |
913 |
instrument_statement(node->pn_kid3, f, indent + 2, is_jscoverage_if); |
914 |
} |
915 |
|
916 |
Stream_printf(f, "%*s", indent, ""); |
917 |
Stream_write_string(f, "}\n"); |
918 |
} |
919 |
|
920 |
break; |
921 |
} |
922 |
case TOK_SWITCH: |
923 |
assert(node->pn_arity == PN_BINARY); |
924 |
Stream_printf(f, "%*s", indent, ""); |
925 |
Stream_write_string(f, "switch ("); |
926 |
instrument_expression(node->pn_left, f); |
927 |
Stream_write_string(f, ") {\n"); |
928 |
{ |
929 |
JSParseNode * list = node->pn_right; |
930 |
if (list->pn_type == TOK_LEXICALSCOPE) { |
931 |
list = list->pn_expr; |
932 |
} |
933 |
for (struct JSParseNode * p = list->pn_head; p != NULL; p = p->pn_next) { |
934 |
Stream_printf(f, "%*s", indent, ""); |
935 |
switch (p->pn_type) { |
936 |
case TOK_CASE: |
937 |
Stream_write_string(f, "case "); |
938 |
instrument_expression(p->pn_left, f); |
939 |
Stream_write_string(f, ":\n"); |
940 |
break; |
941 |
case TOK_DEFAULT: |
942 |
Stream_write_string(f, "default:\n"); |
943 |
break; |
944 |
default: |
945 |
abort(); |
946 |
break; |
947 |
} |
948 |
instrument_statement(p->pn_right, f, indent + 2, false); |
949 |
} |
950 |
} |
951 |
Stream_printf(f, "%*s", indent, ""); |
952 |
Stream_write_string(f, "}\n"); |
953 |
break; |
954 |
case TOK_CASE: |
955 |
case TOK_DEFAULT: |
956 |
abort(); |
957 |
break; |
958 |
case TOK_WHILE: |
959 |
assert(node->pn_arity == PN_BINARY); |
960 |
Stream_printf(f, "%*s", indent, ""); |
961 |
Stream_write_string(f, "while ("); |
962 |
instrument_expression(node->pn_left, f); |
963 |
Stream_write_string(f, ") {\n"); |
964 |
instrument_statement(node->pn_right, f, indent + 2, false); |
965 |
Stream_write_string(f, "}\n"); |
966 |
break; |
967 |
case TOK_DO: |
968 |
assert(node->pn_arity == PN_BINARY); |
969 |
Stream_printf(f, "%*s", indent, ""); |
970 |
Stream_write_string(f, "do {\n"); |
971 |
instrument_statement(node->pn_left, f, indent + 2, false); |
972 |
Stream_write_string(f, "}\n"); |
973 |
Stream_printf(f, "%*s", indent, ""); |
974 |
Stream_write_string(f, "while ("); |
975 |
instrument_expression(node->pn_right, f); |
976 |
Stream_write_string(f, ");\n"); |
977 |
break; |
978 |
case TOK_FOR: |
979 |
assert(node->pn_arity == PN_BINARY); |
980 |
Stream_printf(f, "%*s", indent, ""); |
981 |
switch (node->pn_left->pn_type) { |
982 |
case TOK_IN: |
983 |
/* for/in */ |
984 |
assert(node->pn_left->pn_arity == PN_BINARY); |
985 |
output_for_in(node, f); |
986 |
break; |
987 |
case TOK_RESERVED: |
988 |
/* for (;;) */ |
989 |
assert(node->pn_left->pn_arity == PN_TERNARY); |
990 |
Stream_write_string(f, "for ("); |
991 |
if (node->pn_left->pn_kid1) { |
992 |
instrument_expression(node->pn_left->pn_kid1, f); |
993 |
} |
994 |
Stream_write_string(f, ";"); |
995 |
if (node->pn_left->pn_kid2) { |
996 |
Stream_write_char(f, ' '); |
997 |
instrument_expression(node->pn_left->pn_kid2, f); |
998 |
} |
999 |
Stream_write_string(f, ";"); |
1000 |
if (node->pn_left->pn_kid3) { |
1001 |
Stream_write_char(f, ' '); |
1002 |
instrument_expression(node->pn_left->pn_kid3, f); |
1003 |
} |
1004 |
Stream_write_char(f, ')'); |
1005 |
break; |
1006 |
default: |
1007 |
abort(); |
1008 |
break; |
1009 |
} |
1010 |
Stream_write_string(f, " {\n"); |
1011 |
instrument_statement(node->pn_right, f, indent + 2, false); |
1012 |
Stream_write_string(f, "}\n"); |
1013 |
break; |
1014 |
case TOK_THROW: |
1015 |
assert(node->pn_arity == PN_UNARY); |
1016 |
Stream_printf(f, "%*s", indent, ""); |
1017 |
Stream_write_string(f, "throw "); |
1018 |
instrument_expression(node->pn_u.unary.kid, f); |
1019 |
Stream_write_string(f, ";\n"); |
1020 |
break; |
1021 |
case TOK_TRY: |
1022 |
Stream_printf(f, "%*s", indent, ""); |
1023 |
Stream_write_string(f, "try {\n"); |
1024 |
instrument_statement(node->pn_kid1, f, indent + 2, false); |
1025 |
Stream_printf(f, "%*s", indent, ""); |
1026 |
Stream_write_string(f, "}\n"); |
1027 |
if (node->pn_kid2) { |
1028 |
assert(node->pn_kid2->pn_type == TOK_RESERVED); |
1029 |
for (JSParseNode * scope = node->pn_kid2->pn_head; scope != NULL; scope = scope->pn_next) { |
1030 |
assert(scope->pn_type == TOK_LEXICALSCOPE); |
1031 |
JSParseNode * catch = scope->pn_expr; |
1032 |
assert(catch->pn_type == TOK_CATCH); |
1033 |
Stream_printf(f, "%*s", indent, ""); |
1034 |
Stream_write_string(f, "catch ("); |
1035 |
/* this may not be a name - destructuring assignment */ |
1036 |
/* |
1037 |
assert(catch->pn_kid1->pn_arity == PN_NAME); |
1038 |
print_string_atom(catch->pn_kid1->pn_atom, f); |
1039 |
*/ |
1040 |
instrument_expression(catch->pn_kid1, f); |
1041 |
if (catch->pn_kid2) { |
1042 |
Stream_write_string(f, " if "); |
1043 |
instrument_expression(catch->pn_kid2, f); |
1044 |
} |
1045 |
Stream_write_string(f, ") {\n"); |
1046 |
instrument_statement(catch->pn_kid3, f, indent + 2, false); |
1047 |
Stream_printf(f, "%*s", indent, ""); |
1048 |
Stream_write_string(f, "}\n"); |
1049 |
} |
1050 |
} |
1051 |
if (node->pn_kid3) { |
1052 |
Stream_printf(f, "%*s", indent, ""); |
1053 |
Stream_write_string(f, "finally {\n"); |
1054 |
instrument_statement(node->pn_kid3, f, indent + 2, false); |
1055 |
Stream_printf(f, "%*s", indent, ""); |
1056 |
Stream_write_string(f, "}\n"); |
1057 |
} |
1058 |
break; |
1059 |
case TOK_CATCH: |
1060 |
abort(); |
1061 |
break; |
1062 |
case TOK_BREAK: |
1063 |
case TOK_CONTINUE: |
1064 |
assert(node->pn_arity == PN_NAME || node->pn_arity == PN_NULLARY); |
1065 |
Stream_printf(f, "%*s", indent, ""); |
1066 |
Stream_write_string(f, node->pn_type == TOK_BREAK? "break": "continue"); |
1067 |
JSAtom * atom = node->pn_u.name.atom; |
1068 |
if (atom != NULL) { |
1069 |
Stream_write_char(f, ' '); |
1070 |
print_string_atom(node->pn_atom, f); |
1071 |
} |
1072 |
Stream_write_string(f, ";\n"); |
1073 |
break; |
1074 |
case TOK_WITH: |
1075 |
assert(node->pn_arity == PN_BINARY); |
1076 |
Stream_printf(f, "%*s", indent, ""); |
1077 |
Stream_write_string(f, "with ("); |
1078 |
instrument_expression(node->pn_left, f); |
1079 |
Stream_write_string(f, ") {\n"); |
1080 |
instrument_statement(node->pn_right, f, indent + 2, false); |
1081 |
Stream_printf(f, "%*s", indent, ""); |
1082 |
Stream_write_string(f, "}\n"); |
1083 |
break; |
1084 |
case TOK_VAR: |
1085 |
Stream_printf(f, "%*s", indent, ""); |
1086 |
instrument_expression(node, f); |
1087 |
Stream_write_string(f, ";\n"); |
1088 |
break; |
1089 |
case TOK_RETURN: |
1090 |
assert(node->pn_arity == PN_UNARY); |
1091 |
Stream_printf(f, "%*s", indent, ""); |
1092 |
Stream_write_string(f, "return"); |
1093 |
if (node->pn_kid != NULL) { |
1094 |
Stream_write_char(f, ' '); |
1095 |
instrument_expression(node->pn_kid, f); |
1096 |
} |
1097 |
Stream_write_string(f, ";\n"); |
1098 |
break; |
1099 |
case TOK_SEMI: |
1100 |
assert(node->pn_arity == PN_UNARY); |
1101 |
Stream_printf(f, "%*s", indent, ""); |
1102 |
if (node->pn_kid != NULL) { |
1103 |
instrument_expression(node->pn_kid, f); |
1104 |
} |
1105 |
Stream_write_string(f, ";\n"); |
1106 |
break; |
1107 |
case TOK_COLON: |
1108 |
assert(node->pn_arity == PN_NAME); |
1109 |
/* |
1110 |
This one is tricky: can't output instrumentation between the label and the |
1111 |
statement it's supposed to label ... |
1112 |
*/ |
1113 |
Stream_printf(f, "%*s", indent < 2? 0: indent - 2, ""); |
1114 |
print_string_atom(node->pn_atom, f); |
1115 |
Stream_write_string(f, ":\n"); |
1116 |
/* |
1117 |
... use output_statement instead of instrument_statement. |
1118 |
*/ |
1119 |
output_statement(node->pn_expr, f, indent, false); |
1120 |
break; |
1121 |
case TOK_LEXICALSCOPE: |
1122 |
/* let statement */ |
1123 |
assert(node->pn_arity == PN_NAME); |
1124 |
switch (node->pn_expr->pn_type) { |
1125 |
case TOK_LET: |
1126 |
/* let statement */ |
1127 |
assert(node->pn_expr->pn_arity == PN_BINARY); |
1128 |
instrument_statement(node->pn_expr, f, indent, false); |
1129 |
break; |
1130 |
case TOK_LC: |
1131 |
/* block */ |
1132 |
Stream_printf(f, "%*s", indent, ""); |
1133 |
Stream_write_string(f, "{\n"); |
1134 |
instrument_statement(node->pn_expr, f, indent + 2, false); |
1135 |
Stream_printf(f, "%*s", indent, ""); |
1136 |
Stream_write_string(f, "}\n"); |
1137 |
break; |
1138 |
case TOK_FOR: |
1139 |
instrument_statement(node->pn_expr, f, indent, false); |
1140 |
break; |
1141 |
default: |
1142 |
abort(); |
1143 |
break; |
1144 |
} |
1145 |
break; |
1146 |
case TOK_LET: |
1147 |
switch (node->pn_arity) { |
1148 |
case PN_BINARY: |
1149 |
/* let statement */ |
1150 |
Stream_printf(f, "%*s", indent, ""); |
1151 |
Stream_write_string(f, "let ("); |
1152 |
assert(node->pn_left->pn_type == TOK_LP); |
1153 |
assert(node->pn_left->pn_arity == PN_LIST); |
1154 |
instrument_declarations(node->pn_left, f); |
1155 |
Stream_write_string(f, ") {\n"); |
1156 |
instrument_statement(node->pn_right, f, indent + 2, false); |
1157 |
Stream_printf(f, "%*s", indent, ""); |
1158 |
Stream_write_string(f, "}\n"); |
1159 |
break; |
1160 |
case PN_LIST: |
1161 |
/* let definition */ |
1162 |
Stream_printf(f, "%*s", indent, ""); |
1163 |
instrument_expression(node, f); |
1164 |
Stream_write_string(f, ";\n"); |
1165 |
break; |
1166 |
default: |
1167 |
abort(); |
1168 |
break; |
1169 |
} |
1170 |
break; |
1171 |
case TOK_DEBUGGER: |
1172 |
Stream_printf(f, "%*s", indent, ""); |
1173 |
Stream_write_string(f, "debugger;\n"); |
1174 |
break; |
1175 |
default: |
1176 |
fatal_source(file_id, node->pn_pos.begin.lineno, "unsupported node type (%d)", node->pn_type); |
1177 |
} |
1178 |
} |
1179 |
|
1180 |
/* |
1181 |
See <Statements> in jsparse.h. |
1182 |
TOK_FUNCTION is handled as a statement and as an expression. |
1183 |
TOK_EXPORT, TOK_IMPORT are not handled. |
1184 |
*/ |
1185 |
static void instrument_statement(JSParseNode * node, Stream * f, int indent, bool is_jscoverage_if) { |
1186 |
if (node->pn_type != TOK_LC && node->pn_type != TOK_LEXICALSCOPE) { |
1187 |
uint16_t line = node->pn_pos.begin.lineno; |
1188 |
if (line > num_lines) { |
1189 |
fatal("file %s contains more than 65,535 lines", file_id); |
1190 |
} |
1191 |
|
1192 |
/* the root node has line number 0 */ |
1193 |
if (line != 0) { |
1194 |
Stream_printf(f, "%*s", indent, ""); |
1195 |
Stream_printf(f, "_$jscoverage['%s'][%d]++;\n", file_id, line); |
1196 |
lines[line - 1] = 1; |
1197 |
} |
1198 |
} |
1199 |
output_statement(node, f, indent, is_jscoverage_if); |
1200 |
} |
1201 |
|
1202 |
static bool characters_start_with(const jschar * characters, size_t line_start, size_t line_end, const char * prefix) { |
1203 |
const jschar * characters_end = characters + line_end; |
1204 |
const jschar * cp = characters + line_start; |
1205 |
const char * bp = prefix; |
1206 |
for (;;) { |
1207 |
if (*bp == '\0') { |
1208 |
return true; |
1209 |
} |
1210 |
else if (cp == characters_end) { |
1211 |
return false; |
1212 |
} |
1213 |
else if (*cp != *bp) { |
1214 |
return false; |
1215 |
} |
1216 |
bp++; |
1217 |
cp++; |
1218 |
} |
1219 |
} |
1220 |
|
1221 |
static bool characters_are_white_space(const jschar * characters, size_t line_start, size_t line_end) { |
1222 |
/* XXX - other Unicode space */ |
1223 |
const jschar * end = characters + line_end; |
1224 |
for (const jschar * p = characters + line_start; p < end; p++) { |
1225 |
jschar c = *p; |
1226 |
if (c == 0x9 || c == 0xB || c == 0xC || c == 0x20 || c == 0xA0) { |
1227 |
continue; |
1228 |
} |
1229 |
else { |
1230 |
return false; |
1231 |
} |
1232 |
} |
1233 |
return true; |
1234 |
} |
1235 |
|
1236 |
static void error_reporter(JSContext * context, const char * message, JSErrorReport * report) { |
1237 |
warn_source(file_id, report->lineno, "%s", message); |
1238 |
} |
1239 |
|
1240 |
void jscoverage_instrument_js(const char * id, const uint16_t * characters, size_t num_characters, Stream * output) { |
1241 |
file_id = id; |
1242 |
|
1243 |
/* parse the javascript */ |
1244 |
JSParseContext parse_context; |
1245 |
if (! js_InitParseContext(context, &parse_context, NULL, NULL, characters, num_characters, NULL, NULL, 1)) { |
1246 |
fatal("cannot create token stream from file %s", file_id); |
1247 |
} |
1248 |
JSErrorReporter old_error_reporter = JS_SetErrorReporter(context, error_reporter); |
1249 |
JSParseNode * node = js_ParseScript(context, global, &parse_context); |
1250 |
if (node == NULL) { |
1251 |
js_ReportUncaughtException(context); |
1252 |
fatal("parse error in file %s", file_id); |
1253 |
} |
1254 |
JS_SetErrorReporter(context, old_error_reporter); |
1255 |
num_lines = node->pn_pos.end.lineno; |
1256 |
lines = xmalloc(num_lines); |
1257 |
for (unsigned int i = 0; i < num_lines; i++) { |
1258 |
lines[i] = 0; |
1259 |
} |
1260 |
|
1261 |
/* search code for conditionals */ |
1262 |
exclusive_directives = xnew(bool, num_lines); |
1263 |
for (unsigned int i = 0; i < num_lines; i++) { |
1264 |
exclusive_directives[i] = false; |
1265 |
} |
1266 |
|
1267 |
bool has_conditionals = false; |
1268 |
struct IfDirective * if_directives = NULL; |
1269 |
size_t line_number = 0; |
1270 |
size_t i = 0; |
1271 |
while (i < num_characters) { |
1272 |
if (line_number == UINT16_MAX) { |
1273 |
fatal("file %s contains more than 65,535 lines", file_id); |
1274 |
} |
1275 |
line_number++; |
1276 |
size_t line_start = i; |
1277 |
jschar c; |
1278 |
bool done = false; |
1279 |
while (! done && i < num_characters) { |
1280 |
c = characters[i]; |
1281 |
switch (c) { |
1282 |
case '\r': |
1283 |
case '\n': |
1284 |
case 0x2028: |
1285 |
case 0x2029: |
1286 |
done = true; |
1287 |
break; |
1288 |
default: |
1289 |
i++; |
1290 |
} |
1291 |
} |
1292 |
size_t line_end = i; |
1293 |
if (i < num_characters) { |
1294 |
i++; |
1295 |
if (c == '\r' && i < num_characters && characters[i] == '\n') { |
1296 |
i++; |
1297 |
} |
1298 |
} |
1299 |
|
1300 |
if (characters_start_with(characters, line_start, line_end, "//#JSCOVERAGE_IF")) { |
1301 |
has_conditionals = true; |
1302 |
|
1303 |
if (characters_are_white_space(characters, line_start + 16, line_end)) { |
1304 |
exclusive_directives[line_number - 1] = true; |
1305 |
} |
1306 |
else { |
1307 |
struct IfDirective * if_directive = xnew(struct IfDirective, 1); |
1308 |
if_directive->condition_start = characters + line_start + 16; |
1309 |
if_directive->condition_end = characters + line_end; |
1310 |
if_directive->start_line = line_number; |
1311 |
if_directive->end_line = 0; |
1312 |
if_directive->next = if_directives; |
1313 |
if_directives = if_directive; |
1314 |
} |
1315 |
} |
1316 |
else if (characters_start_with(characters, line_start, line_end, "//#JSCOVERAGE_ENDIF")) { |
1317 |
for (struct IfDirective * p = if_directives; p != NULL; p = p->next) { |
1318 |
if (p->end_line == 0) { |
1319 |
p->end_line = line_number; |
1320 |
break; |
1321 |
} |
1322 |
} |
1323 |
} |
1324 |
} |
1325 |
|
1326 |
/* |
1327 |
An instrumented JavaScript file has 4 sections: |
1328 |
1. initialization |
1329 |
2. instrumented source code |
1330 |
3. conditionals |
1331 |
4. original source code |
1332 |
*/ |
1333 |
|
1334 |
Stream * instrumented = Stream_new(0); |
1335 |
instrument_statement(node, instrumented, 0, false); |
1336 |
js_FinishParseContext(context, &parse_context); |
1337 |
|
1338 |
/* write line number info to the output */ |
1339 |
Stream_write_string(output, "/* automatically generated by JSCoverage - do not edit */\n"); |
1340 |
if (jscoverage_mozilla) { |
1341 |
Stream_write_string(output, "try {\n"); |
1342 |
Stream_write_string(output, " Components.utils.import('resource://gre/modules/jscoverage.jsm');\n"); |
1343 |
Stream_printf(output, " dump('%s: successfully imported jscoverage module\\n');\n", id); |
1344 |
Stream_write_string(output, "}\n"); |
1345 |
Stream_write_string(output, "catch (e) {\n"); |
1346 |
Stream_write_string(output, " _$jscoverage = {};\n"); |
1347 |
Stream_printf(output, " dump('%s: failed to import jscoverage module - coverage not available for this file\\n');\n", id); |
1348 |
Stream_write_string(output, "}\n"); |
1349 |
} |
1350 |
else { |
1351 |
Stream_write_string(output, "if (! top._$jscoverage) {\n top._$jscoverage = {};\n}\n"); |
1352 |
Stream_write_string(output, "var _$jscoverage = top._$jscoverage;\n"); |
1353 |
} |
1354 |
Stream_printf(output, "if (! _$jscoverage['%s']) {\n", file_id); |
1355 |
Stream_printf(output, " _$jscoverage['%s'] = [];\n", file_id); |
1356 |
for (int i = 0; i < num_lines; i++) { |
1357 |
if (lines[i]) { |
1358 |
Stream_printf(output, " _$jscoverage['%s'][%d] = 0;\n", file_id, i + 1); |
1359 |
} |
1360 |
} |
1361 |
Stream_write_string(output, "}\n"); |
1362 |
free(lines); |
1363 |
lines = NULL; |
1364 |
free(exclusive_directives); |
1365 |
exclusive_directives = NULL; |
1366 |
|
1367 |
/* conditionals */ |
1368 |
if (has_conditionals) { |
1369 |
Stream_printf(output, "_$jscoverage['%s'].conditionals = [];\n", file_id); |
1370 |
} |
1371 |
|
1372 |
/* copy the instrumented source code to the output */ |
1373 |
Stream_write(output, instrumented->data, instrumented->length); |
1374 |
|
1375 |
/* conditionals */ |
1376 |
for (struct IfDirective * if_directive = if_directives; if_directive != NULL; if_directive = if_directive->next) { |
1377 |
Stream_write_string(output, "if (!("); |
1378 |
print_javascript(if_directive->condition_start, if_directive->condition_end - if_directive->condition_start, output); |
1379 |
Stream_write_string(output, ")) {\n"); |
1380 |
Stream_printf(output, " _$jscoverage['%s'].conditionals[%d] = %d;\n", file_id, if_directive->start_line, if_directive->end_line); |
1381 |
Stream_write_string(output, "}\n"); |
1382 |
} |
1383 |
|
1384 |
/* free */ |
1385 |
while (if_directives != NULL) { |
1386 |
struct IfDirective * if_directive = if_directives; |
1387 |
if_directives = if_directives->next; |
1388 |
free(if_directive); |
1389 |
} |
1390 |
|
1391 |
/* copy the original source to the output */ |
1392 |
Stream_printf(output, "_$jscoverage['%s'].source = ", file_id); |
1393 |
jscoverage_write_source(id, characters, num_characters, output); |
1394 |
Stream_printf(output, ";\n"); |
1395 |
|
1396 |
Stream_delete(instrumented); |
1397 |
|
1398 |
file_id = NULL; |
1399 |
} |
1400 |
|
1401 |
void jscoverage_write_source(const char * id, const jschar * characters, size_t num_characters, Stream * output) { |
1402 |
Stream_write_string(output, "["); |
1403 |
if (jscoverage_highlight) { |
1404 |
Stream * highlighted_stream = Stream_new(num_characters); |
1405 |
jscoverage_highlight_js(context, id, characters, num_characters, highlighted_stream); |
1406 |
size_t i = 0; |
1407 |
while (i < highlighted_stream->length) { |
1408 |
if (i > 0) { |
1409 |
Stream_write_char(output, ','); |
1410 |
} |
1411 |
|
1412 |
Stream_write_char(output, '"'); |
1413 |
bool done = false; |
1414 |
while (! done) { |
1415 |
char c = highlighted_stream->data[i]; |
1416 |
switch (c) { |
1417 |
case 0x8: |
1418 |
/* backspace */ |
1419 |
Stream_write_string(output, "\\b"); |
1420 |
break; |
1421 |
case 0x9: |
1422 |
/* horizontal tab */ |
1423 |
Stream_write_string(output, "\\t"); |
1424 |
break; |
1425 |
case 0xa: |
1426 |
/* line feed (new line) */ |
1427 |
done = true; |
1428 |
break; |
1429 |
/* IE doesn't support this */ |
1430 |
/* |
1431 |
case 0xb: |
1432 |
Stream_write_string(output, "\\v"); |
1433 |
break; |
1434 |
*/ |
1435 |
case 0xc: |
1436 |
/* form feed */ |
1437 |
Stream_write_string(output, "\\f"); |
1438 |
break; |
1439 |
case 0xd: |
1440 |
/* carriage return */ |
1441 |
done = true; |
1442 |
if (i + 1 < highlighted_stream->length && highlighted_stream->data[i + 1] == '\n') { |
1443 |
i++; |
1444 |
} |
1445 |
break; |
1446 |
case '"': |
1447 |
Stream_write_string(output, "\\\""); |
1448 |
break; |
1449 |
case '\\': |
1450 |
Stream_write_string(output, "\\\\"); |
1451 |
break; |
1452 |
default: |
1453 |
Stream_write_char(output, c); |
1454 |
break; |
1455 |
} |
1456 |
i++; |
1457 |
if (i >= highlighted_stream->length) { |
1458 |
done = true; |
1459 |
} |
1460 |
} |
1461 |
Stream_write_char(output, '"'); |
1462 |
} |
1463 |
Stream_delete(highlighted_stream); |
1464 |
} |
1465 |
else { |
1466 |
size_t i = 0; |
1467 |
while (i < num_characters) { |
1468 |
if (i > 0) { |
1469 |
Stream_write_char(output, ','); |
1470 |
} |
1471 |
|
1472 |
Stream_write_char(output, '"'); |
1473 |
bool done = false; |
1474 |
while (! done) { |
1475 |
jschar c = characters[i]; |
1476 |
switch (c) { |
1477 |
case 0x8: |
1478 |
/* backspace */ |
1479 |
Stream_write_string(output, "\\b"); |
1480 |
break; |
1481 |
case 0x9: |
1482 |
/* horizontal tab */ |
1483 |
Stream_write_string(output, "\\t"); |
1484 |
break; |
1485 |
case 0xa: |
1486 |
/* line feed (new line) */ |
1487 |
done = true; |
1488 |
break; |
1489 |
/* IE doesn't support this */ |
1490 |
/* |
1491 |
case 0xb: |
1492 |
Stream_write_string(output, "\\v"); |
1493 |
break; |
1494 |
*/ |
1495 |
case 0xc: |
1496 |
/* form feed */ |
1497 |
Stream_write_string(output, "\\f"); |
1498 |
break; |
1499 |
case 0xd: |
1500 |
/* carriage return */ |
1501 |
done = true; |
1502 |
if (i + 1 < num_characters && characters[i + 1] == '\n') { |
1503 |
i++; |
1504 |
} |
1505 |
break; |
1506 |
case '"': |
1507 |
Stream_write_string(output, "\\\""); |
1508 |
break; |
1509 |
case '\\': |
1510 |
Stream_write_string(output, "\\\\"); |
1511 |
break; |
1512 |
case '&': |
1513 |
Stream_write_string(output, "&"); |
1514 |
break; |
1515 |
case '<': |
1516 |
Stream_write_string(output, "<"); |
1517 |
break; |
1518 |
case '>': |
1519 |
Stream_write_string(output, ">"); |
1520 |
break; |
1521 |
case 0x2028: |
1522 |
case 0x2029: |
1523 |
done = true; |
1524 |
break; |
1525 |
default: |
1526 |
if (32 <= c && c <= 126) { |
1527 |
Stream_write_char(output, c); |
1528 |
} |
1529 |
else { |
1530 |
Stream_printf(output, "&#%d;", c); |
1531 |
} |
1532 |
break; |
1533 |
} |
1534 |
i++; |
1535 |
if (i >= num_characters) { |
1536 |
done = true; |
1537 |
} |
1538 |
} |
1539 |
Stream_write_char(output, '"'); |
1540 |
} |
1541 |
} |
1542 |
Stream_write_string(output, "]"); |
1543 |
} |
1544 |
|
1545 |
void jscoverage_copy_resources(const char * destination_directory) { |
1546 |
copy_resource("jscoverage.html", destination_directory); |
1547 |
copy_resource("jscoverage.css", destination_directory); |
1548 |
copy_resource("jscoverage.js", destination_directory); |
1549 |
copy_resource("jscoverage-ie.css", destination_directory); |
1550 |
copy_resource("jscoverage-throbber.gif", destination_directory); |
1551 |
copy_resource("jscoverage-highlight.css", destination_directory); |
1552 |
} |
1553 |
|
1554 |
/* |
1555 |
coverage reports |
1556 |
*/ |
1557 |
|
1558 |
struct FileCoverageList { |
1559 |
FileCoverage * file_coverage; |
1560 |
struct FileCoverageList * next; |
1561 |
}; |
1562 |
|
1563 |
struct Coverage { |
1564 |
JSHashTable * coverage_table; |
1565 |
struct FileCoverageList * coverage_list; |
1566 |
}; |
1567 |
|
1568 |
static int compare_strings(const void * p1, const void * p2) { |
1569 |
return strcmp(p1, p2) == 0; |
1570 |
} |
1571 |
|
1572 |
Coverage * Coverage_new(void) { |
1573 |
Coverage * result = xmalloc(sizeof(Coverage)); |
1574 |
result->coverage_table = JS_NewHashTable(1024, JS_HashString, compare_strings, NULL, NULL, NULL); |
1575 |
if (result->coverage_table == NULL) { |
1576 |
fatal("cannot create hash table"); |
1577 |
} |
1578 |
result->coverage_list = NULL; |
1579 |
return result; |
1580 |
} |
1581 |
|
1582 |
void Coverage_delete(Coverage * coverage) { |
1583 |
JS_HashTableDestroy(coverage->coverage_table); |
1584 |
struct FileCoverageList * p = coverage->coverage_list; |
1585 |
while (p != NULL) { |
1586 |
free(p->file_coverage->coverage_lines); |
1587 |
if (p->file_coverage->source_lines != NULL) { |
1588 |
for (uint32 i = 0; i < p->file_coverage->num_source_lines; i++) { |
1589 |
free(p->file_coverage->source_lines[i]); |
1590 |
} |
1591 |
free(p->file_coverage->source_lines); |
1592 |
} |
1593 |
free(p->file_coverage->id); |
1594 |
free(p->file_coverage); |
1595 |
struct FileCoverageList * q = p; |
1596 |
p = p->next; |
1597 |
free(q); |
1598 |
} |
1599 |
free(coverage); |
1600 |
} |
1601 |
|
1602 |
struct EnumeratorArg { |
1603 |
CoverageForeachFunction f; |
1604 |
void * p; |
1605 |
}; |
1606 |
|
1607 |
static intN enumerator(JSHashEntry * entry, intN i, void * arg) { |
1608 |
struct EnumeratorArg * enumerator_arg = arg; |
1609 |
enumerator_arg->f(entry->value, i, enumerator_arg->p); |
1610 |
return 0; |
1611 |
} |
1612 |
|
1613 |
void Coverage_foreach_file(Coverage * coverage, CoverageForeachFunction f, void * p) { |
1614 |
struct EnumeratorArg enumerator_arg; |
1615 |
enumerator_arg.f = f; |
1616 |
enumerator_arg.p = p; |
1617 |
JS_HashTableEnumerateEntries(coverage->coverage_table, enumerator, &enumerator_arg); |
1618 |
} |
1619 |
|
1620 |
int jscoverage_parse_json(Coverage * coverage, const uint8_t * json, size_t length) { |
1621 |
int result = 0; |
1622 |
|
1623 |
jschar * base = js_InflateString(context, (char *) json, &length); |
1624 |
if (base == NULL) { |
1625 |
fatal("out of memory"); |
1626 |
} |
1627 |
|
1628 |
jschar * parenthesized_json = xnew(jschar, addst(length, 2)); |
1629 |
parenthesized_json[0] = '('; |
1630 |
memcpy(parenthesized_json + 1, base, mulst(length, sizeof(jschar))); |
1631 |
parenthesized_json[length + 1] = ')'; |
1632 |
|
1633 |
JS_free(context, base); |
1634 |
|
1635 |
JSParseContext parse_context; |
1636 |
if (! js_InitParseContext(context, &parse_context, NULL, NULL, parenthesized_json, length + 2, NULL, NULL, 1)) { |
1637 |
free(parenthesized_json); |
1638 |
return -1; |
1639 |
} |
1640 |
JSParseNode * root = js_ParseScript(context, global, &parse_context); |
1641 |
free(parenthesized_json); |
1642 |
if (root == NULL) { |
1643 |
result = -1; |
1644 |
goto done; |
1645 |
} |
1646 |
|
1647 |
/* root node must be TOK_LC */ |
1648 |
if (root->pn_type != TOK_LC) { |
1649 |
result = -1; |
1650 |
goto done; |
1651 |
} |
1652 |
JSParseNode * semi = root->pn_u.list.head; |
1653 |
|
1654 |
/* the list must be TOK_SEMI and it must contain only one element */ |
1655 |
if (semi->pn_type != TOK_SEMI || semi->pn_next != NULL) { |
1656 |
result = -1; |
1657 |
goto done; |
1658 |
} |
1659 |
JSParseNode * parenthesized = semi->pn_kid; |
1660 |
|
1661 |
/* this must be a parenthesized expression */ |
1662 |
if (parenthesized->pn_type != TOK_RP) { |
1663 |
result = -1; |
1664 |
goto done; |
1665 |
} |
1666 |
JSParseNode * object = parenthesized->pn_kid; |
1667 |
|
1668 |
/* this must be an object literal */ |
1669 |
if (object->pn_type != TOK_RC) { |
1670 |
result = -1; |
1671 |
goto done; |
1672 |
} |
1673 |
|
1674 |
for (JSParseNode * p = object->pn_head; p != NULL; p = p->pn_next) { |
1675 |
/* every element of this list must be TOK_COLON */ |
1676 |
if (p->pn_type != TOK_COLON) { |
1677 |
result = -1; |
1678 |
goto done; |
1679 |
} |
1680 |
|
1681 |
/* the key must be a string representing the file */ |
1682 |
JSParseNode * key = p->pn_left; |
1683 |
if (key->pn_type != TOK_STRING || ! ATOM_IS_STRING(key->pn_atom)) { |
1684 |
result = -1; |
1685 |
goto done; |
1686 |
} |
1687 |
char * id_bytes = JS_GetStringBytes(ATOM_TO_STRING(key->pn_atom)); |
1688 |
|
1689 |
/* the value must be an object literal OR an array */ |
1690 |
JSParseNode * value = p->pn_right; |
1691 |
if (! (value->pn_type == TOK_RC || value->pn_type == TOK_RB)) { |
1692 |
result = -1; |
1693 |
goto done; |
1694 |
} |
1695 |
|
1696 |
JSParseNode * array = NULL; |
1697 |
JSParseNode * source = NULL; |
1698 |
if (value->pn_type == TOK_RB) { |
1699 |
/* an array */ |
1700 |
array = value; |
1701 |
} |
1702 |
else if (value->pn_type == TOK_RC) { |
1703 |
/* an object literal */ |
1704 |
if (value->pn_count != 2) { |
1705 |
result = -1; |
1706 |
goto done; |
1707 |
} |
1708 |
for (JSParseNode * element = value->pn_head; element != NULL; element = element->pn_next) { |
1709 |
if (element->pn_type != TOK_COLON) { |
1710 |
result = -1; |
1711 |
goto done; |
1712 |
} |
1713 |
JSParseNode * left = element->pn_left; |
1714 |
if (left->pn_type != TOK_STRING || ! ATOM_IS_STRING(left->pn_atom)) { |
1715 |
result = -1; |
1716 |
goto done; |
1717 |
} |
1718 |
const char * s = JS_GetStringBytes(ATOM_TO_STRING(left->pn_atom)); |
1719 |
if (strcmp(s, "coverage") == 0) { |
1720 |
array = element->pn_right; |
1721 |
if (array->pn_type != TOK_RB) { |
1722 |
result = -1; |
1723 |
goto done; |
1724 |
} |
1725 |
} |
1726 |
else if (strcmp(s, "source") == 0) { |
1727 |
source = element->pn_right; |
1728 |
if (source->pn_type != TOK_RB) { |
1729 |
result = -1; |
1730 |
goto done; |
1731 |
} |
1732 |
} |
1733 |
else { |
1734 |
result = -1; |
1735 |
goto done; |
1736 |
} |
1737 |
} |
1738 |
} |
1739 |
else { |
1740 |
result = -1; |
1741 |
goto done; |
1742 |
} |
1743 |
|
1744 |
if (array == NULL) { |
1745 |
result = -1; |
1746 |
goto done; |
1747 |
} |
1748 |
|
1749 |
/* look up the file in the coverage table */ |
1750 |
FileCoverage * file_coverage = JS_HashTableLookup(coverage->coverage_table, id_bytes); |
1751 |
if (file_coverage == NULL) { |
1752 |
/* not there: create a new one */ |
1753 |
char * id = xstrdup(id_bytes); |
1754 |
file_coverage = xmalloc(sizeof(FileCoverage)); |
1755 |
file_coverage->id = id; |
1756 |
file_coverage->num_coverage_lines = array->pn_count; |
1757 |
file_coverage->coverage_lines = xnew(int, array->pn_count); |
1758 |
file_coverage->source_lines = NULL; |
1759 |
|
1760 |
/* set coverage for all lines */ |
1761 |
uint32 i = 0; |
1762 |
for (JSParseNode * element = array->pn_head; element != NULL; element = element->pn_next, i++) { |
1763 |
if (element->pn_type == TOK_NUMBER) { |
1764 |
file_coverage->coverage_lines[i] = (int) element->pn_dval; |
1765 |
} |
1766 |
else if (element->pn_type == TOK_PRIMARY && element->pn_op == JSOP_NULL) { |
1767 |
file_coverage->coverage_lines[i] = -1; |
1768 |
} |
1769 |
else { |
1770 |
result = -1; |
1771 |
goto done; |
1772 |
} |
1773 |
} |
1774 |
assert(i == array->pn_count); |
1775 |
|
1776 |
/* add to the hash table */ |
1777 |
JS_HashTableAdd(coverage->coverage_table, id, file_coverage); |
1778 |
struct FileCoverageList * coverage_list = xmalloc(sizeof(struct FileCoverageList)); |
1779 |
coverage_list->file_coverage = file_coverage; |
1780 |
coverage_list->next = coverage->coverage_list; |
1781 |
coverage->coverage_list = coverage_list; |
1782 |
} |
1783 |
else { |
1784 |
/* sanity check */ |
1785 |
assert(strcmp(file_coverage->id, id_bytes) == 0); |
1786 |
if (file_coverage->num_coverage_lines != array->pn_count) { |
1787 |
result = -2; |
1788 |
goto done; |
1789 |
} |
1790 |
|
1791 |
/* merge the coverage */ |
1792 |
uint32 i = 0; |
1793 |
for (JSParseNode * element = array->pn_head; element != NULL; element = element->pn_next, i++) { |
1794 |
if (element->pn_type == TOK_NUMBER) { |
1795 |
if (file_coverage->coverage_lines[i] == -1) { |
1796 |
result = -2; |
1797 |
goto done; |
1798 |
} |
1799 |
file_coverage->coverage_lines[i] += (int) element->pn_dval; |
1800 |
} |
1801 |
else if (element->pn_type == TOK_PRIMARY && element->pn_op == JSOP_NULL) { |
1802 |
if (file_coverage->coverage_lines[i] != -1) { |
1803 |
result = -2; |
1804 |
goto done; |
1805 |
} |
1806 |
} |
1807 |
else { |
1808 |
result = -1; |
1809 |
goto done; |
1810 |
} |
1811 |
} |
1812 |
assert(i == array->pn_count); |
1813 |
} |
1814 |
|
1815 |
/* if this JSON file has source, use it */ |
1816 |
if (file_coverage->source_lines == NULL && source != NULL) { |
1817 |
file_coverage->num_source_lines = source->pn_count; |
1818 |
file_coverage->source_lines = xnew(char *, source->pn_count); |
1819 |
uint32 i = 0; |
1820 |
for (JSParseNode * element = source->pn_head; element != NULL; element = element->pn_next, i++) { |
1821 |
if (element->pn_type != TOK_STRING) { |
1822 |
result = -1; |
1823 |
goto done; |
1824 |
} |
1825 |
file_coverage->source_lines[i] = xstrdup(JS_GetStringBytes(ATOM_TO_STRING(element->pn_atom))); |
1826 |
} |
1827 |
assert(i == source->pn_count); |
1828 |
} |
1829 |
} |
1830 |
|
1831 |
done: |
1832 |
js_FinishParseContext(context, &parse_context); |
1833 |
return result; |
1834 |
} |