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

Side by Side Diff: src/arm64/eh-frame-arm64.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 kX0DwarfCode = 0;
11 static const int kFpDwarfCode = 29;
12 static const int kLrDwarfCode = 30;
13 static const int kSpDwarfCode = 31;
14
15 STATIC_CONST_MEMBER_DEFINITION const int EhFrameWriter::kDataAlignmentFactor =
16 -8;
17
18 void EhFrameWriter::WriteReturnAddressRegisterCode() {
19 WriteULEB128(RegisterToDwarfCode(x30));
20 }
21
22 void EhFrameWriter::WriteInitialState() {
23 SetBaseAddressRegisterAndOffset(x29, 0);
24 RegisterIsValid(x30);
25 }
26
27 // static
28 const char* EhFrameWriter::DwarfRegisterCodeToString(int code) {
29 switch (code) {
30 case kFpDwarfCode:
31 return "fp";
32 case kLrDwarfCode:
33 return "lr";
34 case kSpDwarfCode:
35 return "sp"; // This could be zr as well
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_x29:
46 return kFpDwarfCode;
47 case Register::kCode_x30:
48 return kLrDwarfCode;
49 case Register::kCode_x31:
50 return kSpDwarfCode;
51 case Register::kCode_x0:
52 return kX0DwarfCode;
53 default:
54 UNIMPLEMENTED();
55 return -1;
56 }
57 }
58
59 } // namespace internal
60 } // namespace v8
OLDNEW
« no previous file with comments | « src/arm/eh-frame-arm.cc ('k') | src/codegen.h » ('j') | src/eh-frame.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698