forked from OSchip/llvm-project
147 lines
5.5 KiB
C++
147 lines
5.5 KiB
C++
//===- Location.cpp - MLIR Location Classes -------------------------------===//
|
|
//
|
|
// Copyright 2019 The MLIR Authors.
|
|
//
|
|
// 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 "mlir/IR/Location.h"
|
|
#include "LocationDetail.h"
|
|
#include "llvm/ADT/SetVector.h"
|
|
|
|
using namespace mlir;
|
|
using namespace mlir::detail;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// CallSiteLoc
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
Location CallSiteLoc::get(Location callee, Location caller) {
|
|
return Base::get(callee->getContext(), StandardAttributes::CallSiteLocation,
|
|
callee, caller);
|
|
}
|
|
|
|
Location CallSiteLoc::get(Location name, ArrayRef<Location> frames) {
|
|
assert(!frames.empty() && "required at least 1 call frame");
|
|
Location caller = frames.back();
|
|
for (auto frame : llvm::reverse(frames.drop_back()))
|
|
caller = CallSiteLoc::get(frame, caller);
|
|
return CallSiteLoc::get(name, caller);
|
|
}
|
|
|
|
Location CallSiteLoc::getCallee() const { return getImpl()->callee; }
|
|
|
|
Location CallSiteLoc::getCaller() const { return getImpl()->caller; }
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// FileLineColLoc
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
Location FileLineColLoc::get(Identifier filename, unsigned line,
|
|
unsigned column, MLIRContext *context) {
|
|
return Base::get(context, StandardAttributes::FileLineColLocation, filename,
|
|
line, column);
|
|
}
|
|
|
|
Location FileLineColLoc::get(StringRef filename, unsigned line, unsigned column,
|
|
MLIRContext *context) {
|
|
return get(Identifier::get(filename.empty() ? "-" : filename, context), line,
|
|
column, context);
|
|
}
|
|
|
|
StringRef FileLineColLoc::getFilename() const { return getImpl()->filename; }
|
|
unsigned FileLineColLoc::getLine() const { return getImpl()->line; }
|
|
unsigned FileLineColLoc::getColumn() const { return getImpl()->column; }
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// FusedLoc
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
Location FusedLoc::get(ArrayRef<Location> locs, Attribute metadata,
|
|
MLIRContext *context) {
|
|
// Unique the set of locations to be fused.
|
|
llvm::SmallSetVector<Location, 4> decomposedLocs;
|
|
for (auto loc : locs) {
|
|
// If the location is a fused location we decompose it if it has no
|
|
// metadata or the metadata is the same as the top level metadata.
|
|
if (auto fusedLoc = loc.dyn_cast<FusedLoc>()) {
|
|
if (fusedLoc.getMetadata() == metadata) {
|
|
// UnknownLoc's have already been removed from FusedLocs so we can
|
|
// simply add all of the internal locations.
|
|
decomposedLocs.insert(fusedLoc.getLocations().begin(),
|
|
fusedLoc.getLocations().end());
|
|
continue;
|
|
}
|
|
}
|
|
// Otherwise, only add known locations to the set.
|
|
if (!loc.isa<UnknownLoc>())
|
|
decomposedLocs.insert(loc);
|
|
}
|
|
locs = decomposedLocs.getArrayRef();
|
|
|
|
// Handle the simple cases of less than two locations.
|
|
if (locs.empty())
|
|
return UnknownLoc::get(context);
|
|
if (locs.size() == 1)
|
|
return locs.front();
|
|
return Base::get(context, StandardAttributes::FusedLocation, locs, metadata);
|
|
}
|
|
|
|
ArrayRef<Location> FusedLoc::getLocations() const {
|
|
return getImpl()->getLocations();
|
|
}
|
|
|
|
Attribute FusedLoc::getMetadata() const { return getImpl()->metadata; }
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// NameLoc
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
Location NameLoc::get(Identifier name, Location child) {
|
|
assert(!child.isa<NameLoc>() &&
|
|
"a NameLoc cannot be used as a child of another NameLoc");
|
|
return Base::get(child->getContext(), StandardAttributes::NameLocation, name,
|
|
child);
|
|
}
|
|
|
|
Location NameLoc::get(Identifier name, MLIRContext *context) {
|
|
return get(name, UnknownLoc::get(context));
|
|
}
|
|
|
|
/// Return the name identifier.
|
|
Identifier NameLoc::getName() const { return getImpl()->name; }
|
|
|
|
/// Return the child location.
|
|
Location NameLoc::getChildLoc() const { return getImpl()->child; }
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// OpaqueLoc
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
Location OpaqueLoc::get(uintptr_t underlyingLocation, ClassID *classID,
|
|
Location fallbackLocation) {
|
|
return Base::get(fallbackLocation->getContext(),
|
|
StandardAttributes::OpaqueLocation, underlyingLocation,
|
|
classID, fallbackLocation);
|
|
}
|
|
|
|
uintptr_t OpaqueLoc::getUnderlyingLocation() const {
|
|
return Base::getImpl()->underlyingLocation;
|
|
}
|
|
|
|
ClassID *OpaqueLoc::getClassId() const { return getImpl()->classId; }
|
|
|
|
Location OpaqueLoc::getFallbackLocation() const {
|
|
return Base::getImpl()->fallbackLocation;
|
|
}
|