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"
|
2018-12-29 08:05:35 +08:00
|
|
|
#include "mlir/IR/Instructions.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.
|
2018-12-28 06:35:10 +08:00
|
|
|
OperationInst *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-12-29 08:05:35 +08:00
|
|
|
case Value::Kind::ForInst:
|
|
|
|
return cast<ForInst>(this)->getFunction();
|
2018-09-06 08:45:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2018-10-27 14:48:04 +08:00
|
|
|
// IROperandOwner implementation.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-27 14:48:04 +08:00
|
|
|
/// Return the context this operation is associated with.
|
|
|
|
MLIRContext *IROperandOwner::getContext() const {
|
|
|
|
switch (getKind()) {
|
2018-12-28 13:21:41 +08:00
|
|
|
case Kind::OperationInst:
|
|
|
|
return cast<OperationInst>(this)->getContext();
|
2018-12-29 08:05:35 +08:00
|
|
|
case Kind::ForInst:
|
|
|
|
return cast<ForInst>(this)->getContext();
|
|
|
|
case Kind::IfInst:
|
|
|
|
return cast<IfInst>(this)->getContext();
|
2018-10-27 14:48:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|