gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
framebuffer.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  *
37  * Authors: Andreas Sandberg
38  */
39 
40 #ifndef __BASE_FRAMEBUFFER_HH__
41 #define __BASE_FRAMEBUFFER_HH__
42 
43 #include <cmath>
44 #include <cstdint>
45 
46 #include <string>
47 #include <vector>
48 
49 #include "base/compiler.hh"
50 #include "base/cprintf.hh"
51 #include "base/str.hh"
52 #include "base/types.hh"
53 #include "sim/serialize.hh"
54 
58 struct Pixel
59 {
61  : red(0), green(0), blue(0), padding(0) {}
62 
63  Pixel(uint8_t _red, uint8_t _green, uint8_t _blue)
64  : red(_red), green(_green), blue(_blue), padding(0) {}
65 
66  uint8_t red;
67  uint8_t green;
68  uint8_t blue;
69  uint8_t padding;
70 };
71 
72 inline bool
73 operator==(const Pixel &lhs, const Pixel &rhs)
74 {
75  return lhs.red == rhs.red &&
76  lhs.green == rhs.green &&
77  lhs.blue == rhs.blue &&
78  lhs.padding == rhs.padding;
79 }
80 
92 {
93  public:
97  struct Channel {
102  Channel(unsigned offset, unsigned width);
103 
108  uint8_t toPixel(uint32_t word) const {
109  return round(((word >> offset) & mask) * factor);
110  }
111 
116  uint32_t fromPixel(uint8_t ch) const {
117  return (static_cast<uint8_t>(round(ch / factor)) & mask) << offset;
118  }
119 
121  unsigned offset;
123  unsigned mask;
128  float factor;
129  };
130 
131  PixelConverter(unsigned length,
132  unsigned ro, unsigned go, unsigned bo,
133  unsigned rw, unsigned gw, unsigned bw,
135 
137  Pixel toPixel(uint32_t word) const {
138  return Pixel(ch_r.toPixel(word),
139  ch_g.toPixel(word),
140  ch_b.toPixel(word));
141  }
142 
144  Pixel toPixel(const uint8_t *rfb) const {
145  return toPixel(readWord(rfb));
146  }
147 
149  uint32_t fromPixel(const Pixel &pixel) const {
150  return ch_r.fromPixel(pixel.red) |
151  ch_g.fromPixel(pixel.green) |
152  ch_b.fromPixel(pixel.blue);
153  }
154 
159  void fromPixel(uint8_t *rfb, const Pixel &pixel) const {
160  writeWord(rfb, fromPixel(pixel));
161  }
162 
173  uint32_t readWord(const uint8_t *p) const;
180  void writeWord(uint8_t *p, uint32_t word) const;
181 
183  unsigned length;
189  unsigned depth;
192 
199 
205  static const PixelConverter rgb565_le;
206 
212  static const PixelConverter rgb565_be;
213 };
214 
215 inline bool
216 to_number(const std::string &value, Pixel &retval)
217 {
218  uint32_t num;
219  if (!to_number(value, num))
220  return false;
221 
222  retval = PixelConverter::rgba8888_le.toPixel(num);
223  return true;
224 }
225 
226 inline std::ostream &
227 operator<<(std::ostream &os, const Pixel &pxl)
228 {
229  os << csprintf("0x%.08x", PixelConverter::rgba8888_le.fromPixel(pxl));
230  return os;
231 }
232 
244 class FrameBuffer : public Serializable
245 {
246  public:
253  FrameBuffer(unsigned width, unsigned height);
255  FrameBuffer();
256 
257  virtual ~FrameBuffer();
258 
259  void serialize(CheckpointOut &cp) const override;
260  void unserialize(CheckpointIn &cp) override;
261 
272  void resize(unsigned width, unsigned height);
273 
275  unsigned width() const { return _width; }
277  unsigned height() const { return _height; }
279  unsigned area() const { return _width * _height; }
280 
286  void fill(const Pixel &pixel);
290  void clear();
291 
299  void copyIn(const uint8_t *fb, const PixelConverter &conv);
307  void copyIn(const std::vector<uint8_t> &fb, const PixelConverter &conv) {
308  copyIn(fb.data(), conv);
309  }
310 
318  void copyOut(uint8_t *fb, const PixelConverter &conv) const;
326  void copyOut(std::vector<uint8_t> &fb, const PixelConverter &conv) const {
327  copyOut(fb.data(), conv);
328  }
329 
336  const Pixel &pixel(unsigned x, unsigned y) const {
337  assert(x < _width);
338  assert(y < _height);
339 
340  return pixels[y * _width + x];
341  }
342 
349  Pixel &pixel(unsigned x, unsigned y) {
350  assert(x < _width);
351  assert(y < _height);
352 
353  return pixels[y * _width + x];
354  }
355 
360  uint64_t getHash() const;
361 
368  static const FrameBuffer dummy;
369 
372 
373  protected:
375  unsigned _width;
377  unsigned _height;
378 };
379 
380 #endif // __BASE_FRAMEBUFFER_HH__
uint32_t fromPixel(uint8_t ch) const
Convert an 8-bit representation of a color into an external format.
Definition: framebuffer.hh:116
uint8_t blue
Definition: framebuffer.hh:68
Pixel toPixel(uint32_t word) const
Get the Pixel representation of a color word.
Definition: framebuffer.hh:137
const Pixel & pixel(unsigned x, unsigned y) const
Get a pixel from an (x, y) coordinate.
Definition: framebuffer.hh:336
Pixel toPixel(const uint8_t *rfb) const
Get a Pixel representation by reading a word from memory.
Definition: framebuffer.hh:144
static const FrameBuffer dummy
Static "dummy" frame buffer.
Definition: framebuffer.hh:368
Internal gem5 representation of a frame buffer.
Definition: framebuffer.hh:244
Channel ch_g
Green channel conversion helper.
Definition: framebuffer.hh:196
void resize(unsigned width, unsigned height)
Resize the frame buffer.
Definition: framebuffer.cc:143
uint32_t readWord(const uint8_t *p) const
Read a word of a given length and endianness from memory.
Definition: framebuffer.cc:79
unsigned length
Bytes per pixel when stored in memory (including padding)
Definition: framebuffer.hh:183
float factor
Scaling factor when converting to the full range of an 8-bit color channel.
Definition: framebuffer.hh:128
void copyIn(const uint8_t *fb, const PixelConverter &conv)
Fill the frame buffer with pixel data from an external buffer of the same width and height as this fr...
Definition: framebuffer.cc:167
void copyOut(uint8_t *fb, const PixelConverter &conv) const
Store the contents of this frame buffer in an external buffer of the same width and height as this fr...
Definition: framebuffer.cc:176
unsigned _width
Width in pixels.
Definition: framebuffer.hh:375
void clear()
Fill the frame buffer with black pixels.
Definition: framebuffer.cc:159
FrameBuffer()
Create an empty (0x0) frame buffer.
Definition: framebuffer.cc:116
std::vector< Pixel > pixels
Frame buffer backing store.
Definition: framebuffer.hh:371
Channel ch_b
Blue channel conversion helper.
Definition: framebuffer.hh:198
unsigned mask
Bit mask (after shifting)
Definition: framebuffer.hh:123
Channel(unsigned offset, unsigned width)
Definition: framebuffer.cc:71
static const PixelConverter rgb565_be
Predefined 16-bit RGB565 (red in least significant bits, big endian) conversion helper.
Definition: framebuffer.hh:212
Pixel(uint8_t _red, uint8_t _green, uint8_t _blue)
Definition: framebuffer.hh:63
Bitfield< 17 > os
Definition: misc.hh:804
unsigned depth
Number of bits used to represent one pixel value (excluding padding).
Definition: framebuffer.hh:189
PixelConverter(unsigned length, unsigned ro, unsigned go, unsigned bo, unsigned rw, unsigned gw, unsigned bw, ByteOrder byte_order=LittleEndianByteOrder)
Definition: framebuffer.cc:57
unsigned offset
Offset in bits.
Definition: framebuffer.hh:121
ByteOrder byte_order
Byte order when stored to memory.
Definition: framebuffer.hh:191
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:161
unsigned height() const
Frame buffer height in pixels.
Definition: framebuffer.hh:277
void copyOut(std::vector< uint8_t > &fb, const PixelConverter &conv) const
Store the contents of this frame buffer in an external buffer of the same width and height as this fr...
Definition: framebuffer.hh:326
ByteOrder
Definition: types.hh:204
static const PixelConverter rgba8888_le
Predefined 32-bit RGB (red in least significant bits, 8 bits/channel, little endian) conversion helpe...
Definition: framebuffer.hh:202
Channel ch_r
Red channel conversion helper.
Definition: framebuffer.hh:194
Pixel & pixel(unsigned x, unsigned y)
Get a pixel from an (x, y) coordinate.
Definition: framebuffer.hh:349
std::ostream & operator<<(std::ostream &os, const Pixel &pxl)
Definition: framebuffer.hh:227
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: framebuffer.cc:135
uint8_t green
Definition: framebuffer.hh:67
void fromPixel(uint8_t *rfb, const Pixel &pixel) const
Convert a pixel into a color word and store the resulting word in memory.
Definition: framebuffer.hh:159
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint8_t toPixel(uint32_t word) const
Get the value of a single color channel represented as an 8-bit number.
Definition: framebuffer.hh:108
Basic support for object serialization.
Definition: serialize.hh:220
void copyIn(const std::vector< uint8_t > &fb, const PixelConverter &conv)
Fill the frame buffer with pixel data from an external buffer of the same width and height as this fr...
Definition: framebuffer.hh:307
static const PixelConverter rgb565_le
Predefined 16-bit RGB565 (red in least significant bits, little endian) conversion helper...
Definition: framebuffer.hh:205
Bitfield< 25, 21 > bo
Definition: types.hh:64
std::ostream CheckpointOut
Definition: serialize.hh:67
unsigned width() const
Frame buffer width in pixels.
Definition: framebuffer.hh:275
Color channel conversion and scaling helper class.
Definition: framebuffer.hh:97
Bitfield< 9 > fb
Definition: miscregs.hh:1472
Bitfield< 4 > width
Definition: miscregs.hh:1383
Bitfield< 31 > rw
Definition: miscregs.hh:1449
uint64_t getHash() const
Create a hash of the image that can be used for quick comparisons.
Definition: framebuffer.cc:185
virtual ~FrameBuffer()
Definition: framebuffer.cc:121
uint8_t padding
Definition: framebuffer.hh:69
void fill(const Pixel &pixel)
Fill the frame buffer with a single pixel value.
Definition: framebuffer.cc:152
Configurable RGB pixel converter.
Definition: framebuffer.hh:91
Internal gem5 representation of a Pixel.
Definition: framebuffer.hh:58
unsigned _height
Height in pixels.
Definition: framebuffer.hh:377
void writeWord(uint8_t *p, uint32_t word) const
Write a word of a given length and endianness to memory.
Definition: framebuffer.cc:95
Bitfield< 0 > p
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: framebuffer.cc:127
bool to_number(const std::string &value, Pixel &retval)
Definition: framebuffer.hh:216
static const PixelConverter rgba8888_be
Predefined 32-bit RGB (red in least significant bits, 8 bits/channel, big endian) conversion helper...
Definition: framebuffer.hh:209
Bitfield< 1 > x
Definition: types.hh:105
uint32_t fromPixel(const Pixel &pixel) const
Convert a Pixel into a color word.
Definition: framebuffer.hh:149
unsigned area() const
Total number of pixels in frame buffer.
Definition: framebuffer.hh:279
uint8_t red
Definition: framebuffer.hh:66
bool operator==(const Pixel &lhs, const Pixel &rhs)
Definition: framebuffer.hh:73

Generated on Fri Jun 9 2017 13:03:40 for gem5 by doxygen 1.8.6