mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
2501ed842c
This patch optimizes two memory intrinsic operations: memset and memcpy based on the profiled size of the operation. The high level transformation is like: mem_op(..., size) ==> switch (size) { case s1: mem_op(..., s1); goto merge_bb; case s2: mem_op(..., s2); goto merge_bb; ... default: mem_op(..., size); goto merge_bb; } merge_bb: Differential Revision: http://reviews.llvm.org/D28966 llvm-svn: 299446
62 lines
2.0 KiB
C++
62 lines
2.0 KiB
C++
//===- Transforms/PGOInstrumentation.h - PGO gen/use passes ---*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
/// \file
|
|
/// This file provides the interface for IR based instrumentation passes (
|
|
/// (profile-gen, and profile-use).
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TRANSFORMS_PGOINSTRUMENTATION_H
|
|
#define LLVM_TRANSFORMS_PGOINSTRUMENTATION_H
|
|
|
|
#include "llvm/IR/PassManager.h"
|
|
#include "llvm/Transforms/Instrumentation.h"
|
|
|
|
namespace llvm {
|
|
|
|
/// The instrumentation (profile-instr-gen) pass for IR based PGO.
|
|
class PGOInstrumentationGen : public PassInfoMixin<PGOInstrumentationGen> {
|
|
public:
|
|
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM);
|
|
};
|
|
|
|
/// The profile annotation (profile-instr-use) pass for IR based PGO.
|
|
class PGOInstrumentationUse : public PassInfoMixin<PGOInstrumentationUse> {
|
|
public:
|
|
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM);
|
|
PGOInstrumentationUse(std::string Filename = "");
|
|
|
|
private:
|
|
std::string ProfileFileName;
|
|
};
|
|
|
|
/// The indirect function call promotion pass.
|
|
class PGOIndirectCallPromotion : public PassInfoMixin<PGOIndirectCallPromotion> {
|
|
public:
|
|
PGOIndirectCallPromotion(bool IsInLTO = false, bool SamplePGO = false)
|
|
: InLTO(IsInLTO), SamplePGO(SamplePGO) {}
|
|
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM);
|
|
|
|
private:
|
|
bool InLTO;
|
|
bool SamplePGO;
|
|
};
|
|
|
|
/// The profile size based optimization pass for memory intrinsics.
|
|
class PGOMemOPSizeOpt : public PassInfoMixin<PGOMemOPSizeOpt> {
|
|
public:
|
|
PGOMemOPSizeOpt() {}
|
|
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
|
|
};
|
|
|
|
void setProfMetadata(Module *M, Instruction *TI, ArrayRef<uint64_t> EdgeCounts,
|
|
uint64_t MaxCount);
|
|
|
|
} // End llvm namespace
|
|
#endif
|