diff options
author | Nico Rieck <nico.rieck@gmail.com> | 2013-04-12 04:07:13 +0000 |
---|---|---|
committer | Nico Rieck <nico.rieck@gmail.com> | 2013-04-12 04:07:13 +0000 |
commit | e85c663f1942f33efa44a1e6a862a8a766372786 (patch) | |
tree | eff5e8d8cb2686c7bd7931468073b2f906b6c71b /llvm/test/Scripts/common_dump.py | |
parent | ba848e3bca9aa8a80272bea5a7b35e6c269200f9 (diff) | |
download | bcm5719-llvm-e85c663f1942f33efa44a1e6a862a8a766372786.tar.gz bcm5719-llvm-e85c663f1942f33efa44a1e6a862a8a766372786.zip |
Remove obsolete object file dumpers
llvm-svn: 179362
Diffstat (limited to 'llvm/test/Scripts/common_dump.py')
-rw-r--r-- | llvm/test/Scripts/common_dump.py | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/llvm/test/Scripts/common_dump.py b/llvm/test/Scripts/common_dump.py deleted file mode 100644 index fd58993c058..00000000000 --- a/llvm/test/Scripts/common_dump.py +++ /dev/null @@ -1,48 +0,0 @@ -def dataToHex(d): - """ Convert the raw data in 'd' to an hex string with a space every 4 bytes. - """ - bytes = [] - for i,c in enumerate(d): - byte = ord(c) - hex_byte = hex(byte)[2:] - if byte <= 0xf: - hex_byte = '0' + hex_byte - if i % 4 == 3: - hex_byte += ' ' - bytes.append(hex_byte) - return ''.join(bytes).strip() - -def dataToHexUnified(d): - """ Convert the raw data in 'd' to an hex string with a space every 4 bytes. - Each 4byte number is prefixed with 0x for easy sed/rx - Fixme: convert all MC tests to use this routine instead of the above - """ - bytes = [] - for i,c in enumerate(d): - byte = ord(c) - hex_byte = hex(byte)[2:] - if byte <= 0xf: - hex_byte = '0' + hex_byte - if i % 4 == 0: - hex_byte = '0x' + hex_byte - if i % 4 == 3: - hex_byte += ' ' - bytes.append(hex_byte) - return ''.join(bytes).strip() - - -def HexDump(valPair): - """ - 1. do not print 'L' - 2. Handle negatives and large numbers by mod (2^numBits) - 3. print fixed length, prepend with zeros. - Length is exactly 2+(numBits/4) - 4. Do print 0x Why? - so that they can be easily distinguished using sed/rx - """ - val, numBits = valPair - assert 0 <= val < (1 << numBits) - - val = val & (( 1 << numBits) - 1) - newFmt = "0x%0" + "%d" % (numBits / 4) + "x" - return newFmt % val |