forked from OSchip/llvm-project
parent
e64e62eff9
commit
c93df6bf22
|
@ -777,32 +777,27 @@ void SparcModuleAsmPrinter::emitGlobalsAndConstants(const Module &M) {
|
||||||
hash_set<const Constant*> moduleConstants;
|
hash_set<const Constant*> moduleConstants;
|
||||||
FoldConstants(M, moduleConstants);
|
FoldConstants(M, moduleConstants);
|
||||||
|
|
||||||
// Now, emit the three data sections separately; the cost of I/O should
|
// Output constants spilled to memory
|
||||||
// make up for the cost of extra passes over the globals list!
|
|
||||||
|
|
||||||
// Section 1 : Read-only data section (implies initialized)
|
|
||||||
enterSection(AsmPrinter::ReadOnlyData);
|
enterSection(AsmPrinter::ReadOnlyData);
|
||||||
for (Module::const_giterator GI = M.gbegin(), GE = M.gend(); GI != GE; ++GI)
|
for (hash_set<const Constant*>::const_iterator I = moduleConstants.begin(),
|
||||||
if (GI->hasInitializer() && GI->isConstant())
|
|
||||||
printGlobalVariable(GI);
|
|
||||||
|
|
||||||
for (hash_set<const Constant*>::const_iterator
|
|
||||||
I = moduleConstants.begin(),
|
|
||||||
E = moduleConstants.end(); I != E; ++I)
|
E = moduleConstants.end(); I != E; ++I)
|
||||||
printConstant(*I);
|
printConstant(*I);
|
||||||
|
|
||||||
// Section 2 : Initialized read-write data section
|
// Output global variables...
|
||||||
enterSection(AsmPrinter::InitRWData);
|
for (Module::const_giterator GI = M.gbegin(), GE = M.gend(); GI != GE; ++GI) {
|
||||||
for (Module::const_giterator GI = M.gbegin(), GE = M.gend(); GI != GE; ++GI)
|
if (GI->hasInitializer() && GI->isConstant()) {
|
||||||
if (GI->hasInitializer() && !GI->isConstant())
|
enterSection(AsmPrinter::ReadOnlyData); // read-only, initialized data
|
||||||
printGlobalVariable(GI);
|
} else if (GI->hasInitializer() && !GI->isConstant()) { // read-write data
|
||||||
|
enterSection(AsmPrinter::ReadOnlyData); // read-only, initialized data
|
||||||
// Section 3 : Uninitialized read-write data section
|
} else if (GI->hasInitializer() && !GI->isConstant()) { // read-write data
|
||||||
enterSection(AsmPrinter::UninitRWData);
|
enterSection(AsmPrinter::InitRWData);
|
||||||
for (Module::const_giterator GI = M.gbegin(), GE = M.gend(); GI != GE; ++GI)
|
} else {
|
||||||
if (!GI->hasInitializer())
|
assert (!GI->hasInitializer() && "Unexpected global variable type found");
|
||||||
printGlobalVariable(GI);
|
enterSection(AsmPrinter::UninitRWData); // Uninitialized data
|
||||||
|
}
|
||||||
|
printGlobalVariable(GI);
|
||||||
|
}
|
||||||
|
|
||||||
toAsm << "\n";
|
toAsm << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue