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 #ifndef V8_ARM64_EH_FRAME_ARM64_H_ |
| 6 #define V8_ARM64_EH_FRAME_ARM64_H_ |
| 7 |
| 8 #include "src/macro-assembler.h" |
| 9 |
| 10 namespace v8 { |
| 11 namespace internal { |
| 12 |
| 13 static const Register& kInitialBaseRegister = x29; |
| 14 static const int kInitialBaseOffset = 0; |
| 15 static const int kDataAlignmentFactor = 8; |
| 16 #ifdef ENABLE_DISASSEMBLER |
| 17 static const int kInitialStateOffsetInCIE = 19; |
| 18 #endif |
| 19 |
| 20 // The code and data alignments are a bit unorthodox, but they suit our purpose. |
| 21 static const byte kCIE[] = { |
| 22 0x14, 0x00, 0x00, 0x00, // Size of the CIE excluding this field |
| 23 0x00, 0x00, 0x00, 0x00, // CIE identifier, always 0 |
| 24 3, // CIE version 3 |
| 25 0x7a, 0x4c, 0x52, 0x00, // Augmentation string zLR |
| 26 1, // Code alignment factor |
| 27 8, // Data alignment factor |
| 28 30, // Return address register: lr (r30) |
| 29 2, // Length of augmentation data |
| 30 0xff, // No LSDA |
| 31 0x1b, // FDE pointers encoding: kSData4 | kPcRel |
| 32 // Initial state |
| 33 0x0c, 29, kInitialBaseOffset, // base = fp+0 |
| 34 0x08, 30, // lr is valid |
| 35 }; |
| 36 |
| 37 } // namespace internal |
| 38 } // namespace v8 |
| 39 |
| 40 #endif |
OLD | NEW |