| Index: src/arm64/eh-frame-arm64.h
|
| diff --git a/src/arm64/eh-frame-arm64.h b/src/arm64/eh-frame-arm64.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c1ef38483b43d95eaef930df33b44aa904be3ece
|
| --- /dev/null
|
| +++ b/src/arm64/eh-frame-arm64.h
|
| @@ -0,0 +1,38 @@
|
| +// Copyright 2016 the V8 project authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef V8_X64_UNWINDING_INFO_X64_H
|
| +#define V8_X64_UNWINDING_INFO_X64_H
|
| +
|
| +#include "src/globals.h"
|
| +
|
| +namespace v8 {
|
| +namespace internal {
|
| +
|
| +static const int kInitialCFARegister = 0x1d;
|
| +static const int kInitialCFAOffset = 0;
|
| +static const int kDataAlignmentFactor = 8;
|
| +static const int kInitialStateOffsetInCIE = 19;
|
| +
|
| +// The code and data alignments are a bit unorthodox, but they suit our purpose.
|
| +static const byte kCIE[] = {
|
| + 0x14, 0x00, 0x00, 0x00, // Size of the CIE excluding this field
|
| + 0x00, 0x00, 0x00, 0x00, // CIE identifier, always 0
|
| + 0x03, // CIE version 3
|
| + 0x7a, 0x4c, 0x52, 0x00, // Augmentation string zLR
|
| + 0x01, // Code alignment factor: 1
|
| + 0x08, // Data alignment factor: 8
|
| + 0x1e, // Return address register: lr (r30)
|
| + 0x02, // Length of augmentation data
|
| + 0xff, // No LSDA
|
| + 0x1b, // FDE encoding: DW_EH_PE_sdata4 | DW_EH_PE_pcrel
|
| + // Initial state
|
| + 0x0c, 0x1d, 0x00, // CFA @ fp+0
|
| + 0x08, 0x1e, // lr is valid
|
| +};
|
| +
|
| +} // namespace internal
|
| +} // namespace v8
|
| +
|
| +#endif
|
|
|