| //===- MipsGNUInfo.h ------------------------------------------------------===// |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| #ifndef TARGET_MIPS_MIPSGNUINFO_H_ |
| #define TARGET_MIPS_MIPSGNUINFO_H_ |
| #include "mcld/Target/GNUInfo.h" |
| #include <llvm/Support/ELF.h> |
| class MipsGNUInfo : public GNUInfo { |
| explicit MipsGNUInfo(const llvm::Triple& pTriple); |
| void setABIVersion(uint8_t ver); |
| void setElfFlags(uint64_t flags); |
| uint32_t machine() const; |
| uint8_t ABIVersion() const; |
| uint64_t defaultTextSegmentAddr() const; |
| const char* entry() const; |
| const char* dyld() const; |
| uint64_t abiPageSize() const; |
| #endif // TARGET_MIPS_MIPSGNUINFO_H_ |