mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Implement global variable support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@530 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Method.h"
|
||||
#include "llvm/GlobalVariable.h"
|
||||
#include "llvm/BasicBlock.h"
|
||||
#include "llvm/InstrTypes.h"
|
||||
#include "llvm/ValueHolderImpl.h"
|
||||
@@ -15,15 +16,18 @@
|
||||
// Instantiate Templates - This ugliness is the price we have to pay
|
||||
// for having a DefHolderImpl.h file seperate from DefHolder.h! :(
|
||||
//
|
||||
template class ValueHolder<GlobalVariable, Module, Module>;
|
||||
template class ValueHolder<Method, Module, Module>;
|
||||
|
||||
Module::Module()
|
||||
: Value(Type::VoidTy, Value::ModuleVal, ""), SymTabValue(this),
|
||||
MethodList(this, this) {
|
||||
GlobalList(this, this), MethodList(this, this) {
|
||||
}
|
||||
|
||||
Module::~Module() {
|
||||
dropAllReferences();
|
||||
GlobalList.delete_all();
|
||||
GlobalList.setParent(0);
|
||||
MethodList.delete_all();
|
||||
MethodList.setParent(0);
|
||||
}
|
||||
@@ -46,6 +50,12 @@ void Module::dropAllReferences() {
|
||||
// reduceApply - Apply the specified function to all of the methods in this
|
||||
// module. The result values are or'd together and the result is returned.
|
||||
//
|
||||
bool Module::reduceApply(bool (*Func)(GlobalVariable*)) {
|
||||
return reduce_apply_bool(gbegin(), gend(), Func);
|
||||
}
|
||||
bool Module::reduceApply(bool (*Func)(const GlobalVariable*)) const {
|
||||
return reduce_apply_bool(gbegin(), gend(), Func);
|
||||
}
|
||||
bool Module::reduceApply(bool (*Func)(Method*)) {
|
||||
return reduce_apply_bool(begin(), end(), Func);
|
||||
}
|
||||
|
Reference in New Issue
Block a user