I'm just playing around with a grub-bootable C++ kernel in visual studio 2010.

I've gotten to the point where I have new and delete written and things such as dynamically allocated arrays work. I can use STL lists, for example. I can even sort them, after I wrote a memcpy routine. The problem is when I use the std::vector type. Simply constructing the vector sends the kernel off into la la land.

Obviously I'm missing a function implementation of some kind, but I looked through STL searching for it and came up empty-handed. It fails at the push_back:

vector<int> v;
v.push_back(1);

and disappears into the ether.

Any guesses as to what I'm missing?

Edit yes it's vector of int. Sorry for the confusion. Not only that, but it's not the constructor it fails on, it's a call to push_back.

link|improve this question
I hope you mean vector<int> or something... or is "i" a type? – Doug T. Aug 18 '10 at 1:21
Can you give more detail about what this C++ kernel is, some sample code, anything else? Your write up is a bit vague. – John Kugelman Aug 18 '10 at 1:25
It's actually based off of ksrenevasan.blogspot.com/2005/10/… Memory is the simplest scheme for now while I learn. It just grabs the largest base low to base high passed from grub's multiboot struct and then starts thunking stuff into memory from that point forward, subtracting from base low the amount of memory requested and free does nothing at all - it just is there. I know both are being called as appropriate, if I use a list and sort they both print kernel messages saying an allocation occurred or deallocation was called. – jjacksonRIAB Aug 18 '10 at 1:43
I had once similar breakage on outdated Linux + outdated GCC + outdated STL. v.insert( v.end(), 1 ); helped me back then. – Dummy00001 Aug 18 '10 at 13:00
feedback

3 Answers

up vote 5 down vote accepted

As per our discussion above, creating a

std::vector<mySimpleStruct> v;

instead of a

std::vector<int> v;

appears to work correctly. This must mean the problem is with something being done in the specialization of some functions for std::vector in your standard template library. I'm assuming you're familiar with template specialization already, but in case you're not:

http://www.parashift.com/c++-faq-lite/templates.html#faq-35.7

Also, once you've figured out where the real problem is, could you come back and post the answer here? You have me curious about where the real problem is now, plus the answer may be helpful to others trying to build their own OS kernels.

link|improve this answer
feedback

Stab in the dark: do you have new[] and delete[] implemented? A list will create one item at a time with new while a vector will likely allocate larger blocks of memory with new[].

link|improve this answer
That just might be it. I've looked at allocators too, but I think you've probably got this one. Let me try it. – jjacksonRIAB Aug 18 '10 at 1:27
1  
@jjacksonRIAB Another thought, what happens if you use std::vector<mySimpleStruct> instead? I'm wondering if there might be a template specialization for std::vector<int>. If there is, your problem might be specific to the specialized version. – George Aug 18 '10 at 2:10
1  
@George: Aha! You're right. It's not doing it on a simple struct, or a simple struct with an int in it. Just int. And reserve also works on simple structs. I'll look for a specialization somewhere in the code for int and see how it differs. – jjacksonRIAB Aug 18 '10 at 2:23
1  
@jjacksonRIAB: Glad I could help! Maybe I should post it as an answer instead of a comment next time :) – George Aug 18 '10 at 2:43
2  
@George: Nevertheless, thanks for your patience. OS development is a very throw-at-the-wall-and-see-what-sticks kindof deal, at least until you get to the point where it can actually be debugged. You've helped narrow the problem down quite a bit. Thanks! :-) – jjacksonRIAB Aug 18 '10 at 2:49
show 4 more comments
feedback

Do you use a custom allocator or a default one?

You might try using a custom one just to see what allocations vector peforms that might destroy your implementation of the memory manager (this is probably what actually fails).

And yes, please post back once you solve it - it helps all other OSdevers out there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.