blob: d09a7989edeab2d24a1c4128560e65cdf30b620c [file] [log] [blame]
//===-- SROA.h - Scalar Replacement Of Aggregates ---------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef MLIR_TRANSFORMS_SROA_H
#define MLIR_TRANSFORMS_SROA_H
#include "mlir/Interfaces/MemorySlotInterfaces.h"
#include "mlir/Support/LogicalResult.h"
#include "llvm/ADT/Statistic.h"
namespace mlir {
/// Statistics collected while applying SROA.
struct SROAStatistics {
/// Total amount of memory slots destructured.
llvm::Statistic *destructuredAmount = nullptr;
/// Total amount of memory slots in which the destructured size was smaller
/// than the total size after eliminating unused fields.
llvm::Statistic *slotsWithMemoryBenefit = nullptr;
/// Maximal number of sub-elements a successfully destructured slot initially
/// had.
llvm::Statistic *maxSubelementAmount = nullptr;
};
/// Attempts to destructure the slots of destructurable allocators. Returns
/// failure if no slot was destructured.
LogicalResult tryToDestructureMemorySlots(
ArrayRef<DestructurableAllocationOpInterface> allocators,
RewriterBase &rewriter, const DataLayout &dataLayout,
SROAStatistics statistics = {});
} // namespace mlir
#endif // MLIR_TRANSFORMS_SROA_H