2018-12-27 15:06:22 -08:00
|
|
|
//===- Value.cpp - MLIR Value Classes -------------------------------------===//
|
2018-08-01 10:43:18 -07:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
// =============================================================================
|
|
|
|
|
2018-12-27 15:06:22 -08:00
|
|
|
#include "mlir/IR/Value.h"
|
2019-04-24 09:24:57 -07:00
|
|
|
#include "mlir/IR/Block.h"
|
2019-03-26 14:45:38 -07:00
|
|
|
#include "mlir/IR/Operation.h"
|
2018-08-01 10:43:18 -07:00
|
|
|
using namespace mlir;
|
|
|
|
|
2019-03-26 17:05:09 -07:00
|
|
|
/// If this value is the result of an Operation, return the operation that
|
|
|
|
/// defines it.
|
|
|
|
Operation *Value::getDefiningOp() {
|
2019-12-22 21:59:55 -08:00
|
|
|
if (auto *result = dyn_cast<OpResult>())
|
2018-08-01 10:43:18 -07:00
|
|
|
return result->getOwner();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2019-04-01 10:42:34 -07:00
|
|
|
Location Value::getLoc() {
|
2019-07-08 11:20:26 -07:00
|
|
|
if (auto *op = getDefiningOp())
|
2019-04-01 10:42:34 -07:00
|
|
|
return op->getLoc();
|
|
|
|
return UnknownLoc::get(getContext());
|
|
|
|
}
|
|
|
|
|
2019-04-24 09:24:57 -07:00
|
|
|
/// Return the Region in which this Value is defined.
|
2019-08-09 20:07:25 -07:00
|
|
|
Region *Value::getParentRegion() {
|
2019-10-14 16:21:17 -07:00
|
|
|
if (auto *op = getDefiningOp())
|
|
|
|
return op->getParentRegion();
|
2019-12-22 21:59:55 -08:00
|
|
|
return cast<BlockArgument>()->getOwner()->getParent();
|
2019-04-24 09:24:57 -07:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:45:19 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
2019-02-02 21:08:55 -08:00
|
|
|
// IRObjectWithUseList implementation.
|
2018-10-26 23:48:04 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2018-12-27 11:07:34 -08:00
|
|
|
/// Replace all uses of 'this' value with the new value, updating anything in
|
|
|
|
/// the IR that uses 'this' to use the other value instead. When this returns
|
|
|
|
/// there are zero uses of 'this'.
|
|
|
|
void IRObjectWithUseList::replaceAllUsesWith(IRObjectWithUseList *newValue) {
|
|
|
|
assert(this != newValue && "cannot RAUW a value with itself");
|
|
|
|
while (!use_empty()) {
|
|
|
|
use_begin()->set(newValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-07 08:16:49 -08:00
|
|
|
/// Drop all uses of this object from their respective owners.
|
|
|
|
void IRObjectWithUseList::dropAllUses() {
|
|
|
|
while (!use_empty()) {
|
|
|
|
use_begin()->drop();
|
|
|
|
}
|
|
|
|
}
|