LCOV - code coverage report
Current view: top level - legacy/ascend950/unified_platform/ccu/ccu_representation/reps/common - ccu_rep_load_var.cpp (source / functions) Coverage Total Hit
Test: coverage.info Lines: 100.0 % 22 22
Test Date: 2026-07-28 12:11:00 Functions: 100.0 % 3 3

            Line data    Source code
       1              : /**
       2              :  * Copyright (c) 2025 Huawei Technologies Co., Ltd.
       3              :  * This program is free software, you can redistribute it and/or modify it under the terms and conditions of
       4              :  * CANN Open Software License Agreement Version 2.0 (the "License").
       5              :  * Please refer to the License for details. You may not use this file except in compliance with the License.
       6              :  * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
       7              :  * INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
       8              :  * See LICENSE in the root of the software repository for the full text of the License.
       9              :  */
      10              : 
      11              : #include "ccu_rep.h"
      12              : #include "string_util.h"
      13              : 
      14              : namespace Hccl {
      15              : namespace CcuRep {
      16              : 
      17            5 : CcuRepLoadVar::CcuRepLoadVar(const Variable &src, const Variable &var, uint32_t num) : src(src), var(var), num(num)
      18              : {
      19            5 :     type       = CcuRepType::LOAD_VAR;
      20            5 :     instrCount = 7; // 7: Load包含7条指令
      21            5 : }
      22              : 
      23            5 : bool CcuRepLoadVar::Translate(CcuInstr *&instr, uint16_t &instrId, const TransDep &dep)
      24              : {
      25            5 :     CHECK_NULLPTR(instr, "[CcuRepLoadVar::Translate] instr is nullptr!");
      26            5 :     this->instrId    = instrId;
      27            5 :     translated       = true;
      28            5 :     uint64_t varAddr = dep.xnBaseAddr + CCU_RESOURCE_XN_PER_SIZE * var.Id();
      29            5 :     LoadImdToGSAInstr(instr++, dep.commGsa[0], varAddr);
      30            5 :     LoadGSAXnInstr(instr++, dep.commGsa[1], dep.reserveGsaId, src.Id());
      31            5 :     LoadImdToXnInstr(instr++, dep.commXn[0], dep.ccuResSpaceTokenInfo, CCU_LOAD_TO_XN_SEC_INFO);
      32            5 :     LoadImdToXnInstr(instr++, dep.commXn[1], dep.memTokenInfo, CCU_LOAD_TO_XN_SEC_INFO);
      33            5 :     LoadImdToXnInstr(instr++, dep.commXn[2], CCU_RESOURCE_XN_PER_SIZE * num);
      34            5 :     TransLocMemToLocMemInstr(instr++, dep.commGsa[0], dep.commXn[0], dep.commGsa[1], dep.commXn[1], dep.commXn[2],
      35            5 :                              dep.reserveChannalId[0], dep.commSignal, mask, 0, 0, 1, 1);
      36            5 :     SetCKEInstr(instr++, 0, 0, dep.commSignal, mask, 1);
      37            5 :     CHK_PRT_THROW((instrId > UINT16_MAX - instrCount),
      38              :                         HCCL_ERROR("[CcuRepLoadVar::Translate]uint16 integer overflow occurs, instrId = [%hu], instrCount = [%hu]", instrId, instrCount),
      39              :                           InternalException, "integer overflow");
      40            5 :     instrId += instrCount;
      41              : 
      42            5 :     return translated;
      43              : }
      44              : 
      45            4 : std::string CcuRepLoadVar::Describe()
      46              : {
      47            4 :     return StringFormat("Load Var([%u], [%u], [%u])", src.Id(), var.Id(), num);
      48              : }
      49              : 
      50              : }; // namespace CcuRep
      51              : }; // namespace Hccl
        

Generated by: LCOV version 2.0-1