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/eh-frame.h" |
| 6 |
| 7 namespace v8 { |
| 8 namespace internal { |
| 9 |
| 10 static const int kR0DwarfCode = 0; |
| 11 static const int kFpDwarfCode = 11; |
| 12 static const int kSpDwarfCode = 13; |
| 13 static const int kLrDwarfCode = 14; |
| 14 |
| 15 STATIC_CONST_MEMBER_DEFINITION const int EhFrameWriter::kDataAlignmentFactor = |
| 16 -4; |
| 17 |
| 18 void EhFrameWriter::WriteReturnAddressRegisterCode() { |
| 19 WriteULEB128(RegisterToDwarfCode(lr)); |
| 20 } |
| 21 |
| 22 void EhFrameWriter::WriteInitialState() { |
| 23 SetBaseAddressRegisterAndOffset(fp, 0); |
| 24 RegisterIsValid(lr); |
| 25 } |
| 26 |
| 27 // static |
| 28 const char* EhFrameWriter::DwarfRegisterCodeToString(int code) { |
| 29 switch (code) { |
| 30 case kFpDwarfCode: |
| 31 return "fp"; |
| 32 case kSpDwarfCode: |
| 33 return "sp"; |
| 34 case kLrDwarfCode: |
| 35 return "lr"; |
| 36 default: |
| 37 UNIMPLEMENTED(); |
| 38 return nullptr; |
| 39 } |
| 40 } |
| 41 |
| 42 // static |
| 43 int EhFrameWriter::RegisterToDwarfCode(Register name) { |
| 44 switch (name.code()) { |
| 45 case Register::kCode_fp: |
| 46 return kFpDwarfCode; |
| 47 case Register::kCode_sp: |
| 48 return kSpDwarfCode; |
| 49 case Register::kCode_lr: |
| 50 return kLrDwarfCode; |
| 51 case Register::kCode_r0: |
| 52 return kR0DwarfCode; |
| 53 default: |
| 54 UNIMPLEMENTED(); |
| 55 return -1; |
| 56 } |
| 57 } |
| 58 |
| 59 } // namespace internal |
| 60 } // namespace v8 |
OLD | NEW |