OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "src/arm64/eh-frame-arm64.h" |
| 6 |
| 7 namespace v8 { |
| 8 namespace internal { |
| 9 |
| 10 static const int kFpDwarfCode = 29; |
| 11 static const int kLrDwarfCode = 30; |
| 12 static const int kSpDwarfCode = 31; |
| 13 |
| 14 const char* DwarfRegisterCodeToString(int code) { |
| 15 switch (code) { |
| 16 case kFpDwarfCode: |
| 17 return "fp"; |
| 18 case kLrDwarfCode: |
| 19 return "lr"; |
| 20 case kSpDwarfCode: |
| 21 return "sp"; // This could be zr as well |
| 22 default: |
| 23 UNIMPLEMENTED(); |
| 24 return nullptr; |
| 25 } |
| 26 } |
| 27 |
| 28 int RegisterToDwarfCode(Register name) { |
| 29 switch (name.reg_code) { |
| 30 case Register::kCode_x29: |
| 31 return kFpDwarfCode; |
| 32 case Register::kCode_x30: |
| 33 return kLrDwarfCode; |
| 34 case Register::kCode_x31: |
| 35 return kSpDwarfCode; |
| 36 default: |
| 37 UNIMPLEMENTED(); |
| 38 return -1; |
| 39 } |
| 40 } |
| 41 |
| 42 } // namespace internal |
| 43 } // namespace v8 |
OLD | NEW |