Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Side by Side Diff: src/arm/eh-frame-arm.cc

Issue 2023503002: Reland Implement .eh_frame writer and disassembler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@eh-frame-base
Patch Set: SaveRegisterToStack => RegisterSavedToStack. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/arm64/eh-frame-arm64.cc » ('j') | src/eh-frame.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698