scons: Pull bytesToCppArray into build_tools.

This mechanism will be used by various small scripts which perform steps
of the build.

Change-Id: I91d842c022d6f568715e8a10310894cb8afbab20
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/49398
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Hoa Nguyen <hoanguyen@ucdavis.edu>
Maintainer: Gabe Black <gabe.black@gmail.com>
This commit is contained in:
Gabe Black
2021-08-14 06:36:39 -07:00
parent 750a809169
commit 64c9e07498
4 changed files with 43 additions and 18 deletions

View File

@@ -40,7 +40,7 @@
import os.path
from gem5_scons import Transform, MakeAction
from gem5_scons.util import bytesToCppArray
from blob import bytesToCppArray
from code_formatter import code_formatter

View File

@@ -38,8 +38,6 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import array
import functools
import itertools
import re
import sys
@@ -111,17 +109,3 @@ def compareVersions(v1, v2):
if n1 > n2: return 1
return 0
def bytesToCppArray(code, symbol, data):
'''
Output an array of bytes to a code formatter as a c++ array declaration.
'''
code('const std::uint8_t ${symbol}[] = {')
code.indent()
step = 16
for i in range(0, len(data), step):
x = array.array('B', data[i:i+step])
strs = map(lambda i: f'{i},', x)
code(functools.reduce(lambda x, y: x + y, strs))
code.dedent()
code('};')