Add support for sdiv by 2^k and -2^k. Producing code like:
[oota-llvm.git] / lib / Target / PowerPC / PPCSubtarget.h
1 //=====-- PowerPCSubtarget.h - Define Subtarget for the PPC ---*- C++ -*--====//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Nate Begeman and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the X86 specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef POWERPCSUBTARGET_H
15 #define POWERPCSUBTARGET_H
16
17 #include "llvm/Target/TargetSubtarget.h"
18
19 namespace llvm {
20 class Module;
21
22 class PPCSubtarget : public TargetSubtarget {
23 protected:
24   /// stackAlignment - The minimum alignment known to hold of the stack frame on
25   /// entry to the function and which must be maintained by every function.
26   unsigned StackAlignment;
27
28   /// Used by the ISel to turn in optimizations for POWER4-derived architectures
29   bool IsGigaProcessor;
30   bool IsAIX;
31   bool IsDarwin;
32 public:
33   /// This constructor initializes the data members to match that
34   /// of the specified module.
35   ///
36   PPCSubtarget(const Module &M);
37
38   /// getStackAlignment - Returns the minimum alignment known to hold of the
39   /// stack frame on entry to the function and which must be maintained by every
40   /// function for this subtarget.
41   unsigned getStackAlignment() const { return StackAlignment; }
42
43   bool isAIX() const { return IsAIX; }
44   bool isDarwin() const { return IsDarwin; }
45   
46   bool isGigaProcessor() const { return IsGigaProcessor; }
47 };
48 } // End llvm namespace
49
50 #endif