summaryrefslogtreecommitdiff
path: root/lib/Target/TargetELFWriterInfo.cpp
blob: 255a22c37cbf0cb254cc07bedfb1a960f5790c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//===-- lib/Target/TargetELFWriterInfo.cpp - ELF Writer Info --0-*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the TargetELFWriterInfo class.
//
//===----------------------------------------------------------------------===//

#include "llvm/Function.h"
#include "llvm/Target/TargetELFWriterInfo.h"
#include "llvm/Target/TargetData.h"
#include "llvm/Target/TargetMachine.h"
using namespace llvm;

TargetELFWriterInfo::TargetELFWriterInfo(TargetMachine &tm) : TM(tm) {}

TargetELFWriterInfo::~TargetELFWriterInfo() {}

/// getFunctionAlignment - Returns the alignment for function 'F', targets
/// with different alignment constraints should overload this method
unsigned TargetELFWriterInfo::getFunctionAlignment(const Function *F) const {
  const TargetData *TD = TM.getTargetData();
  unsigned FnAlign = F->getAlignment();
  unsigned TDAlign = TD->getPointerABIAlignment();
  unsigned Align = std::max(FnAlign, TDAlign);
  assert(!(Align & (Align-1)) && "Alignment is not a power of two!");
  return Align;
}