mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
enumerate parameter attr lists.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36709 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
76520191ab
commit
50954f5cba
@ -12,6 +12,7 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "ValueEnumerator.h"
|
#include "ValueEnumerator.h"
|
||||||
|
#include "llvm/DerivedTypes.h"
|
||||||
#include "llvm/Module.h"
|
#include "llvm/Module.h"
|
||||||
#include "llvm/TypeSymbolTable.h"
|
#include "llvm/TypeSymbolTable.h"
|
||||||
#include "llvm/ValueSymbolTable.h"
|
#include "llvm/ValueSymbolTable.h"
|
||||||
@ -143,8 +144,24 @@ void ValueEnumerator::EnumerateType(const Type *Ty) {
|
|||||||
for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
|
for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
|
||||||
I != E; ++I)
|
I != E; ++I)
|
||||||
EnumerateType(*I);
|
EnumerateType(*I);
|
||||||
|
|
||||||
|
// If this is a function type, enumerate the param attrs.
|
||||||
|
if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty))
|
||||||
|
EnumerateParamAttrs(FTy->getParamAttrs());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ValueEnumerator::EnumerateParamAttrs(const ParamAttrsList *PAL) {
|
||||||
|
if (PAL == 0) return; // null is always 0.
|
||||||
|
// Do a lookup.
|
||||||
|
unsigned &Entry = ParamAttrMap[PAL];
|
||||||
|
if (Entry == 0) {
|
||||||
|
// Never saw this before, add it.
|
||||||
|
ParamAttrs.push_back(PAL);
|
||||||
|
Entry = ParamAttrs.size();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// PurgeAggregateValues - If there are any aggregate values at the end of the
|
/// PurgeAggregateValues - If there are any aggregate values at the end of the
|
||||||
/// value list, remove them and return the count of the remaining values. If
|
/// value list, remove them and return the count of the remaining values. If
|
||||||
/// there are none, return -1.
|
/// there are none, return -1.
|
||||||
|
@ -24,6 +24,7 @@ class Value;
|
|||||||
class BasicBlock;
|
class BasicBlock;
|
||||||
class Function;
|
class Function;
|
||||||
class Module;
|
class Module;
|
||||||
|
class ParamAttrsList;
|
||||||
class TypeSymbolTable;
|
class TypeSymbolTable;
|
||||||
class ValueSymbolTable;
|
class ValueSymbolTable;
|
||||||
|
|
||||||
@ -43,6 +44,10 @@ private:
|
|||||||
ValueMapType ValueMap;
|
ValueMapType ValueMap;
|
||||||
ValueList Values;
|
ValueList Values;
|
||||||
|
|
||||||
|
typedef DenseMap<const ParamAttrsList*, unsigned> ParamAttrMapType;
|
||||||
|
ParamAttrMapType ParamAttrMap;
|
||||||
|
std::vector<const ParamAttrsList*> ParamAttrs;
|
||||||
|
|
||||||
/// BasicBlocks - This contains all the basic blocks for the currently
|
/// BasicBlocks - This contains all the basic blocks for the currently
|
||||||
/// incorporated function. Their reverse mapping is stored in ValueMap.
|
/// incorporated function. Their reverse mapping is stored in ValueMap.
|
||||||
std::vector<const BasicBlock*> BasicBlocks;
|
std::vector<const BasicBlock*> BasicBlocks;
|
||||||
@ -70,6 +75,13 @@ public:
|
|||||||
return I->second-1;
|
return I->second-1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned getParamAttrID(const ParamAttrsList *PAL) const {
|
||||||
|
if (PAL == 0) return 0; // Null maps to zero.
|
||||||
|
ParamAttrMapType::const_iterator I = ParamAttrMap.find(PAL);
|
||||||
|
assert(I != ParamAttrMap.end() && "ParamAttr not in ValueEnumerator!");
|
||||||
|
return I->second;
|
||||||
|
}
|
||||||
|
|
||||||
/// getFunctionConstantRange - Return the range of values that corresponds to
|
/// getFunctionConstantRange - Return the range of values that corresponds to
|
||||||
/// function-local constants.
|
/// function-local constants.
|
||||||
void getFunctionConstantRange(unsigned &Start, unsigned &End) const {
|
void getFunctionConstantRange(unsigned &Start, unsigned &End) const {
|
||||||
@ -82,6 +94,9 @@ public:
|
|||||||
const std::vector<const BasicBlock*> &getBasicBlocks() const {
|
const std::vector<const BasicBlock*> &getBasicBlocks() const {
|
||||||
return BasicBlocks;
|
return BasicBlocks;
|
||||||
}
|
}
|
||||||
|
const std::vector<const ParamAttrsList*> getParamAttrs() const {
|
||||||
|
return ParamAttrs;
|
||||||
|
}
|
||||||
|
|
||||||
/// PurgeAggregateValues - If there are any aggregate values at the end of the
|
/// PurgeAggregateValues - If there are any aggregate values at the end of the
|
||||||
/// value list, remove them and return the count of the remaining values. If
|
/// value list, remove them and return the count of the remaining values. If
|
||||||
@ -97,6 +112,7 @@ public:
|
|||||||
private:
|
private:
|
||||||
void EnumerateValue(const Value *V);
|
void EnumerateValue(const Value *V);
|
||||||
void EnumerateType(const Type *T);
|
void EnumerateType(const Type *T);
|
||||||
|
void EnumerateParamAttrs(const ParamAttrsList *PAL);
|
||||||
|
|
||||||
void EnumerateTypeSymbolTable(const TypeSymbolTable &ST);
|
void EnumerateTypeSymbolTable(const TypeSymbolTable &ST);
|
||||||
void EnumerateValueSymbolTable(const ValueSymbolTable &ST);
|
void EnumerateValueSymbolTable(const ValueSymbolTable &ST);
|
||||||
|
Loading…
Reference in New Issue
Block a user