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"
|
2018-12-28 03:07:34 +08:00
|
|
|
#include "mlir/IR/Function.h"
|
2019-02-04 01:49:39 +08:00
|
|
|
#include "mlir/IR/Instruction.h"
|
2018-08-02 01:43:18 +08:00
|
|
|
using namespace mlir;
|
|
|
|
|
2018-11-16 10:31:15 +08:00
|
|
|
/// If this value is the result of an Instruction, return the instruction
|
2018-08-02 01:43:18 +08:00
|
|
|
/// that defines it.
|
2019-02-04 02:03:46 +08:00
|
|
|
Instruction *Value::getDefiningInst() {
|
2018-08-02 01:43:18 +08:00
|
|
|
if (auto *result = dyn_cast<InstResult>(this))
|
|
|
|
return result->getOwner();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-12-28 13:21:41 +08:00
|
|
|
/// Return the function that this Value is defined in.
|
2018-12-28 06:35:10 +08:00
|
|
|
Function *Value::getFunction() {
|
2018-09-06 08:45:19 +08:00
|
|
|
switch (getKind()) {
|
2018-12-28 06:35:10 +08:00
|
|
|
case Value::Kind::BlockArgument:
|
2018-12-25 10:01:01 +08:00
|
|
|
return cast<BlockArgument>(this)->getFunction();
|
2018-12-28 20:14:52 +08:00
|
|
|
case Value::Kind::InstResult:
|
2018-12-28 13:21:41 +08:00
|
|
|
return getDefiningInst()->getFunction();
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-25 10:01:01 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// BlockArgument implementation.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// Return the function that this argument is defined in.
|
2018-12-29 00:48:09 +08:00
|
|
|
Function *BlockArgument::getFunction() {
|
2018-12-25 10:01:01 +08:00
|
|
|
if (auto *owner = getOwner())
|
2018-12-27 13:13:45 +08:00
|
|
|
return owner->getFunction();
|
2018-12-25 10:01:01 +08:00
|
|
|
return nullptr;
|
|
|
|
}
|
2019-01-27 04:40:12 +08:00
|
|
|
|
|
|
|
/// Returns if the current argument is a function argument.
|
|
|
|
bool BlockArgument::isFunctionArgument() const {
|
|
|
|
auto *containingFn = getFunction();
|
|
|
|
return containingFn && &containingFn->front() == getOwner();
|
|
|
|
}
|