2007-01-27 02:54:30 +00:00
|
|
|
//===-- X86ELFWriterInfo.cpp - ELF Writer Info for the X86 backend --------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-01-27 02:54:30 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements ELF writer information for the X86 backend.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "X86ELFWriterInfo.h"
|
2009-06-11 19:16:03 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
2007-01-27 02:54:30 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-06-11 19:16:03 +00:00
|
|
|
X86ELFWriterInfo::X86ELFWriterInfo(TargetMachine &TM)
|
|
|
|
: TargetELFWriterInfo(TM) {
|
|
|
|
bool is64Bit = TM.getTargetData()->getPointerSizeInBits() == 64;
|
|
|
|
EMachine = is64Bit ? EM_X86_64 : EM_386;
|
|
|
|
}
|
|
|
|
|
2007-01-27 11:40:32 +00:00
|
|
|
X86ELFWriterInfo::~X86ELFWriterInfo() {}
|
2009-06-11 19:16:03 +00:00
|
|
|
|
|
|
|
unsigned X86ELFWriterInfo::getFunctionAlignment(const Function *F) const {
|
|
|
|
unsigned FnAlign = 4;
|
|
|
|
|
|
|
|
if (F->hasFnAttr(Attribute::OptimizeForSize))
|
|
|
|
FnAlign = 1;
|
|
|
|
|
|
|
|
if (F->getAlignment())
|
|
|
|
FnAlign = Log2_32(F->getAlignment());
|
|
|
|
|
|
|
|
return (1 << FnAlign);
|
|
|
|
}
|