blob: c016357732d05745c3487a317b1eab98d91fa840 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COURGETTE_IMAGE_UTILS_H_
#define COURGETTE_IMAGE_UTILS_H_
#include "base/basictypes.h"
// COURGETTE_HISTOGRAM_TARGETS prints out a histogram of how frequently
// different target addresses are referenced. Purely for debugging.
#define COURGETTE_HISTOGRAM_TARGETS 0
namespace courgette {
typedef uint32 RVA;
// These helper functions avoid the need for casts in the main code.
inline uint16 ReadU16(const uint8* address, size_t offset) {
return *reinterpret_cast<const uint16*>(address + offset);
}
inline uint32 ReadU32(const uint8* address, size_t offset) {
return *reinterpret_cast<const uint32*>(address + offset);
}
inline uint64 ReadU64(const uint8* address, size_t offset) {
return *reinterpret_cast<const uint64*>(address + offset);
}
inline uint16 Read16LittleEndian(const void* address) {
return *reinterpret_cast<const uint16*>(address);
}
inline uint32 Read32LittleEndian(const void* address) {
return *reinterpret_cast<const uint32*>(address);
}
inline uint64 Read64LittleEndian(const void* address) {
return *reinterpret_cast<const uint64*>(address);
}
} // namespace courgette
#endif // COURGETTE_IMAGE_UTILS_H_
|