2018-12-28 07:06:22 +08:00
|
|
|
//===- Value.cpp - MLIR Value Classes -------------------------------------===//
|
2018-08-02 01:43:18 +08: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-28 07:06:22 +08:00
|
|
|
#include "mlir/IR/Value.h"
|
2019-04-25 00:24:57 +08:00
|
|
|
#include "mlir/IR/Block.h"
|
2019-03-27 05:45:38 +08:00
|
|
|
#include "mlir/IR/Operation.h"
|
2018-08-02 01:43:18 +08:00
|
|
|
using namespace mlir;
|
|
|
|
|
2019-03-27 08:05:09 +08:00
|
|
|
/// If this value is the result of an Operation, return the operation that
|
|
|
|
/// defines it.
|
|
|
|
Operation *Value::getDefiningOp() {
|
|
|
|
if (auto *result = dyn_cast<OpResult>(this))
|
2018-08-02 01:43:18 +08:00
|
|
|
return result->getOwner();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2019-04-02 01:42:34 +08:00
|
|
|
Location Value::getLoc() {
|
2019-07-09 02:20:26 +08:00
|
|
|
if (auto *op = getDefiningOp())
|
2019-04-02 01:42:34 +08:00
|
|
|
return op->getLoc();
|
|
|
|
return UnknownLoc::get(getContext());
|
|
|
|
}
|
|
|
|
|
2019-04-25 00:24:57 +08:00
|
|
|
/// Return the Region in which this Value is defined.
|
|
|
|
Region *Value::getContainingRegion() {
|
|
|
|
switch (getKind()) {
|
|
|
|
case Value::Kind::BlockArgument:
|
|
|
|
return cast<BlockArgument>(this)->getOwner()->getParent();
|
|
|
|
case Value::Kind::OpResult:
|
|
|
|
return getDefiningOp()->getContainingRegion();
|
|
|
|
}
|
2019-05-11 05:06:10 +08:00
|
|
|
llvm_unreachable("Unknown Value Kind");
|
2019-04-25 00:24:57 +08:00
|
|
|
}
|
|
|
|
|
2018-09-06 08:45:19 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2019-02-03 13:08:55 +08:00
|
|
|
// IRObjectWithUseList implementation.
|
2018-10-27 14:48:04 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2018-12-28 03: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-08 00:16:49 +08:00
|
|
|
/// Drop all uses of this object from their respective owners.
|
|
|
|
void IRObjectWithUseList::dropAllUses() {
|
|
|
|
while (!use_empty()) {
|
|
|
|
use_begin()->drop();
|
|
|
|
}
|
|
|
|
}
|