48d47
< #include "mem/translating_port.hh"
63,84d61
< //This needs to be templated for cases where 32 bit pointers are needed.
< template<class AddrType>
< void
< copyStringArray(std::vector<std::string> &strings,
< AddrType array_ptr, AddrType data_ptr,
< TranslatingPort* memPort)
< {
< AddrType data_ptr_swap;
< for (int i = 0; i < strings.size(); ++i) {
< data_ptr_swap = htog(data_ptr);
< memPort->writeBlob(array_ptr, (uint8_t*)&data_ptr_swap,
< sizeof(AddrType));
< memPort->writeString(data_ptr, strings[i].c_str());
< array_ptr += sizeof(AddrType);
< data_ptr += strings[i].size() + 1;
< }
< // add NULL terminator
< data_ptr = 0;
<
< memPort->writeBlob(array_ptr, (uint8_t*)&data_ptr, sizeof(AddrType));
< }
<
196a174,177
> // check if the this addr is on the next available page and allocate it
> // if it's not we'll panic
> bool checkAndAllocNextPage(Addr vaddr);
>