mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
de41aab1f7
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13142 91177308-0d34-0410-b5e6-96231b3b80d8
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
//===-- Transform/Utils/FunctionUtils.h - Function Utils --------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This family of transformations manipulate LLVM functions.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TRANSFORMS_UTILS_FUNCTION_H
|
|
#define LLVM_TRANSFORMS_UTILS_FUNCTION_H
|
|
|
|
#include <vector>
|
|
|
|
namespace llvm {
|
|
class BasicBlock;
|
|
class DominatorSet;
|
|
class Function;
|
|
class Loop;
|
|
|
|
/// ExtractCodeRegion - rip out a sequence of basic blocks into a new function
|
|
///
|
|
Function* ExtractCodeRegion(DominatorSet &DS,
|
|
const std::vector<BasicBlock*> &code,
|
|
bool AggregateArgs = false);
|
|
|
|
/// ExtractLoop - rip out a natural loop into a new function
|
|
///
|
|
Function* ExtractLoop(DominatorSet &DS, Loop *L,
|
|
bool AggregateArgs = false);
|
|
|
|
/// ExtractBasicBlock - rip out a basic block into a new function
|
|
///
|
|
Function* ExtractBasicBlock(BasicBlock *BB, bool AggregateArgs = false);
|
|
}
|
|
|
|
#endif
|