static Bool cg_process_cmd_line_option(Char* arg) { // 5 is length of "--I1=" if (VG_CLO_STREQN(5, arg, "--I1=")) parse_cache_opt(&clo_I1_cache, &arg[5]); else if (VG_CLO_STREQN(5, arg, "--D1=")) parse_cache_opt(&clo_D1_cache, &arg[5]); else if (VG_CLO_STREQN(5, arg, "--L2=")) parse_cache_opt(&clo_L2_cache, &arg[5]); else return False; return True; }
static Bool cg_process_cmd_line_option(Char* arg) { // 5 is length of "--I1=" if (VG_CLO_STREQN(5, arg, "--I1=")) parse_cache_opt(&clo_I1_cache, &arg[5]); else if (VG_CLO_STREQN(5, arg, "--D1=")) parse_cache_opt(&clo_D1_cache, &arg[5]); else if (VG_CLO_STREQN(5, arg, "--L2=")) parse_cache_opt(&clo_L2_cache, &arg[5]); else if (VG_CLO_STREQN(22, arg, "--cachegrind-out-file=")) { cachegrind_out_file_basename = &arg[22]; } else return False; return True; }