Handle ARM machine constantpool entries.
[oota-llvm.git] / lib / Target / ARM / ARMJITInfo.h
1 //===- ARMJITInfo.h - ARM implementation of the JIT interface  --*- C++ -*-===//
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 // This file contains the declaration of the ARMJITInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef ARMJITINFO_H
15 #define ARMJITINFO_H
16
17 #include "llvm/Target/TargetJITInfo.h"
18 #include "llvm/CodeGen/MachineConstantPool.h"
19 #include "llvm/ADT/DenseMap.h"
20 #include "llvm/ADT/SmallVector.h"
21
22 namespace llvm {
23   class ARMTargetMachine;
24
25   class ARMJITInfo : public TargetJITInfo {
26     ARMTargetMachine &TM;
27
28     // MCPEs - List of the constant pool entries for the current machine
29     // function that's being processed.
30     const std::vector<MachineConstantPoolEntry> *MCPEs;
31
32     // ConstPoolId2AddrMap - A map from constant pool ids to the corresponding
33     // CONSTPOOL_ENTRY addresses.
34     SmallVector<intptr_t, 32> ConstPoolId2AddrMap;
35
36     // PCLabelMap - A map from PC labels to addresses.
37     DenseMap<unsigned, intptr_t> PCLabelMap;
38
39   public:
40     explicit ARMJITInfo(ARMTargetMachine &tm) : TM(tm) { useGOT = false; }
41
42     /// replaceMachineCodeForFunction - Make it so that calling the function
43     /// whose machine code is at OLD turns into a call to NEW, perhaps by
44     /// overwriting OLD with a branch to NEW.  This is used for self-modifying
45     /// code.
46     ///
47     virtual void replaceMachineCodeForFunction(void *Old, void *New);
48
49     /// emitFunctionStub - Use the specified MachineCodeEmitter object to emit a
50     /// small native function that simply calls the function at the specified
51     /// address.
52     virtual void *emitFunctionStub(const Function* F, void *Fn,
53                                    MachineCodeEmitter &MCE);
54
55     /// getLazyResolverFunction - Expose the lazy resolver to the JIT.
56     virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
57
58     /// relocate - Before the JIT can run a block of code that has been emitted,
59     /// it must rewrite the code to contain the actual addresses of any
60     /// referenced global symbols.
61     virtual void relocate(void *Function, MachineRelocation *MR,
62                           unsigned NumRelocs, unsigned char* GOTBase);
63
64     /// hasCustomConstantPool - Allows a target to specify that constant
65     /// pool address resolution is handled by the target.
66     virtual bool hasCustomConstantPool() const { return true; }
67
68     /// Initialize - Initialize internal stage. Get the list of constant pool
69     /// Resize constant pool ids to CONSTPOOL_ENTRY addresses map.
70     void Initialize(const std::vector<MachineConstantPoolEntry> *mcpes) {
71       MCPEs = mcpes;
72       ConstPoolId2AddrMap.resize(MCPEs->size());
73     }
74
75     /// getConstantPoolEntryAddr - The ARM target puts all constant
76     /// pool entries into constant islands. Resolve the constant pool index
77     /// into the address where the constant is stored.
78     intptr_t getConstantPoolEntryAddr(unsigned CPI) const {
79       assert(CPI < ConstPoolId2AddrMap.size());
80       return ConstPoolId2AddrMap[CPI];
81     }
82
83     /// addConstantPoolEntryAddr - Map a Constant Pool Index (CPI) to the address
84     /// where its associated value is stored. When relocations are processed,
85     /// this value will be used to resolve references to the constant.
86     void addConstantPoolEntryAddr(unsigned CPI, intptr_t Addr) {
87       assert(CPI < ConstPoolId2AddrMap.size());
88       ConstPoolId2AddrMap[CPI] = Addr;
89     }
90
91     /// getPCLabelAddr - Retrieve the address of the PC label of the specified id.
92     intptr_t getPCLabelAddr(unsigned Id) const {
93       DenseMap<unsigned, intptr_t>::const_iterator I = PCLabelMap.find(Id);
94       assert(I != PCLabelMap.end());
95       return I->second;
96     }
97
98     /// addPCLabelAddr - Remember the address of the specified PC label.
99     void addPCLabelAddr(unsigned Id, intptr_t Addr) {
100       PCLabelMap.insert(std::make_pair(Id, Addr));
101     }
102
103   private:
104     /// resolveRelocationAddr - Resolve the resulting address of the relocation
105     /// if it's not already solved. Constantpool entries must be resolved by
106     /// ARM target.
107     intptr_t resolveRelocationAddr(MachineRelocation *MR) const;
108   };
109 }
110
111 #endif