1 //===-- XCoreFrameInfo.h - Frame info for XCore Target -----------*- C++ -*-==//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains XCore frame information that doesn't fit anywhere else
13 //===----------------------------------------------------------------------===//
15 #ifndef XCOREFRAMEINFO_H
16 #define XCOREFRAMEINFO_H
18 #include "llvm/Target/TargetFrameInfo.h"
19 #include "llvm/Target/TargetMachine.h"
22 class XCoreFrameInfo
: public TargetFrameInfo
{
25 XCoreFrameInfo(const TargetMachine
&tm
);
27 //! Stack slot size (4 bytes)
28 static int stackSlotSize() {
34 #endif // XCOREFRAMEINFO_H