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

Side by Side Diff: src/x64/eh-frame-x64.h

Issue 2023503002: Reland Implement .eh_frame writer and disassembler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@eh-frame-base
Patch Set: Improve disassembler, get rid of PatchProcedureBoundariesInEhFrame. 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 #ifndef V8_X64_UNWINDING_INFO_X64_H
6 #define V8_X64_UNWINDING_INFO_X64_H
7
8 #include "src/globals.h"
9
10 namespace v8 {
11 namespace internal {
12
13 static const int kInitialCFARegister = 7;
14 static const int kInitialCFAOffset = kInt64Size;
15 static const int kDataAlignmentFactor = -8;
16 static const int kInitialStateOffsetInCIE = 19;
17
18 static const byte kCIE[] = {
19 0x18, 0x00, 0x00, 0x00, // Size of the CIE
20 0x00, 0x00, 0x00, 0x00, // CIE identifier, always 0
21 0x03, // CIE version 3
22 0x7a, 0x4c, 0x52, 0x00, // Augmentation string zLR
23 0x01, // Code alignment factor: 1
24 0x78, // Data alignment factor: -8
25 0x10, // Return address register: rip (r16)
26 0x02, // Length of augmentation data
27 0xff, // No LSDA
28 0x1b, // FDE encoding: DW_EH_PE_sdata4 | DW_EH_PE_pcrel
29 // Initial state
30 0x0c, 0x07, 0x08, // CFA @ rsp+8
31 0x90, 0x01, // rip saved at CFA-8
32 };
33
34 } // namespace internal
35 } // namespace v8
36
37 #endif
OLDNEW
« src/eh-frame.cc ('K') | « src/v8.gyp ('k') | src/x64/eh-frame-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698