2005-07-22 20:52:16 +00:00
|
|
|
//===- AlphaRelocations.h - Alpha Code Relocations --------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-07-22 20:52:16 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the Alpha target-specific relocation types.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef ALPHARELOCATIONS_H
|
|
|
|
#define ALPHARELOCATIONS_H
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineRelocation.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace Alpha {
|
|
|
|
enum RelocationType {
|
|
|
|
reloc_literal,
|
|
|
|
reloc_gprellow,
|
|
|
|
reloc_gprelhigh,
|
|
|
|
reloc_gpdist,
|
2006-05-24 17:04:05 +00:00
|
|
|
reloc_bsr
|
2005-07-22 20:52:16 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|