f785676f2a
all of the features in the current working draft of the upcoming C++ standard, provisionally named C++1y. The code generator's performance is greatly increased, and the loop auto-vectorizer is now enabled at -Os and -O2 in addition to -O3. The PowerPC backend has made several major improvements to code generation quality and compile time, and the X86, SPARC, ARM32, Aarch64 and SystemZ backends have all seen major feature work. Release notes for llvm and clang can be found here: <http://llvm.org/releases/3.4/docs/ReleaseNotes.html> <http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html> MFC after: 1 month
86 lines
3.1 KiB
C++
86 lines
3.1 KiB
C++
//===- lib/MC/MCELF.cpp - MC ELF ------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements ELF object file writer information.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/MC/MCELF.h"
|
|
#include "llvm/MC/MCAssembler.h"
|
|
#include "llvm/MC/MCELFSymbolFlags.h"
|
|
#include "llvm/MC/MCFixupKindInfo.h"
|
|
#include "llvm/Support/ELF.h"
|
|
|
|
namespace llvm {
|
|
|
|
void MCELF::SetBinding(MCSymbolData &SD, unsigned Binding) {
|
|
assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
|
|
Binding == ELF::STB_WEAK);
|
|
uint32_t OtherFlags = SD.getFlags() & ~(0xf << ELF_STB_Shift);
|
|
SD.setFlags(OtherFlags | (Binding << ELF_STB_Shift));
|
|
}
|
|
|
|
unsigned MCELF::GetBinding(const MCSymbolData &SD) {
|
|
uint32_t Binding = (SD.getFlags() & (0xf << ELF_STB_Shift)) >> ELF_STB_Shift;
|
|
assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
|
|
Binding == ELF::STB_WEAK);
|
|
return Binding;
|
|
}
|
|
|
|
void MCELF::SetType(MCSymbolData &SD, unsigned Type) {
|
|
assert(Type == ELF::STT_NOTYPE || Type == ELF::STT_OBJECT ||
|
|
Type == ELF::STT_FUNC || Type == ELF::STT_SECTION ||
|
|
Type == ELF::STT_COMMON || Type == ELF::STT_TLS ||
|
|
Type == ELF::STT_GNU_IFUNC);
|
|
|
|
uint32_t OtherFlags = SD.getFlags() & ~(0xf << ELF_STT_Shift);
|
|
SD.setFlags(OtherFlags | (Type << ELF_STT_Shift));
|
|
}
|
|
|
|
unsigned MCELF::GetType(const MCSymbolData &SD) {
|
|
uint32_t Type = (SD.getFlags() & (0xf << ELF_STT_Shift)) >> ELF_STT_Shift;
|
|
assert(Type == ELF::STT_NOTYPE || Type == ELF::STT_OBJECT ||
|
|
Type == ELF::STT_FUNC || Type == ELF::STT_SECTION ||
|
|
Type == ELF::STT_COMMON || Type == ELF::STT_TLS || Type == ELF::STT_GNU_IFUNC);
|
|
return Type;
|
|
}
|
|
|
|
// Visibility is stored in the first two bits of st_other
|
|
// st_other values are stored in the second byte of get/setFlags
|
|
void MCELF::SetVisibility(MCSymbolData &SD, unsigned Visibility) {
|
|
assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL ||
|
|
Visibility == ELF::STV_HIDDEN || Visibility == ELF::STV_PROTECTED);
|
|
|
|
uint32_t OtherFlags = SD.getFlags() & ~(0x3 << ELF_STV_Shift);
|
|
SD.setFlags(OtherFlags | (Visibility << ELF_STV_Shift));
|
|
}
|
|
|
|
unsigned MCELF::GetVisibility(MCSymbolData &SD) {
|
|
unsigned Visibility =
|
|
(SD.getFlags() & (0x3 << ELF_STV_Shift)) >> ELF_STV_Shift;
|
|
assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL ||
|
|
Visibility == ELF::STV_HIDDEN || Visibility == ELF::STV_PROTECTED);
|
|
return Visibility;
|
|
}
|
|
|
|
// Other is stored in the last six bits of st_other
|
|
// st_other values are stored in the second byte of get/setFlags
|
|
void MCELF::setOther(MCSymbolData &SD, unsigned Other) {
|
|
uint32_t OtherFlags = SD.getFlags() & ~(0x3f << ELF_Other_Shift);
|
|
SD.setFlags(OtherFlags | (Other << ELF_Other_Shift));
|
|
}
|
|
|
|
unsigned MCELF::getOther(MCSymbolData &SD) {
|
|
unsigned Other =
|
|
(SD.getFlags() & (0x3f << ELF_Other_Shift)) >> ELF_Other_Shift;
|
|
return Other;
|
|
}
|
|
|
|
}
|