• Home
  • Raw
  • Download

Lines Matching refs:CLG_

397 void CLG_(update_fn_config)(fn_node* fn)  in CLG_()  function
409 Bool CLG_(process_cmd_line_option)(const HChar* arg) in CLG_() function
413 if VG_BOOL_CLO(arg, "--skip-plt", CLG_(clo).skip_plt) {} in CLG_()
415 else if VG_BOOL_CLO(arg, "--collect-jumps", CLG_(clo).collect_jumps) {} in CLG_()
417 else if VG_BOOL_CLO(arg, "--trace-jump", CLG_(clo).collect_jumps) {} in CLG_()
419 else if VG_BOOL_CLO(arg, "--combine-dumps", CLG_(clo).combine_dumps) {} in CLG_()
421 else if VG_BOOL_CLO(arg, "--collect-atstart", CLG_(clo).collect_atstart) {} in CLG_()
423 else if VG_BOOL_CLO(arg, "--instr-atstart", CLG_(clo).instrument_atstart) {} in CLG_()
425 else if VG_BOOL_CLO(arg, "--separate-threads", CLG_(clo).separate_threads) {} in CLG_()
427 else if VG_BOOL_CLO(arg, "--compress-strings", CLG_(clo).compress_strings) {} in CLG_()
428 else if VG_BOOL_CLO(arg, "--compress-mangled", CLG_(clo).compress_mangled) {} in CLG_()
429 else if VG_BOOL_CLO(arg, "--compress-pos", CLG_(clo).compress_pos) {} in CLG_()
455 CLG_(clo).collect_atstart = False; in CLG_()
458 else if VG_INT_CLO(arg, "--separate-recs", CLG_(clo).separate_recursions) {} in CLG_()
461 else if VG_XACT_CLO(arg, "--pop-on-jump", CLG_(clo).pop_on_jump, True) {} in CLG_()
468 else if VG_INT_CLO(arg, "--ct-verbose", CLG_(clo).verbose) {} in CLG_()
469 else if VG_INT_CLO(arg, "--ct-vstart", CLG_(clo).verbose_start) {} in CLG_()
482 CLG_(clo).separate_callers, CONFIG_AUTO) {} in CLG_()
484 CLG_(clo).separate_callers) {} in CLG_()
513 else if VG_STR_CLO(arg, "--callgrind-out-file", CLG_(clo).out_format) {} in CLG_()
515 else if VG_BOOL_CLO(arg, "--mangle-names", CLG_(clo).mangle_names) {} in CLG_()
518 CLG_(clo).skip_direct_recursion) {} in CLG_()
520 else if VG_BOOL_CLO(arg, "--dump-bbs", CLG_(clo).dump_bbs) {} in CLG_()
521 else if VG_BOOL_CLO(arg, "--dump-line", CLG_(clo).dump_line) {} in CLG_()
522 else if VG_BOOL_CLO(arg, "--dump-instr", CLG_(clo).dump_instr) {} in CLG_()
523 else if VG_BOOL_CLO(arg, "--dump-bb", CLG_(clo).dump_bb) {} in CLG_()
525 else if VG_INT_CLO( arg, "--dump-every-bb", CLG_(clo).dump_every_bb) {} in CLG_()
527 else if VG_BOOL_CLO(arg, "--collect-alloc", CLG_(clo).collect_alloc) {} in CLG_()
528 else if VG_BOOL_CLO(arg, "--collect-systime", CLG_(clo).collect_systime) {} in CLG_()
529 else if VG_BOOL_CLO(arg, "--collect-bus", CLG_(clo).collect_bus) {} in CLG_()
531 else if VG_BOOL_CLO(arg, "--cache-sim", CLG_(clo).simulate_cache) {} in CLG_()
533 else if VG_BOOL_CLO(arg, "--simulate-cache", CLG_(clo).simulate_cache) {} in CLG_()
535 else if VG_BOOL_CLO(arg, "--branch-sim", CLG_(clo).simulate_branch) {} in CLG_()
537 Bool isCachesimOption = (*CLG_(cachesim).parse_opt)(arg); in CLG_()
541 CLG_(clo).simulate_cache = True; in CLG_()
549 void CLG_(print_usage)(void) in CLG_() function
604 (*CLG_(cachesim).print_opts)(); in CLG_()
611 void CLG_(print_debug_usage)(void) in CLG_() function
627 void CLG_(set_clo_defaults)(void) in CLG_() function
632 CLG_(clo).out_format = 0; in CLG_()
633 CLG_(clo).combine_dumps = False; in CLG_()
634 CLG_(clo).compress_strings = True; in CLG_()
635 CLG_(clo).compress_mangled = False; in CLG_()
636 CLG_(clo).compress_events = False; in CLG_()
637 CLG_(clo).compress_pos = True; in CLG_()
638 CLG_(clo).mangle_names = True; in CLG_()
639 CLG_(clo).dump_line = True; in CLG_()
640 CLG_(clo).dump_instr = False; in CLG_()
641 CLG_(clo).dump_bb = False; in CLG_()
642 CLG_(clo).dump_bbs = False; in CLG_()
644 CLG_(clo).dump_every_bb = 0; in CLG_()
647 CLG_(clo).separate_threads = False; in CLG_()
648 CLG_(clo).collect_atstart = True; in CLG_()
649 CLG_(clo).collect_jumps = False; in CLG_()
650 CLG_(clo).collect_alloc = False; in CLG_()
651 CLG_(clo).collect_systime = False; in CLG_()
652 CLG_(clo).collect_bus = False; in CLG_()
654 CLG_(clo).skip_plt = True; in CLG_()
655 CLG_(clo).separate_callers = 0; in CLG_()
656 CLG_(clo).separate_recursions = 2; in CLG_()
657 CLG_(clo).skip_direct_recursion = False; in CLG_()
660 CLG_(clo).instrument_atstart = True; in CLG_()
661 CLG_(clo).simulate_cache = False; in CLG_()
662 CLG_(clo).simulate_branch = False; in CLG_()
665 CLG_(clo).pop_on_jump = False; in CLG_()
668 CLG_(clo).verbose = 0; in CLG_()
669 CLG_(clo).verbose_start = 0; in CLG_()