process_impl.hh (4434:2ea7b6e0b78f) process_impl.hh (6227:a17798f2a52c)
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 41 unchanged lines hidden (view full) ---

50//This needs to be templated for cases where 32 bit pointers are needed.
51template<class AddrType>
52void
53copyStringArray(std::vector<std::string> &strings,
54 AddrType array_ptr, AddrType data_ptr,
55 TranslatingPort* memPort)
56{
57 AddrType data_ptr_swap;
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 41 unchanged lines hidden (view full) ---

50//This needs to be templated for cases where 32 bit pointers are needed.
51template<class AddrType>
52void
53copyStringArray(std::vector<std::string> &strings,
54 AddrType array_ptr, AddrType data_ptr,
55 TranslatingPort* memPort)
56{
57 AddrType data_ptr_swap;
58 for (int i = 0; i < strings.size(); ++i) {
58 for (std::vector<std::string>::size_type i = 0; i < strings.size(); ++i) {
59 data_ptr_swap = htog(data_ptr);
60 memPort->writeBlob(array_ptr, (uint8_t*)&data_ptr_swap,
61 sizeof(AddrType));
62 memPort->writeString(data_ptr, strings[i].c_str());
63 array_ptr += sizeof(AddrType);
64 data_ptr += strings[i].size() + 1;
65 }
66 // add NULL terminator
67 data_ptr = 0;
68
69 memPort->writeBlob(array_ptr, (uint8_t*)&data_ptr, sizeof(AddrType));
70}
71
72
73#endif // !FULL_SYSTEM
74
75#endif
59 data_ptr_swap = htog(data_ptr);
60 memPort->writeBlob(array_ptr, (uint8_t*)&data_ptr_swap,
61 sizeof(AddrType));
62 memPort->writeString(data_ptr, strings[i].c_str());
63 array_ptr += sizeof(AddrType);
64 data_ptr += strings[i].size() + 1;
65 }
66 // add NULL terminator
67 data_ptr = 0;
68
69 memPort->writeBlob(array_ptr, (uint8_t*)&data_ptr, sizeof(AddrType));
70}
71
72
73#endif // !FULL_SYSTEM
74
75#endif