summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Sparc/SparcRelocations.h
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2014-09-23 18:08:47 +0000
committerLang Hames <lhames@gmail.com>2014-09-23 18:08:47 +0000
commitd5f496d57ca5e50d0d57783ef153d2d86ab4ad02 (patch)
tree253c4b0e30d4dcae399282e58b95308d220713a7 /llvm/lib/Target/Sparc/SparcRelocations.h
parentc4725da382b2421926dfe0228845758671c6935b (diff)
downloadbcm5719-llvm-d5f496d57ca5e50d0d57783ef153d2d86ab4ad02.tar.gz
bcm5719-llvm-d5f496d57ca5e50d0d57783ef153d2d86ab4ad02.zip
[MCJIT] Nuke MachineRelocation and MachineCodeEmitter. Now that the old JIT is
gone they're no longer needed. llvm-svn: 218320
Diffstat (limited to 'llvm/lib/Target/Sparc/SparcRelocations.h')
-rw-r--r--llvm/lib/Target/Sparc/SparcRelocations.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/llvm/lib/Target/Sparc/SparcRelocations.h b/llvm/lib/Target/Sparc/SparcRelocations.h
deleted file mode 100644
index 4a5b9b94ce4..00000000000
--- a/llvm/lib/Target/Sparc/SparcRelocations.h
+++ /dev/null
@@ -1,56 +0,0 @@
-//===-- SparcRelocations.h - Sparc Code Relocations -------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file defines the Sparc target-specific relocation types
-// (for relocation-model=static).
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_LIB_TARGET_SPARC_SPARCRELOCATIONS_H
-#define LLVM_LIB_TARGET_SPARC_SPARCRELOCATIONS_H
-
-#include "llvm/CodeGen/MachineRelocation.h"
-
-namespace llvm {
- namespace SP {
- enum RelocationType {
- // reloc_sparc_hi - upper 22 bits
- reloc_sparc_hi = 1,
-
- // reloc_sparc_lo - lower 10 bits
- reloc_sparc_lo = 2,
-
- // reloc_sparc_pc30 - pc rel. 30 bits for call
- reloc_sparc_pc30 = 3,
-
- // reloc_sparc_pc22 - pc rel. 22 bits for branch
- reloc_sparc_pc22 = 4,
-
- // reloc_sparc_pc22 - pc rel. 19 bits for branch with icc/xcc
- reloc_sparc_pc19 = 5,
-
- // reloc_sparc_h44 - 43-22 bits
- reloc_sparc_h44 = 6,
-
- // reloc_sparc_m44 - 21-12 bits
- reloc_sparc_m44 = 7,
-
- // reloc_sparc_l44 - lower 12 bits
- reloc_sparc_l44 = 8,
-
- // reloc_sparc_hh - 63-42 bits
- reloc_sparc_hh = 9,
-
- // reloc_sparc_hm - 41-32 bits
- reloc_sparc_hm = 10
- };
- }
-}
-
-#endif
OpenPOWER on IntegriCloud