mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-22 03:39:03 +00:00
Implement: FunctionResolve/2003-04-18-ForwardDeclGlobal.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5816 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9f755bd4dd
commit
ea2294a498
@ -201,30 +201,23 @@ static bool ResolveGlobalVariables(Module &M,
|
|||||||
"Concrete version should be an array type!");
|
"Concrete version should be an array type!");
|
||||||
|
|
||||||
// Get the type of the things that may be resolved to us...
|
// Get the type of the things that may be resolved to us...
|
||||||
const Type *AETy =
|
const ArrayType *CATy =cast<ArrayType>(Concrete->getType()->getElementType());
|
||||||
cast<ArrayType>(Concrete->getType()->getElementType())->getElementType();
|
const Type *AETy = CATy->getElementType();
|
||||||
|
|
||||||
|
Constant *CCPR = ConstantPointerRef::get(Concrete);
|
||||||
|
|
||||||
std::vector<Constant*> Args;
|
|
||||||
Args.push_back(Constant::getNullValue(Type::LongTy));
|
|
||||||
Args.push_back(Constant::getNullValue(Type::LongTy));
|
|
||||||
Constant *Replacement =
|
|
||||||
ConstantExpr::getGetElementPtr(ConstantPointerRef::get(Concrete), Args);
|
|
||||||
|
|
||||||
for (unsigned i = 0; i != Globals.size(); ++i)
|
for (unsigned i = 0; i != Globals.size(); ++i)
|
||||||
if (Globals[i] != Concrete) {
|
if (Globals[i] != Concrete) {
|
||||||
GlobalVariable *Old = cast<GlobalVariable>(Globals[i]);
|
GlobalVariable *Old = cast<GlobalVariable>(Globals[i]);
|
||||||
if (Old->getType()->getElementType() != AETy) {
|
const ArrayType *OATy = cast<ArrayType>(Old->getType()->getElementType());
|
||||||
|
if (OATy->getElementType() != AETy || OATy->getNumElements() != 0) {
|
||||||
std::cerr << "WARNING: Two global variables exist with the same name "
|
std::cerr << "WARNING: Two global variables exist with the same name "
|
||||||
<< "that cannot be resolved!\n";
|
<< "that cannot be resolved!\n";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// In this case, Old is a pointer to T, Concrete is a pointer to array of
|
Old->replaceAllUsesWith(ConstantExpr::getCast(CCPR, Old->getType()));
|
||||||
// T. Because of this, replace all uses of Old with a constantexpr
|
|
||||||
// getelementptr that returns the address of the first element of the
|
|
||||||
// array.
|
|
||||||
//
|
|
||||||
Old->replaceAllUsesWith(Replacement);
|
|
||||||
// Since there are no uses of Old anymore, remove it from the module.
|
// Since there are no uses of Old anymore, remove it from the module.
|
||||||
M.getGlobalList().erase(Old);
|
M.getGlobalList().erase(Old);
|
||||||
|
|
||||||
@ -239,7 +232,6 @@ static bool ProcessGlobalsWithSameName(Module &M,
|
|||||||
assert(!Globals.empty() && "Globals list shouldn't be empty here!");
|
assert(!Globals.empty() && "Globals list shouldn't be empty here!");
|
||||||
|
|
||||||
bool isFunction = isa<Function>(Globals[0]); // Is this group all functions?
|
bool isFunction = isa<Function>(Globals[0]); // Is this group all functions?
|
||||||
bool Changed = false;
|
|
||||||
GlobalValue *Concrete = 0; // The most concrete implementation to resolve to
|
GlobalValue *Concrete = 0; // The most concrete implementation to resolve to
|
||||||
|
|
||||||
assert((isFunction ^ isa<GlobalVariable>(Globals[0])) &&
|
assert((isFunction ^ isa<GlobalVariable>(Globals[0])) &&
|
||||||
@ -271,32 +263,36 @@ static bool ProcessGlobalsWithSameName(Module &M,
|
|||||||
} else {
|
} else {
|
||||||
Concrete = F;
|
Concrete = F;
|
||||||
}
|
}
|
||||||
++i;
|
|
||||||
} else {
|
} else {
|
||||||
// For global variables, we have to merge C definitions int A[][4] with
|
// For global variables, we have to merge C definitions int A[][4] with
|
||||||
// int[6][4]
|
// int[6][4]. A[][4] is represented as A[0][4] by the CFE.
|
||||||
GlobalVariable *GV = cast<GlobalVariable>(Globals[i]);
|
GlobalVariable *GV = cast<GlobalVariable>(Globals[i]);
|
||||||
if (Concrete == 0) {
|
if (!isa<ArrayType>(GV->getType()->getElementType())) {
|
||||||
if (isa<ArrayType>(GV->getType()->getElementType()))
|
Concrete = 0;
|
||||||
Concrete = GV;
|
break; // Non array's cannot be compatible with other types.
|
||||||
} else { // Must have different types... one is an array of the other?
|
} else if (Concrete == 0) {
|
||||||
const ArrayType *AT =
|
Concrete = GV;
|
||||||
dyn_cast<ArrayType>(GV->getType()->getElementType());
|
} else {
|
||||||
|
// Must have different types... allow merging A[0][4] w/ A[6][4] if
|
||||||
|
// A[0][4] is external.
|
||||||
|
const ArrayType *NAT = cast<ArrayType>(GV->getType()->getElementType());
|
||||||
|
const ArrayType *CAT =
|
||||||
|
cast<ArrayType>(Concrete->getType()->getElementType());
|
||||||
|
|
||||||
// If GV is an array of Concrete, then GV is the array.
|
if (NAT->getElementType() != CAT->getElementType()) {
|
||||||
if (AT && AT->getElementType() == Concrete->getType()->getElementType())
|
Concrete = 0; // Non-compatible types
|
||||||
Concrete = GV;
|
break;
|
||||||
else {
|
} else if (NAT->getNumElements() == 0 && GV->isExternal()) {
|
||||||
// Concrete must be an array type, check to see if the element type of
|
// Concrete remains the same
|
||||||
// concrete is already GV.
|
} else if (CAT->getNumElements() == 0 && Concrete->isExternal()) {
|
||||||
AT = cast<ArrayType>(Concrete->getType()->getElementType());
|
Concrete = GV; // Concrete becomes GV
|
||||||
if (AT->getElementType() != GV->getType()->getElementType())
|
} else {
|
||||||
Concrete = 0; // Don't know how to handle it!
|
Concrete = 0; // Cannot merge these types...
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
++i;
|
|
||||||
}
|
}
|
||||||
|
++i;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Globals.size() > 1) { // Found a multiply defined global...
|
if (Globals.size() > 1) { // Found a multiply defined global...
|
||||||
@ -305,23 +301,23 @@ static bool ProcessGlobalsWithSameName(Module &M,
|
|||||||
// uses to use it instead.
|
// uses to use it instead.
|
||||||
//
|
//
|
||||||
if (!Concrete) {
|
if (!Concrete) {
|
||||||
std::cerr << "WARNING: Found function types that are not compatible:\n";
|
std::cerr << "WARNING: Found global types that are not compatible:\n";
|
||||||
for (unsigned i = 0; i < Globals.size(); ++i) {
|
for (unsigned i = 0; i < Globals.size(); ++i) {
|
||||||
std::cerr << "\t" << Globals[i]->getType()->getDescription() << " %"
|
std::cerr << "\t" << Globals[i]->getType()->getDescription() << " %"
|
||||||
<< Globals[i]->getName() << "\n";
|
<< Globals[i]->getName() << "\n";
|
||||||
}
|
}
|
||||||
std::cerr << " No linkage of globals named '" << Globals[0]->getName()
|
std::cerr << " No linkage of globals named '" << Globals[0]->getName()
|
||||||
<< "' performed!\n";
|
<< "' performed!\n";
|
||||||
return Changed;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isFunction)
|
if (isFunction)
|
||||||
return Changed | ResolveFunctions(M, Globals, cast<Function>(Concrete));
|
return ResolveFunctions(M, Globals, cast<Function>(Concrete));
|
||||||
else
|
else
|
||||||
return Changed | ResolveGlobalVariables(M, Globals,
|
return ResolveGlobalVariables(M, Globals,
|
||||||
cast<GlobalVariable>(Concrete));
|
cast<GlobalVariable>(Concrete));
|
||||||
}
|
}
|
||||||
return Changed;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FunctionResolvingPass::run(Module &M) {
|
bool FunctionResolvingPass::run(Module &M) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user