OLD | NEW |
(Empty) | |
| 1 #include <string> |
| 2 #include <vector> |
| 3 #include <stdint.h> |
| 4 |
| 5 namespace hack { |
| 6 |
| 7 bool CharToDigit(char c, uint8_t* digit) { |
| 8 if (c >= '0' && c <= '9') { |
| 9 *digit = c - '0'; |
| 10 } else if (c >= 'a' && c < 'a' + 16 - 10) { |
| 11 *digit = c - 'a' + 10; |
| 12 } else if (c >= 'A' && c < 'A' + 16 - 10) { |
| 13 *digit = c - 'A' + 10; |
| 14 } else { |
| 15 return false; |
| 16 } |
| 17 return true; |
| 18 } |
| 19 |
| 20 bool HexStringToBytes(const std::string& input, std::vector<uint8_t>* output) { |
| 21 size_t count = input.size(); |
| 22 if (count == 0 || (count % 2) != 0) |
| 23 return false; |
| 24 for (uintptr_t i = 0; i < count / 2; ++i) { |
| 25 uint8_t msb = 0; // most significant 4 bits |
| 26 uint8_t lsb = 0; // least significant 4 bits |
| 27 if (!CharToDigit(input[i * 2], &msb) || |
| 28 !CharToDigit(input[i * 2 + 1], &lsb)) |
| 29 return false; |
| 30 output->push_back((msb << 4) | lsb); |
| 31 } |
| 32 return true; |
| 33 } |
| 34 |
| 35 void f() { |
| 36 // Make sure we have 1MB of code, so that the string accesses above have to |
| 37 // use adrp instead of adr. |
| 38 __asm__(".zero 1048576"); |
| 39 } |
| 40 |
| 41 } |
OLD | NEW |