2020-03-10 12:20:24 -07:00
|
|
|
//===- CallInterfaces.cpp - ControlFlow Interfaces ------------------------===//
|
|
|
|
|
//
|
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
#include "mlir/Interfaces/CallInterfaces.h"
|
|
|
|
|
|
|
|
|
|
using namespace mlir;
|
|
|
|
|
|
2020-10-16 11:57:10 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
// CallOpInterface
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
Operation *
|
2024-09-10 15:33:13 +02:00
|
|
|
call_interface_impl::resolveCallable(CallOpInterface call,
|
|
|
|
|
SymbolTableCollection *symbolTable) {
|
|
|
|
|
CallInterfaceCallable callable = call.getCallableForCallee();
|
2022-10-13 20:33:24 -05:00
|
|
|
if (auto symbolVal = dyn_cast<Value>(callable))
|
2020-10-16 11:57:10 -07:00
|
|
|
return symbolVal.getDefiningOp();
|
|
|
|
|
|
|
|
|
|
// If the callable isn't a value, lookup the symbol reference.
|
|
|
|
|
auto symbolRef = callable.get<SymbolRefAttr>();
|
|
|
|
|
if (symbolTable)
|
2024-09-10 15:33:13 +02:00
|
|
|
return symbolTable->lookupNearestSymbolFrom(call.getOperation(), symbolRef);
|
|
|
|
|
return SymbolTable::lookupNearestSymbolFrom(call.getOperation(), symbolRef);
|
2020-10-16 11:57:10 -07:00
|
|
|
}
|
|
|
|
|
|
2020-03-10 12:20:24 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
// CallInterfaces
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
#include "mlir/Interfaces/CallInterfaces.cpp.inc"
|