mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-16 08:29:43 +00:00
StringRefize some debug accel table bits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181663 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a8ccefc0a3
commit
03406c4f15
@ -76,7 +76,7 @@ static bool compareDIEs(const DwarfAccelTable::HashDataContents *A,
|
||||
return A->Die->getOffset() < B->Die->getOffset();
|
||||
}
|
||||
|
||||
void DwarfAccelTable::FinalizeTable(AsmPrinter *Asm, const char *Prefix) {
|
||||
void DwarfAccelTable::FinalizeTable(AsmPrinter *Asm, StringRef Prefix) {
|
||||
// Create the individual hash data outputs.
|
||||
for (StringMap<DataArray>::iterator
|
||||
EI = Entries.begin(), EE = Entries.end(); EI != EE; ++EI) {
|
||||
|
@ -271,7 +271,7 @@ private:
|
||||
DwarfAccelTable(ArrayRef<DwarfAccelTable::Atom>);
|
||||
~DwarfAccelTable();
|
||||
void AddName(StringRef, DIE*, char = 0);
|
||||
void FinalizeTable(AsmPrinter *, const char *);
|
||||
void FinalizeTable(AsmPrinter *, StringRef);
|
||||
void Emit(AsmPrinter *, MCSymbol *, DwarfUnits *);
|
||||
#ifndef NDEBUG
|
||||
void print(raw_ostream &O);
|
||||
|
@ -2066,7 +2066,7 @@ void DwarfDebug::emitAccelNames() {
|
||||
const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNames();
|
||||
for (StringMap<std::vector<DIE*> >::const_iterator
|
||||
GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
|
||||
const char *Name = GI->getKeyData();
|
||||
StringRef Name = GI->getKey();
|
||||
const std::vector<DIE *> &Entities = GI->second;
|
||||
for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
|
||||
DE = Entities.end(); DI != DE; ++DI)
|
||||
@ -2095,7 +2095,7 @@ void DwarfDebug::emitAccelObjC() {
|
||||
const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelObjC();
|
||||
for (StringMap<std::vector<DIE*> >::const_iterator
|
||||
GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
|
||||
const char *Name = GI->getKeyData();
|
||||
StringRef Name = GI->getKey();
|
||||
const std::vector<DIE *> &Entities = GI->second;
|
||||
for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
|
||||
DE = Entities.end(); DI != DE; ++DI)
|
||||
@ -2123,7 +2123,7 @@ void DwarfDebug::emitAccelNamespaces() {
|
||||
const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNamespace();
|
||||
for (StringMap<std::vector<DIE*> >::const_iterator
|
||||
GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
|
||||
const char *Name = GI->getKeyData();
|
||||
StringRef Name = GI->getKey();
|
||||
const std::vector<DIE *> &Entities = GI->second;
|
||||
for (std::vector<DIE *>::const_iterator DI = Entities.begin(),
|
||||
DE = Entities.end(); DI != DE; ++DI)
|
||||
@ -2158,7 +2158,7 @@ void DwarfDebug::emitAccelTypes() {
|
||||
= TheCU->getAccelTypes();
|
||||
for (StringMap<std::vector<std::pair<DIE*, unsigned> > >::const_iterator
|
||||
GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) {
|
||||
const char *Name = GI->getKeyData();
|
||||
StringRef Name = GI->getKey();
|
||||
const std::vector<std::pair<DIE *, unsigned> > &Entities = GI->second;
|
||||
for (std::vector<std::pair<DIE *, unsigned> >::const_iterator DI
|
||||
= Entities.begin(), DE = Entities.end(); DI !=DE; ++DI)
|
||||
@ -2222,7 +2222,7 @@ void DwarfDebug::emitDebugPubnames() {
|
||||
|
||||
if (Asm->isVerbose())
|
||||
Asm->OutStreamer.AddComment("External Name");
|
||||
Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0);
|
||||
Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0);
|
||||
}
|
||||
|
||||
Asm->OutStreamer.AddComment("End Mark");
|
||||
|
Loading…
Reference in New Issue
Block a user