llvm-6502/lib/Target/SparcV9/SparcV9Relocations.h
Misha Brukman b5f662fa03 Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21425 91177308-0d34-0410-b5e6-96231b3b80d8
2005-04-21 23:30:14 +00:00

43 lines
1.3 KiB
C++

//===- SparcV9Relocations.h - SparcV9 Code Relocations ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines the SparcV9 target-specific relocation types.
//
//===----------------------------------------------------------------------===//
#ifndef SPARCV9RELOCATIONS_H
#define SPARCV9RELOCATIONS_H
#include "llvm/CodeGen/MachineRelocation.h"
namespace llvm {
namespace V9 {
enum RelocationType {
// reloc_pcrel_call - PC relative relocation, shifted right by two bits,
// inserted into a 30 bit field. This is used to relocate direct call
// instructions.
reloc_pcrel_call = 0,
// reloc_sethi_hh - Absolute relocation, for 'sethi %hh(G),reg' operation.
reloc_sethi_hh = 1,
// reloc_sethi_lm - Absolute relocation, for 'sethi %lm(G),reg' operation.
reloc_sethi_lm = 2,
// reloc_or_hm - Absolute relocation, for 'or reg,%hm(G),reg' operation.
reloc_or_hm = 3,
// reloc_or_lo - Absolute relocation, for 'or reg,%lo(G),reg' operation.
reloc_or_lo = 4,
};
}
}
#endif