跳转至

输入查询内容

    本页内容

    新增文件 uvm_cmdline_report.svh(+UVM_VERBOSITY / +uvm_set_* 解析抽离)

    内部实现:文件组织、内部数据结构与实现钩子的变化。直接依赖内部接口时查阅,普通 API 的使用不需要重审这些源码。

    影响范围

    依赖命令行 reporting 配置优先级、参数解析及未生效告警。

    具体差异

    命令行 reporting 配置解析从 uvm_root 抽为独立类并增加"used 跟踪/dump/未生效告警"能力;+UVM_VERBOSITY 多个时仍取第一个(与 1.2 一致),非法值仍 ILLVERB/NSTVERB 告警。用户可见面基本不变。

    修改方案

    无。

    兼容措施与范围:本条是新增能力或实现说明,无需恢复旧接口;按使用条件核对行为。

    迁移后验证

    传入一组合法和一组未命中设置,直接读回目标组件的 verbosity/action/severity;多个 UVM_VERBOSITY 仍取首个,不能假设所有未命中设置都会告警。

    记录核销:在无规则及补充检查中记录实际依赖与证据。

    补充查阅

    扫描定位与记录结果

    无对应规则。当前脚本没有针对本条的直接检测规则。

    按“影响范围”检视实际代码与配置,再执行本条验证方法;扫描零命中不能排除此项。

    扫描器下载、输入范围与报告说明

    源码与标准依据

    核查方式:源码核对。未单独进行 VCS 行为实测。

    VCS 内置 UVM-1.2:逻辑在 uvm_root.svh:1042 起(m_process_verbosity 等)

    VCS 内置 uvm-ieee-2020-2.0uvm_cmdline_report.svh:25–563uvm_cmdline_verbosity/uvm_cmdline_set_verbosity/uvm_cmdline_set_action/uvm_cmdline_set_severity,NODOCS 内部类)

    引用代码(高亮为引用行);上方行号链接可直接定位。

    src/vcs-uvm-1.2/base/uvm_root.svh
      `ifndef UVM_CMDLINE_NO_DPI
      // Retrieve the verbosities provided on the command line.
      verb_count = clp.get_arg_values("+UVM_VERBOSITY=", verb_settings);
      `else
      verb_count = $value$plusargs("UVM_VERBOSITY=%s",verb_string);
      if (verb_count)
        verb_settings.push_back(verb_string);
      `endif
    
      // If none provided, provide message about the default being used.
      //if (verb_count == 0)
      //  uvm_report_info("DEFVERB", ("No verbosity specified on the command line.  Using the default: UVM_MEDIUM"), UVM_NONE);
    
      // If at least one, use the first.
      if (verb_count > 0) begin
        verb_string = verb_settings[0];
        plusarg = 1;
      end
    

    完整源码 · SHA256:7a3a006a2f6a7b5bbedc778d199ef5389bbe97f19358c79b12ec5d3b18e81438

    src/vcs-uvm-ieee-2020-2.0/base/uvm_cmdline_report.svh
     22
     23
     24
     25
     26
     27
     28
     29
     30
     31
     32
     33
     34
     35
     36
     37
     38
     39
     40
     41
     42
     43
     44
     45
     46
     47
     48
     49
     50
     51
     52
     53
     54
     55
     56
     57
     58
     59
     60
     61
     62
     63
     64
     65
     66
     67
     68
     69
     70
     71
     72
     73
     74
     75
     76
     77
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
     88
     89
     90
     91
     92
     93
     94
     95
     96
     97
     98
     99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    //------------------------------------------------------------------------------
    
    // Command line classes
    class uvm_cmdline_setting_base;
      string    arg; // Original command line option
      bit used[uvm_component]; // Usage tracking
    endclass : uvm_cmdline_setting_base
    
    class uvm_cmdline_verbosity extends uvm_cmdline_setting_base;
      // Instance Methods/Variables
      int verbosity;
      enum {STANDARD, NON_STANDARD, ILLEGAL} src;
    
      // Static Methods/Variables
      static const string prefix = "+UVM_VERBOSITY=";
      static uvm_cmdline_verbosity settings[$];
    
    
      // Function --NODOCS-- init
      // Initializes the ~settings~ queue with the command line verbosity settings.
      //
      // Warnings for incorrectly formatted command line arguments are routed through
      // the report object ~ro~.  If ~ro~ is null, then no warnings shall be generated.
      static function void init(input uvm_report_object ro);
        string  setting_str[$];
        int     verbosity;
        int     verb_count;
        string  verb_string;
        bit     skip;
        uvm_cmdline_processor clp = uvm_cmdline_processor::get_inst();
    
    `ifndef UVM_CMDLINE_NO_DPI
        // Retrieve the verbosities provided on the command line
        verb_count = clp.get_arg_values(prefix, setting_str);
    `else
        verb_count = $value$plusargs("UVM_VERBOSITY=%s", verb_string);
        if (verb_count)
          setting_str.push_back(verb_string);
    `endif
    
        foreach(setting_str[i]) begin
          uvm_cmdline_verbosity setting;
          uvm_verbosity temp_verb;
          setting = new();
          setting.arg = setting_str[i];
          setting.src = STANDARD;
    
          if (!uvm_string_to_verbosity(setting_str[i], temp_verb)) begin
            int code;
            code = $sscanf(setting_str[i], "%d", setting.verbosity);
            if (code > 0) begin
              `uvm_info_context("NSTVERB", 
                                $sformatf("Non-standard verbosity value '%s', converted to '%0d'.",
                                          setting_str[i], verbosity),
                                UVM_NONE,
                                ro)
              setting.src = NON_STANDARD;
            end
            else begin
              setting.verbosity = UVM_MEDIUM;
              setting.src = ILLEGAL;
            end
          end // if (!uvm_string_to_verbosity(setting_str[i], verbosity))
          else begin
            setting.verbosity = temp_verb;
          end
    
          settings.push_back(setting);
        end // foreach (setting_str[i])
    
      endfunction : init
    
      // Function --NODOCS-- check
      // Checks the settings queue for unused verbosity settings.
      //
      // Verbosity could be unused because it wasn't first on the command line.
      static function void check(uvm_report_object ro);
        string verb_q[$];
    
        foreach (settings[i]) begin
          if (settings[i].src == ILLEGAL) begin
            `uvm_warning_context("ILLVERB",
                                 $sformatf("Illegal verbosity value '%s', converted to default of UVM_MEDIUM.",
                                           settings[i].arg),
                                 ro)
          end
          if (i != 0)
            verb_q.push_back(", ");
          verb_q.push_back(settings[i].arg);
        end // foreach (settings[i])
    
        if (settings.size() > 1) begin
          `uvm_warning_context("MULTVERB",
                   $sformatf("Multiple (%0d) +UVM_VERBOSITY arguments provided on the command line.  '%s' will be used.  Provided list: %s.", 
                                         settings.size(),
                                         settings[0].arg, 
                                         `UVM_STRING_QUEUE_STREAMING_PACK(verb_q)),
                               ro);
        end // if (settings.size() > 1)
      endfunction : check
    
      // Function --NODOCS-- dump
      // Dumps the usage information for the verbosity settings as a string.
      //
      static function string dump();
        string msgs[$];
        int    tmp_verb;
    
        foreach (settings[i]) begin
          msgs.push_back($sformatf("\n%s%s: ", prefix, settings[i].arg));
          if (i == 0)
            msgs.push_back("Applied");
          else
            msgs.push_back("Not applied (not first on command line)");
          if (settings[i].src == NON_STANDARD)
            msgs.push_back($sformatf(", converted as non-standard to '%0d'", settings[i].verbosity)); 
          else if (settings[i].src == ILLEGAL)
            msgs.push_back(", converted as ILLEGAL to UVM_MEDIUM");
        end // foreach (settings[i])
    
        return `UVM_STRING_QUEUE_STREAMING_PACK(msgs);
      endfunction : dump
    
    endclass : uvm_cmdline_verbosity
    
    
    
    class uvm_cmdline_set_verbosity extends uvm_cmdline_setting_base;
      // Instance Methods/Variables
      string    comp;
      string    id;
      int       verbosity;
      string    phase;
      time      offset;
    
      // Static Methods/Variables
      static const string prefix = "+uvm_set_verbosity="; 
      static uvm_cmdline_set_verbosity settings[$]; // Processed command line settings
    
    
      // Function --NODOCS-- init
      // Initializes the ~settings~ queue with the command line verbosity settings.
      //
      // Warnings for incorrectly formatted command line arguments are routed through
      // the report object ~ro~.  If ~ro~ is null, then no warnings shall be generated.
      static function void init(input uvm_report_object ro);
        string  setting_str[$];
        uvm_cmdline_processor clp = uvm_cmdline_processor::get_inst();
    
        if (clp.get_arg_values(prefix, setting_str) > 0) begin
          uvm_verbosity temp_verb;
          string  args[$];
          string  message;
          bit     skip;
    
          foreach(setting_str[i]) begin
            skip = 0;
            uvm_string_split(setting_str[i], ",", args);
            if (args.size() < 4 || args.size() > 5) begin
              message = "Invalid number of arguments found, expected 4 or 5";
              skip = 1;
            end
            if (args.size() == 5 && args[3] != "time") begin
              message = "Too many arguments found for <phase>, expected only 4";
              skip = 1;
            end
            if (args.size() == 4 && args[3] == "time") begin
              message = "Too few arguments found for <time>, expected 5";
              skip = 1;
            end
            if (!uvm_string_to_verbosity(args[2], temp_verb)) begin
              message = "Invalid verbosity found";
              skip = 1;
            end
    
            if (!skip) begin
              int rt_val;
              uvm_cmdline_set_verbosity setting;
              setting = new();
              setting.arg = setting_str[i];
              setting.comp = args[0];
              setting.id = args[1];
              setting.verbosity = temp_verb;
              setting.phase = args[3];
              if (setting.phase == "time") begin
                rt_val = $sscanf(args[4], "%d", setting.offset);
              end
              else
                setting.offset = 0;
              settings.push_back(setting);
            end // if (!skip)
            else if (ro != null) begin
              `uvm_warning_context("INVLCMDARGS",
                                   $sformatf("%s, setting '%s%s' will be ignored.",
                                             message,
                                             prefix,
                                             setting_str[i]),
                                   ro)
            end          
          end // foreach (setting_string[i])
        end // if (clp.get_arg_values(prefix, setting_string) > 0)
    
      endfunction : init
    
      // Function --NODOCS-- check
      // Checks the settings queue for unused verbosity settings.
      //
      // Verbosity could be unused because:
      //   a) It didn't match any components
      //   b) The ~offset~ specified hasn't occurred yet
      //   c) The ~phase~ specified hasn't occurred yet
      static function void check(uvm_report_object ro);
        foreach (settings[i]) begin
          if (settings[i].used.size() == 0) begin
            // Warn if we didn't match any components
            `uvm_warning_context("INVLCMDARGS",
                                 $sformatf("\"%s%s\" never took effect due to either a mismatching component pattern.",
                                           prefix,
                                           settings[i].arg),
                                 ro)
          end
          else begin
            if (settings[i].phase == "time") begin
              if ($time < settings[i].offset) begin
                // Warn if we haven't hit the time yet
                `uvm_warning_context("INVLCMDARGS",
                                     $sformatf("\"%s%s\" never took effect due to test ending before offset was reached.",
                                               prefix,
                                               settings[i].arg),
                                     ro)
              end
            end
            else begin
              bit hit;
              uvm_cmdline_set_verbosity setting;
              setting = settings[i];
              foreach (setting.used[i]) begin
                if (setting.used[i]) begin
                  hit = 1;
                  break;
                end
              end // foreach (setting.used[i])
    
              if (!hit) begin
                // Warn if all our matching components never saw ~phase~
                `uvm_warning_context("INVLCMDARGS",
                                     $sformatf("\"%s%s\" never took effect due to phase never occurring for matching component(s).",
                                               prefix,
                                               settings[i].arg),
                                     ro)
              end
            end // else: !if(settings[i].phase == "time")
          end // else: !if(settings[i].used.size() == 0)
        end // foreach (settings[i])
    
      endfunction : check
    
      // Function --NODOCS-- dump
      // Dumps the usage information for the verbosity settings as a string.
      //
      static function string dump();
        string msgs[$];
        uvm_component sorted_list[$];
        foreach (settings[i]) begin
          uvm_cmdline_set_verbosity setting;
          setting = settings[i];
          msgs.push_back($sformatf("\n%s%s", prefix, setting.arg));
          msgs.push_back("\n  matching components:");
          if (setting.used.size() == 0)
            msgs.push_back("\n    <none>");
          else begin
            sorted_list.delete();
            foreach (setting.used[j])
              sorted_list.push_back(j);
            sorted_list.sort() with ( item.get_full_name() );
            foreach (sorted_list[j]) begin
              string full_name;
              full_name = sorted_list[j].get_full_name();
              if (full_name == "")
                full_name = "<uvm_root>";
              msgs.push_back("\n    ");
              msgs.push_back(full_name);
              msgs.push_back(": ");
              if ((setting.phase == "time" && setting.used[sorted_list[j]]) ||
                  (setting.phase != "time" && setting.used[sorted_list[j]]))
                msgs.push_back("Applied");
              else begin
                msgs.push_back("Not applied ");
                if (setting.phase == "time")
                  msgs.push_back("(component never reached offset)");
                else
                  msgs.push_back("(component never saw phase)");
              end
            end // foreach (setting.used[j])
          end // else: !if(setting.used.size() == 0)
        end // foreach (settings[i])
    
        return `UVM_STRING_QUEUE_STREAMING_PACK(msgs);
      endfunction : dump
    
    endclass // uvm_cmdline_set_verbosity
    
    class uvm_cmdline_set_action extends uvm_cmdline_setting_base;
      // Instance Methods/Variables
      string    comp;
      string    id;
      bit       all_sev;
      uvm_severity sev;
      uvm_action action;
    
      // Static Methods/Variables
      static const string prefix="+uvm_set_action=";
      static uvm_cmdline_set_action settings[$]; // Processed command line settings
    
      // Function --NODOCS-- init
      // Initializes the ~settings~ queue with the command line action settings.
      //
      // Warnings for incorrectly formatted command line arguments are routed through
      // the report object ~ro~.  If ~ro~ is null, then no warnings shall be generated.
      static function void init(input uvm_report_object ro);
        string  setting_str[$];
        uvm_cmdline_processor clp = uvm_cmdline_processor::get_inst();
    
        if (clp.get_arg_values(prefix, setting_str) > 0) begin
          uvm_action action;
          uvm_severity sev;
          string  args[$];
          string  message;
          bit     skip;
    
          foreach(setting_str[i]) begin
            skip = 0;
            uvm_string_split(setting_str[i], ",", args);
            if (args.size() != 4) begin
              message = "Invalid number of arguments found, expected 4";
              skip = 1;
            end
            if (args[2] != "_ALL_" && !uvm_string_to_severity(args[2], sev)) begin
              message = $sformatf("Bad severity argument '%s'", args[2]);
              skip = 1;
            end
            if (!uvm_string_to_action(args[3], action)) begin
              message = $sformatf("Bad action argument '%s'", args[3]);
              skip = 1;
            end
    
            if (!skip) begin
              uvm_cmdline_set_action setting;
              setting = new();
              setting.arg = setting_str[i];
              setting.comp = args[0];
              setting.id = args[1];
              setting.all_sev = (args[2] == "_ALL_");
              setting.sev = sev;
              setting.action = action;
    
              settings.push_back(setting);
            end // if (!skip)
            else if (ro != null) begin
              `uvm_warning_context("INVLCMDARGS", 
                                   $sformatf("%s, setting '%s%s' will be ignored.",
                                             message,
                                             prefix,
                                             setting_str[i]),
                                   ro)
            end
          end // foreach (setting_str[i])
        end // if (clp.get_arg_values(prefix, setting_str) > 0)
    
      endfunction : init
    
      // Function --NODOCS-- check
      // Checks the settings queue for unused action settings.
      //
      // Verbosity could be unused because:
      //   a) It didn't match any components
      static function void check(uvm_report_object ro);
        foreach(settings[i]) begin
          if (settings[i].used.size() == 0) begin
            `uvm_warning_context("INVLCMDARGS",
                                 $sformatf("\"%s%s\" never took effect due to a mismatching component pattern",
                                           prefix,
                                           settings[i].arg),
                                 ro)
          end
        end
      endfunction : check
    
      // Function --NODOCS-- dump
      // Dumps the usage information for the verbosity settings as a string.
      //
      static function string dump();
        string msgs[$];
        uvm_component sorted_list[$];
        foreach (settings[i]) begin
          uvm_cmdline_set_action setting;
          setting = settings[i];
          msgs.push_back($sformatf("\n%s%s", prefix, setting.arg));
          msgs.push_back("\n  matching components:");
          if (setting.used.size() == 0)
            msgs.push_back("\n    <none>");
          else begin
            sorted_list.delete();
            foreach (setting.used[j])
              sorted_list.push_back(j);
            sorted_list.sort() with ( item.get_full_name() );
            foreach (sorted_list[j]) begin
              string full_name;
              full_name = sorted_list[j].get_full_name();
              if (full_name == "")
                full_name = "<uvm_root>";
              msgs.push_back("\n    ");
              msgs.push_back(full_name);
              msgs.push_back(": Applied");
            end // foreach (setting.used[j])
          end // else: !if(setting.used.size() == 0)
        end // foreach (settings[i])
    
        return `UVM_STRING_QUEUE_STREAMING_PACK(msgs);
      endfunction : dump
    
    endclass : uvm_cmdline_set_action
    
    class uvm_cmdline_set_severity extends uvm_cmdline_setting_base;
      // Instance Methods/Variables
      string    comp;
      string    id;
      bit       all_sev;
      uvm_severity orig_sev;
      uvm_severity sev;
    
      // Static Methods/Variables
      static const string prefix="+uvm_set_severity=";
      static uvm_cmdline_set_severity settings[$]; // Processed command line settings
    
      // Function --NODOCS-- init
      // Initializes the ~settings~ queue with the command line severity settings.
      //
      // Warnings for incorrectly formatted command line arguments are routed through
      // the report object ~ro~.  If ~ro~ is null, then no warnings shall be generated.
      static function void init(input uvm_report_object ro);
        string  setting_str[$];
        uvm_cmdline_processor clp = uvm_cmdline_processor::get_inst();
    
        if (clp.get_arg_values(prefix, setting_str) > 0) begin
          uvm_severity orig_sev, sev;
          string  args[$];
          string  message;
          bit     skip;
    
          foreach(setting_str[i]) begin
            skip = 0;
            uvm_string_split(setting_str[i], ",", args);
            if (args.size() != 4) begin
              message = "Invalid number of arguments found, expected 4";
              skip = 1;
            end
            if (args[2] != "_ALL_" && !uvm_string_to_severity(args[2], orig_sev)) begin
              message = $sformatf("Bad severity argument '%s'", args[2]);
              skip = 1;
            end
            if (!uvm_string_to_severity(args[3], sev)) begin
              message = $sformatf("Bad severity argument '%s'", args[3]);
              skip = 1;
            end
    
            if (!skip) begin
              uvm_cmdline_set_severity setting;
              setting = new();
              setting.arg = setting_str[i];
              setting.comp = args[0];
              setting.id = args[1];
              setting.all_sev = (args[2] == "_ALL_");
              setting.orig_sev = orig_sev;
              setting.sev = sev;
              settings.push_back(setting);
            end // if (!skip)
            else if (ro != null) begin
              `uvm_warning_context("INVLCMDARGS", 
                                   $sformatf("%s, setting '%s%s' will be ignored.",
                                             message, 
                                             prefix,
                                             setting_str[i]),
                                   ro)
            end
          end // foreach (setting_str[i])
        end // if (clp.get_arg_values(prefix, setting_str) > 0)
      endfunction : init
    
    
      // Function --NODOCS-- check
      // Checks the settings queue for unused action settings.
      //
      // Verbosity could be unused because:
      //   a) It didn't match any components
      static function void check(uvm_report_object ro);
        foreach(settings[i]) begin
          if (settings[i].used.size() == 0) begin
            `uvm_warning_context("INVLCMDARGS",
                                 $sformatf("\"%s%s\" never took effect due to a mismatching component pattern",
                                           prefix,
                                           settings[i].arg),
                                 ro)
          end
        end
      endfunction : check
    
      // Function --NODOCS-- dump
      // Dumps the usage information for the verbosity settings as a string.
      //
      static function string dump();
        string msgs[$];
        uvm_component sorted_list[$];
        foreach (settings[i]) begin
          uvm_cmdline_set_severity setting;
          setting = settings[i];
          msgs.push_back($sformatf("\n%s%s", prefix, setting.arg));
          msgs.push_back("\n  matching components:");
          if (setting.used.size() == 0)
            msgs.push_back("\n    <none>");
          else begin
            sorted_list.delete();
            foreach (setting.used[j])
              sorted_list.push_back(j);
            sorted_list.sort() with ( item.get_full_name() );
            foreach (sorted_list[j]) begin
              string full_name;
              full_name = sorted_list[j].get_full_name();
              if (full_name == "")
                full_name = "<uvm_root>";
              msgs.push_back("\n    ");
              msgs.push_back(full_name);
              msgs.push_back(": Applied");
            end // foreach (setting.used[j])
          end // else: !if(setting.used.size() == 0)
        end // foreach (settings[i])
    
        return `UVM_STRING_QUEUE_STREAMING_PACK(msgs);
      endfunction : dump
    
    
    endclass : uvm_cmdline_set_severity
    

    完整源码 · SHA256:b6406f2ee65320d4bddb8f9bd5bf134872b8164e382f9fa111852cf6c8cff2ac

    术语解释 · 兼容配置

    返回Reporting / 命令行 · 迁移清单

    版本适用范围