~ubuntu-branches/ubuntu/quantal/llvm-3.1/quantal

« back to all changes in this revision

Viewing changes to lib/CodeGen/TargetFrameLoweringImpl.cpp

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-03-29 19:09:51 UTC
  • Revision ID: package-import@ubuntu.com-20120329190951-aq83ivog4cg8bxun
Tags: upstream-3.1~svn153643
ImportĀ upstreamĀ versionĀ 3.1~svn153643

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//===----- TargetFrameLoweringImpl.cpp - Implement target frame interface --==//
 
2
//
 
3
//                     The LLVM Compiler Infrastructure
 
4
//
 
5
// This file is distributed under the University of Illinois Open Source
 
6
// License. See LICENSE.TXT for details.
 
7
//
 
8
//===----------------------------------------------------------------------===//
 
9
//
 
10
// Implements the layout of a stack frame on the target machine.
 
11
//
 
12
//===----------------------------------------------------------------------===//
 
13
 
 
14
#include "llvm/CodeGen/MachineFrameInfo.h"
 
15
#include "llvm/CodeGen/MachineFunction.h"
 
16
#include "llvm/Target/TargetFrameLowering.h"
 
17
#include "llvm/Target/TargetMachine.h"
 
18
#include "llvm/Target/TargetRegisterInfo.h"
 
19
 
 
20
#include <cstdlib>
 
21
using namespace llvm;
 
22
 
 
23
TargetFrameLowering::~TargetFrameLowering() {
 
24
}
 
25
 
 
26
/// getFrameIndexOffset - Returns the displacement from the frame register to
 
27
/// the stack frame of the specified index. This is the default implementation
 
28
/// which is overridden for some targets.
 
29
int TargetFrameLowering::getFrameIndexOffset(const MachineFunction &MF,
 
30
                                         int FI) const {
 
31
  const MachineFrameInfo *MFI = MF.getFrameInfo();
 
32
  return MFI->getObjectOffset(FI) + MFI->getStackSize() -
 
33
    getOffsetOfLocalArea() + MFI->getOffsetAdjustment();
 
34
}
 
35
 
 
36
int TargetFrameLowering::getFrameIndexReference(const MachineFunction &MF,
 
37
                                             int FI, unsigned &FrameReg) const {
 
38
  const TargetRegisterInfo *RI = MF.getTarget().getRegisterInfo();
 
39
 
 
40
  // By default, assume all frame indices are referenced via whatever
 
41
  // getFrameRegister() says. The target can override this if it's doing
 
42
  // something different.
 
43
  FrameReg = RI->getFrameRegister(MF);
 
44
  return getFrameIndexOffset(MF, FI);
 
45
}