This is a contrived example that illustrates a problem I've encountered. Basically, I create a vector of objects, then a vector of pointers to the objects, then print the pointers and the dereferenced objects.
#include <vector>
#include <iostream>
using namespace std;
namespace {
struct MyClass {
int* MyInt;
MyClass(int* i) : MyInt(i) {}
};
struct MyBigClass {
vector<MyClass> AllMyClassRecords; // Where I keep the MyClass instances
vector<int> TheInts;
void loadMyClasses();
void readMyClasses();
MyBigClass() {}
};
}
void MyBigClass::loadMyClasses() {
for (int i = 0; i < 10; ++i) {
TheInts.push_back(i); // Create an int
int *j = &TheInts[TheInts.size() - 1]; // Create a pointer to the new int
AllMyClassRecords.push_back(MyClass(j)); // Create a MyClass using pointer
}
}
void MyBigClass::readMyClasses() {
for (vector<MyClass>::iterator it = AllMyClassRecords.begin();
it != AllMyClassRecords.end(); ++it)
cout << it->MyInt << " => " << *(it->MyInt) << endl;
}
int main() {
MyBigClass MBC;
MBC.loadMyClasses();
MBC.readMyClasses();
}
Basically, I want to create a vector of pointers to another vector of ints. The problem is that this code prints out the following:
0x97ea008 => 159293472
0x97ea02c => 1
0x97ea040 => 2
0x97ea044 => 3
0x97ea078 => 4
0x97ea07c => 5
0x97ea080 => 6
0x97ea084 => 7
0x97ea0d8 => 8
0x97ea0dc => 9
It appears to work as expected except for the first value, which is likely some garbage in memory. Why is only the first value affected? If my code is broken, why is it only broken for the first pointer inserted?
Update: I'm compiling this using g++ on Ubuntu. As far as specifically what I'm doing, I'm creating a compiler analysis pass. The MyClass objects hold information about instructions, which I want to update when I locate certain registers. The register number indexes a vector of vectors, so a particular register number will have a vector of MyClass*s. Thus, if a register is found, any MyClass pointers in the vector will be used to update the MyClass object held in the separate MyClass vector. Because I'm accumulating both instruction info stored in MyClass objects and register info which must follow MyClass pointers, I can't create the entire MyClass vector first without creating a separate pass, which I'd like to avoid.
Update2: Now with pictures...
Pass Progress inserts... InstRecs (TheInt) and updates... UpdatePtrs (MyClass)
---------------------- ------------------ -----------------------
| => I1: Uses r0, r1 | | InstRec for I1 | | r0: InstRec for I1* |
| I2: Uses r0, r2 | ------------------ | r1: InstRec for I1* |
---------------------- -----------------------
First the pass inserts an InstRec with info about I1. It also creates pointers to this new InstRec indexed by register number. r0 here is actually a vector of one element that points to the InstRec for I1, so that if r0 is ever encountered again in a subsequent instruction, InstRec for I1 will be updated.
Pass Progress inserts... InstRecs (TheInt) and updates... UpdatePtrs (MyClass)
---------------------- ------------------ -----------------------
| I1: Uses r0, r1 | | InstRec for I1 | | r0: InstRec for I1* |
| => I2: Uses r0, r2 | | InstRec for I2 | | InstRec for I2* |
---------------------- ------------------ | r1: InstRec for I1* |
| r2: InstRec for I2* |
-----------------------
Similarly, the second entry will be inserted into InstRecs and pointers will be added to the UpdatePtrs structure. Since I2 uses r0, another InstRec pointer is pushed to the r0 vector. Not shown is this: when it is detected that I2 uses r0, the pass looks in the UpdatePtrs structure at the r0 vector of pointers, follows each pointer to their InstRec entry, and updates the InstRec with new info.
Hopefully that makes what I'm trying to do a little bit clearer. I've implemented the suggestion first proposed by @MerickOWA of using InstRec vector indices rather than InstRec pointers (since once the InstRecs are added to the array, they never move), and it seems to be working now.