mirror of
https://gitee.com/openharmony/arkcompiler_runtime_core
synced 2025-04-12 23:50:55 +00:00

Remove unused code Issue: #I638QE Signed-off-by: qiuyu <qiuyu22@huawei.com> Change-Id: I33908e556a638806a5bb2a06e023ba449ba910ef
32 lines
1.0 KiB
C++
32 lines
1.0 KiB
C++
/**
|
|
* Copyright (c) 2021-2022 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include "compiler/optimizer/ir/basicblock.h"
|
|
#include "compiler/optimizer/ir/graph.h"
|
|
|
|
namespace panda::bytecodeopt {
|
|
|
|
uint8_t AccReadIndex(const compiler::Inst *inst)
|
|
{
|
|
if (inst->IsIntrinsic() && inst->IsAccRead()) {
|
|
ASSERT(inst->GetBasicBlock()->GetGraph()->IsDynamicMethod());
|
|
ASSERT(inst->GetInputsCount() >= 2U);
|
|
return inst->GetInputsCount() - 2U;
|
|
}
|
|
return 0;
|
|
}
|
|
} // namespace panda::bytecodeopt
|