mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-28 07:17:32 +00:00
Adjust to changes in User class and minor changes in instruction ctors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19894 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -77,18 +77,23 @@ public:
|
||||
/// constants with global variables at the end of reading the
|
||||
/// globals section.
|
||||
/// @brief A list of values as a User of those Values.
|
||||
struct ValueList : public User {
|
||||
ValueList() : User(Type::VoidTy, Value::ValueListVal) {}
|
||||
class ValueList : public User {
|
||||
std::vector<Use> Uses;
|
||||
public:
|
||||
ValueList() : User(Type::VoidTy, Value::ValueListVal, 0, 0) {}
|
||||
|
||||
// vector compatibility methods
|
||||
unsigned size() const { return getNumOperands(); }
|
||||
void push_back(Value *V) { Operands.push_back(Use(V, this)); }
|
||||
Value *back() const { return Operands.back(); }
|
||||
void pop_back() { Operands.pop_back(); }
|
||||
bool empty() const { return Operands.empty(); }
|
||||
// must override this
|
||||
void push_back(Value *V) {
|
||||
Uses.push_back(Use(V, this));
|
||||
OperandList = &Uses[0];
|
||||
++NumOperands;
|
||||
}
|
||||
Value *back() const { return Uses.back(); }
|
||||
void pop_back() { Uses.pop_back(); --NumOperands; }
|
||||
bool empty() const { return NumOperands == 0; }
|
||||
virtual void print(std::ostream& os) const {
|
||||
for ( unsigned i = 0; i < size(); i++ ) {
|
||||
for (unsigned i = 0; i < size(); ++i) {
|
||||
os << i << " ";
|
||||
getOperand(i)->print(os);
|
||||
os << "\n";
|
||||
|
Reference in New Issue
Block a user