- Add const keyword / casting to supress more stringient compiler warnings

- Move DynamicImage::Print() from dynamic_images.h to dynamic_images.cc



git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@170 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
waylonis 2007-05-19 00:41:39 +00:00
parent af3c43f00e
commit 32d4064736
5 changed files with 20 additions and 17 deletions

View file

@ -104,6 +104,19 @@ void DynamicImage::CalculateMemoryInfo() {
slide_ = 0; slide_ = 0;
} }
void DynamicImage::Print() {
const char *path = GetFilePath();
if (!path) {
path = "(unknown)";
}
printf("%p: %s\n", GetLoadAddress(), path);
mach_header *header = GetMachHeader();
MachHeader(*header).Print();
printf("vmaddr\t\t: %p\n", reinterpret_cast<void*>(GetVMAddr()));
printf("vmsize\t\t: %d\n", GetVMSize());
printf("slide\t\t: %d\n", GetVMAddrSlide());
}
#pragma mark - #pragma mark -
//============================================================================== //==============================================================================
@ -123,7 +136,7 @@ void DynamicImages::ReadImageInfoForTask() {
// which lives in "dyld". This structure contains information about all // which lives in "dyld". This structure contains information about all
// of the loaded dynamic images. // of the loaded dynamic images.
struct nlist &list = l[0]; struct nlist &list = l[0];
list.n_un.n_name = "_dyld_all_image_infos"; list.n_un.n_name = const_cast<char *>("_dyld_all_image_infos");
nlist("/usr/lib/dyld", &list); nlist("/usr/lib/dyld", &list);
if (list.n_value) { if (list.n_value) {

View file

@ -147,18 +147,7 @@ class DynamicImage {
} }
// Debugging // Debugging
void Print() { void Print();
char *path = GetFilePath();
if (!path) {
path = "(unknown)";
}
printf("%p: %s\n", GetLoadAddress(), path);
mach_header *header = GetMachHeader();
MachHeader(*header).Print();
printf("vmaddr\t\t: %p\n", reinterpret_cast<void*>(GetVMAddr()));
printf("vmsize\t\t: %d\n", GetVMSize());
printf("slide\t\t: %d\n", GetVMAddrSlide());
}
private: private:
friend class DynamicImages; friend class DynamicImages;

View file

@ -594,7 +594,7 @@ bool MinidumpGenerator::WriteCVRecord(MDRawModule *module, int cpu_type,
TypedMDRVA<MDCVInfoPDB70> cv(&writer_); TypedMDRVA<MDCVInfoPDB70> cv(&writer_);
// Only return the last path component of the full module path // Only return the last path component of the full module path
char *module_name = strrchr(module_path, '/'); const char *module_name = strrchr(module_path, '/');
// Increment past the slash // Increment past the slash
if (module_name) if (module_name)

View file

@ -76,7 +76,8 @@ inline bool TypedMDRVA<MDType>::CopyIndex(unsigned int index, MDType *item) {
template<typename MDType> template<typename MDType>
inline bool TypedMDRVA<MDType>::CopyIndexAfterObject(unsigned int index, inline bool TypedMDRVA<MDType>::CopyIndexAfterObject(unsigned int index,
void *src, size_t size) { const void *src,
size_t size) {
assert(allocation_state_ == SINGLE_OBJECT_WITH_ARRAY); assert(allocation_state_ == SINGLE_OBJECT_WITH_ARRAY);
return writer_->Copy(position_ + sizeof(MDType) + index * size, src, size); return writer_->Copy(position_ + sizeof(MDType) + index * size, src, size);
} }

View file

@ -228,7 +228,7 @@ class TypedMDRVA : public UntypedMDRVA {
// Copy |size| bytes starting at |str| to |index| // Copy |size| bytes starting at |str| to |index|
// Must have been allocated using AllocateObjectAndArray(). // Must have been allocated using AllocateObjectAndArray().
// Return true on success, or false on failure // Return true on success, or false on failure
bool CopyIndexAfterObject(unsigned int index, void *src, size_t size); bool CopyIndexAfterObject(unsigned int index, const void *src, size_t size);
// Write data_ // Write data_
bool Flush(); bool Flush();