diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2011-09-14 03:00:41 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2011-09-14 03:00:41 +0000 |
commit | c4cc40c001e23dbeb6cb9953715177ccb314fbf1 (patch) | |
tree | 373c51220f6643e910fc44ddf0f236806f0dd86d /lib/Target/Mips/MipsTargetMachine.h | |
parent | 484ddf54c9f9765e65c46ae435e0143d68d259e2 (diff) |
One more patch towards JIT support for Mips.
- Add TSFlags for the instruction formats. The idea here is to use
as much encoding as possible from getBinaryCodeForInstr, and having
TSFLags formats for that would make it easier to encode most part
of the instructions (since Mips encodings are pretty straightforward)
- Improve the mips mechanism for compilation callback
- Add Mips specific code for invalidating the instruction cache
- Next patch will address wrong tablegen encoding
Commit msg added by my own but the patch is from Sasa Stankovic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139688 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsTargetMachine.h')
-rw-r--r-- | lib/Target/Mips/MipsTargetMachine.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsTargetMachine.h b/lib/Target/Mips/MipsTargetMachine.h index 36211fa446..bba9111a06 100644 --- a/lib/Target/Mips/MipsTargetMachine.h +++ b/lib/Target/Mips/MipsTargetMachine.h @@ -35,7 +35,6 @@ namespace llvm { MipsTargetLowering TLInfo; MipsSelectionDAGInfo TSInfo; MipsJITInfo JITInfo; - Reloc::Model DefRelocModel; // Reloc model before it's overridden. public: MipsTargetMachine(const Target &T, StringRef TT, |