mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Move TargetData to DataLayout.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165402 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -15,7 +15,7 @@
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/Support/CallSite.h"
|
||||
#include "llvm/IntrinsicInst.h"
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/DataLayout.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@ -54,7 +54,7 @@ bool llvm::callIsSmall(ImmutableCallSite CS) {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool llvm::isInstructionFree(const Instruction *I, const TargetData *TD) {
|
||||
bool llvm::isInstructionFree(const Instruction *I, const DataLayout *TD) {
|
||||
if (isa<PHINode>(I))
|
||||
return true;
|
||||
|
||||
@ -119,7 +119,7 @@ bool llvm::isInstructionFree(const Instruction *I, const TargetData *TD) {
|
||||
/// analyzeBasicBlock - Fill in the current structure with information gleaned
|
||||
/// from the specified block.
|
||||
void CodeMetrics::analyzeBasicBlock(const BasicBlock *BB,
|
||||
const TargetData *TD) {
|
||||
const DataLayout *TD) {
|
||||
++NumBlocks;
|
||||
unsigned NumInstsBeforeThisBB = NumInsts;
|
||||
for (BasicBlock::const_iterator II = BB->begin(), E = BB->end();
|
||||
@ -189,7 +189,7 @@ void CodeMetrics::analyzeBasicBlock(const BasicBlock *BB,
|
||||
NumBBInsts[BB] = NumInsts - NumInstsBeforeThisBB;
|
||||
}
|
||||
|
||||
void CodeMetrics::analyzeFunction(Function *F, const TargetData *TD) {
|
||||
void CodeMetrics::analyzeFunction(Function *F, const DataLayout *TD) {
|
||||
// If this function contains a call that "returns twice" (e.g., setjmp or
|
||||
// _setjmp) and it isn't marked with "returns twice" itself, never inline it.
|
||||
// This is a hack because we depend on the user marking their local variables
|
||||
|
Reference in New Issue
Block a user