* Copyright (c) 2026 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
#include "ir/core.h"
#include <sstream>
#include <string>
#include <unordered_set>
#include <mutex>
#include <atomic>
#include "interface/utils/common.h"
namespace pypto {
namespace ir {
class SpanImpl {
public:
const std::string filename_;
const int beginLine_;
const int beginColumn_;
const int endLine_;
const int endColumn_;
std::atomic_int refcnt{1};
static SpanImpl* Create(const std::string& filename, int beginLine, int beginColumn, int endLine, int endColumn);
void Put();
void Get() { refcnt++; }
private:
SpanImpl(const std::string& filename, int beginLine, int beginColumn, int endLine, int endColumn)
: filename_(filename),
beginLine_(beginLine),
beginColumn_(beginColumn),
endLine_(endLine),
endColumn_(endColumn)
{}
};
struct SpanImplHash {
std::size_t operator()(SpanImpl* span) const
{
std::size_t h = std::hash<std::string>()(span->filename_);
npu::tile_fwk::HashCombine(h, span->beginLine_);
npu::tile_fwk::HashCombine(h, span->beginColumn_);
npu::tile_fwk::HashCombine(h, span->endLine_);
npu::tile_fwk::HashCombine(h, span->endColumn_);
return h;
}
};
struct SpanImplEqual {
bool operator()(SpanImpl* a, SpanImpl* b) const
{
return a->filename_ == b->filename_ && a->beginLine_ == b->beginLine_ && a->endLine_ == b->endLine_ &&
a->beginColumn_ == b->beginColumn_ && a->endColumn_ == b->endColumn_;
}
};
struct SpanRegistry {
std::mutex mutex;
std::unordered_set<SpanImpl*, SpanImplHash, SpanImplEqual> spans;
SpanImpl* GetOrInsert(SpanImpl* span)
{
std::unique_lock lock(mutex);
auto it = spans.find(span);
if (it != spans.end()) {
(*it)->refcnt++;
lock.unlock();
delete span;
return *it;
}
spans.insert(span);
return span;
}
void Put(SpanImpl* span)
{
std::unique_lock lock(mutex);
if (--span->refcnt == 0) {
spans.erase(span);
lock.unlock();
delete span;
}
}
};
static SpanRegistry& Registry()
{
static SpanRegistry instance;
return instance;
}
SpanImpl* SpanImpl::Create(const std::string& filename, int beginLine, int beginColumn, int endLine, int endColumn)
{
auto span = new SpanImpl(filename, beginLine, beginColumn, endLine, endColumn);
return Registry().GetOrInsert(span);
}
void SpanImpl::Put() { Registry().Put(this); }
Span::Span(const Span& other)
{
impl_ = other.impl_;
impl_->Get();
}
Span::Span()
{
impl_ = Unknown().impl_;
impl_->Get();
}
Span& Span::operator=(const Span& other)
{
if (this != &other) {
impl_->Put();
impl_ = other.impl_;
impl_->Get();
}
return *this;
}
Span::Span(Span&& other)
{
impl_ = other.impl_;
impl_->Get();
other = Unknown();
}
Span& Span::operator=(Span&& other)
{
if (this != &other) {
impl_->Put();
impl_ = other.impl_;
impl_->Get();
other = Unknown();
}
return *this;
}
Span::Span(const std::string& file, int beginLine, int beginColumn, int endLine, int endColumn)
{
impl_ = SpanImpl::Create(file, beginLine, beginColumn, endLine, endColumn);
}
Span::~Span() { impl_->Put(); }
const std::string& Span::Filename() const { return impl_->filename_; }
int Span::BeginLine() const { return impl_->beginLine_; }
int Span::BeginColumn() const { return impl_->beginColumn_; }
int Span::EndLine() const { return impl_->endLine_; }
int Span::EndColumn() const { return impl_->endColumn_; }
bool Span::IsValid() const
{
if (impl_->beginLine_ <= 0 || (impl_->beginColumn_ <= 0 && impl_->beginColumn_ != -1)) {
return false;
}
if (impl_->endLine_ == -1 || impl_->endColumn_ == -1) {
return true;
}
if (impl_->endLine_ <= 0 || (impl_->endColumn_ <= 0 && impl_->endColumn_ != -1)) {
return false;
}
if (impl_->beginColumn_ == -1 || impl_->endColumn_ == -1) {
return impl_->endLine_ >= impl_->beginLine_;
}
return impl_->endLine_ >= impl_->beginLine_ &&
(impl_->endLine_ > impl_->beginLine_ || impl_->endColumn_ >= impl_->beginColumn_);
}
std::string Span::ToString() const
{
std::ostringstream oss;
oss << impl_->filename_ << ":" << impl_->beginLine_ << ":" << impl_->beginColumn_;
return oss.str();
}
Span& Span::Unknown()
{
static Span span = Span("", -1, -1, -1, -1);
return span;
}
bool Span::IsUnknown(const Span& span) { return span.IsUnknown(); }
void Span::SetCurrent(const Span& span) { Current() = span; }
Span& Span::Current()
{
static Span span = Unknown();
return span;
}
}
}