2012-02-24 03:15:21 +01:00
|
|
|
//===-- ARMFixupKinds.h - ARM Specific Fixup Entries ------------*- C++ -*-===//
|
2010-11-04 02:12:30 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_ARM_ARMFIXUPKINDS_H
|
|
|
|
#define LLVM_ARM_ARMFIXUPKINDS_H
|
|
|
|
|
|
|
|
#include "llvm/MC/MCFixup.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace ARM {
|
|
|
|
enum Fixups {
|
2010-12-02 01:28:45 +01:00
|
|
|
// fixup_arm_ldst_pcrel_12 - 12-bit PC relative relocation for symbol
|
|
|
|
// addresses
|
|
|
|
fixup_arm_ldst_pcrel_12 = FirstTargetFixupKind,
|
2010-12-14 22:28:29 +01:00
|
|
|
|
2010-12-09 02:51:07 +01:00
|
|
|
// fixup_t2_ldst_pcrel_12 - Equivalent to fixup_arm_ldst_pcrel_12, with
|
|
|
|
// the 16-bit halfwords reordered.
|
|
|
|
fixup_t2_ldst_pcrel_12,
|
2010-12-14 22:28:29 +01:00
|
|
|
|
2011-12-20 00:06:24 +01:00
|
|
|
// fixup_arm_pcrel_10_unscaled - 10-bit PC relative relocation for symbol
|
|
|
|
// addresses used in LDRD/LDRH/LDRB/etc. instructions. All bits are encoded.
|
|
|
|
fixup_arm_pcrel_10_unscaled,
|
2010-12-01 20:18:46 +01:00
|
|
|
// fixup_arm_pcrel_10 - 10-bit PC relative relocation for symbol addresses
|
2010-12-08 01:18:36 +01:00
|
|
|
// used in VFP instructions where the lower 2 bits are not encoded
|
2010-12-01 20:18:46 +01:00
|
|
|
// (so it's encoded as an 8-bit immediate).
|
|
|
|
fixup_arm_pcrel_10,
|
2010-12-08 01:18:36 +01:00
|
|
|
// fixup_t2_pcrel_10 - Equivalent to fixup_arm_pcrel_10, accounting for
|
2010-12-09 01:27:41 +01:00
|
|
|
// the short-swapped encoding of Thumb2 instructions.
|
2010-12-08 01:18:36 +01:00
|
|
|
fixup_t2_pcrel_10,
|
2010-12-14 23:28:03 +01:00
|
|
|
// fixup_thumb_adr_pcrel_10 - 10-bit PC relative relocation for symbol
|
|
|
|
// addresses where the lower 2 bits are not encoded (so it's encoded as an
|
|
|
|
// 8-bit immediate).
|
|
|
|
fixup_thumb_adr_pcrel_10,
|
2010-12-02 01:28:45 +01:00
|
|
|
// fixup_arm_adr_pcrel_12 - 12-bit PC relative relocation for the ADR
|
|
|
|
// instruction.
|
|
|
|
fixup_arm_adr_pcrel_12,
|
2010-12-14 01:36:49 +01:00
|
|
|
// fixup_t2_adr_pcrel_12 - 12-bit PC relative relocation for the ADR
|
|
|
|
// instruction.
|
|
|
|
fixup_t2_adr_pcrel_12,
|
2011-02-04 20:47:15 +01:00
|
|
|
// fixup_arm_condbranch - 24-bit PC relative relocation for conditional branch
|
|
|
|
// instructions.
|
|
|
|
fixup_arm_condbranch,
|
|
|
|
// fixup_arm_uncondbranch - 24-bit PC relative relocation for
|
|
|
|
// branch instructions. (unconditional)
|
|
|
|
fixup_arm_uncondbranch,
|
2010-12-14 22:28:29 +01:00
|
|
|
// fixup_t2_condbranch - 20-bit PC relative relocation for Thumb2 direct
|
2010-12-13 20:31:11 +01:00
|
|
|
// uconditional branch instructions.
|
|
|
|
fixup_t2_condbranch,
|
2010-12-14 22:28:29 +01:00
|
|
|
// fixup_t2_uncondbranch - 20-bit PC relative relocation for Thumb2 direct
|
2010-12-13 20:31:11 +01:00
|
|
|
// branch unconditional branch instructions.
|
|
|
|
fixup_t2_uncondbranch,
|
2010-12-09 00:01:43 +01:00
|
|
|
|
2010-12-10 19:21:33 +01:00
|
|
|
// fixup_arm_thumb_br - 12-bit fixup for Thumb B instructions.
|
|
|
|
fixup_arm_thumb_br,
|
|
|
|
|
2012-03-30 11:15:32 +02:00
|
|
|
// The following fixups handle the ARM BL instructions. These can be
|
|
|
|
// conditionalised; however, the ARM ELF ABI requires a different relocation
|
|
|
|
// in that case: R_ARM_JUMP24 instead of R_ARM_CALL. The difference is that
|
|
|
|
// R_ARM_CALL is allowed to change the instruction to a BLX inline, which has
|
|
|
|
// no conditional version; R_ARM_JUMP24 would have to insert a veneer.
|
|
|
|
//
|
|
|
|
// MachO does not draw a distinction between the two cases, so it will treat
|
|
|
|
// fixup_arm_uncondbl and fixup_arm_condbl as identical fixups.
|
|
|
|
|
|
|
|
// fixup_arm_uncondbl - Fixup for unconditional ARM BL instructions.
|
|
|
|
fixup_arm_uncondbl,
|
|
|
|
|
|
|
|
// fixup_arm_condbl - Fixup for ARM BL instructions with nontrivial
|
|
|
|
// conditionalisation.
|
|
|
|
fixup_arm_condbl,
|
2012-02-27 22:36:23 +01:00
|
|
|
|
|
|
|
// fixup_arm_blx - Fixup for ARM BLX instructions.
|
|
|
|
fixup_arm_blx,
|
|
|
|
|
2011-05-27 05:46:51 +02:00
|
|
|
// fixup_arm_thumb_bl - Fixup for Thumb BL instructions.
|
2010-12-07 00:57:07 +01:00
|
|
|
fixup_arm_thumb_bl,
|
2010-11-11 19:04:49 +01:00
|
|
|
|
2010-12-09 01:39:08 +01:00
|
|
|
// fixup_arm_thumb_blx - Fixup for Thumb BLX instructions.
|
|
|
|
fixup_arm_thumb_blx,
|
|
|
|
|
2010-12-09 20:50:12 +01:00
|
|
|
// fixup_arm_thumb_cb - Fixup for Thumb branch instructions.
|
|
|
|
fixup_arm_thumb_cb,
|
2010-12-09 00:01:43 +01:00
|
|
|
|
2010-12-08 02:57:09 +01:00
|
|
|
// fixup_arm_thumb_cp - Fixup for Thumb load/store from constant pool instrs.
|
|
|
|
fixup_arm_thumb_cp,
|
|
|
|
|
2010-12-14 23:26:49 +01:00
|
|
|
// fixup_arm_thumb_bcc - Fixup for Thumb conditional branching instructions.
|
2010-12-10 18:13:40 +01:00
|
|
|
fixup_arm_thumb_bcc,
|
|
|
|
|
2010-11-19 00:37:15 +01:00
|
|
|
// The next two are for the movt/movw pair
|
|
|
|
// the 16bit imm field are split into imm{15-12} and imm{11-0}
|
|
|
|
fixup_arm_movt_hi16, // :upper16:
|
|
|
|
fixup_arm_movw_lo16, // :lower16:
|
2011-01-14 03:38:49 +01:00
|
|
|
fixup_t2_movt_hi16, // :upper16:
|
|
|
|
fixup_t2_movw_lo16, // :lower16:
|
2010-11-19 00:37:15 +01:00
|
|
|
|
2011-01-12 01:19:25 +01:00
|
|
|
// It is possible to create an "immediate" that happens to be pcrel.
|
2011-01-13 00:25:02 +01:00
|
|
|
// movw r0, :lower16:Foo-(Bar+8) and movt r0, :upper16:Foo-(Bar+8)
|
|
|
|
// result in different reloc tags than the above two.
|
2011-01-12 01:19:25 +01:00
|
|
|
// Needed to support ELF::R_ARM_MOVT_PREL and ELF::R_ARM_MOVW_PREL_NC
|
|
|
|
fixup_arm_movt_hi16_pcrel, // :upper16:
|
|
|
|
fixup_arm_movw_lo16_pcrel, // :lower16:
|
2011-01-14 03:38:49 +01:00
|
|
|
fixup_t2_movt_hi16_pcrel, // :upper16:
|
|
|
|
fixup_t2_movw_lo16_pcrel, // :lower16:
|
2011-01-12 01:19:25 +01:00
|
|
|
|
2010-11-11 19:04:49 +01:00
|
|
|
// Marker
|
|
|
|
LastTargetFixupKind,
|
|
|
|
NumTargetFixupKinds = LastTargetFixupKind - FirstTargetFixupKind
|
2010-11-04 02:12:30 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|