test-code-layout.cc 3.83 KB
Newer Older
1 2 3 4
// 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.

5
#include "src/heap/factory.h"
6 7
#include "src/isolate.h"
#include "src/objects-inl.h"
8 9
#include "test/cctest/cctest.h"

10 11
namespace v8 {
namespace internal {
12 13 14 15 16 17

TEST(CodeLayoutWithoutUnwindingInfo) {
  CcTest::InitializeVM();
  HandleScope handle_scope(CcTest::i_isolate());

  // "Hello, World!" in ASCII.
18 19
  byte buffer_array[13] = {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x2C, 0x20,
                           0x57, 0x6F, 0x72, 0x6C, 0x64, 0x21};
20 21 22 23 24 25 26 27

  byte* buffer = &buffer_array[0];
  int buffer_size = sizeof(buffer_array);

  CodeDesc code_desc;
  code_desc.buffer = buffer;
  code_desc.buffer_size = buffer_size;
  code_desc.instr_size = buffer_size;
28 29 30 31 32 33 34 35 36
  code_desc.safepoint_table_offset = buffer_size;
  code_desc.safepoint_table_size = 0;
  code_desc.handler_table_offset = buffer_size;
  code_desc.handler_table_size = 0;
  code_desc.constant_pool_offset = buffer_size;
  code_desc.constant_pool_size = 0;
  code_desc.code_comments_offset = buffer_size;
  code_desc.code_comments_size = 0;
  code_desc.reloc_offset = buffer_size;
37 38 39
  code_desc.reloc_size = 0;
  code_desc.unwinding_info = nullptr;
  code_desc.unwinding_info_size = 0;
40
  code_desc.origin = nullptr;
41 42

  Handle<Code> code = CcTest::i_isolate()->factory()->NewCode(
43
      code_desc, Code::STUB, Handle<Object>::null());
44 45

  CHECK(!code->has_unwinding_info());
46
  CHECK_EQ(code->raw_instruction_size(), buffer_size);
47 48 49 50
  CHECK_EQ(0, memcmp(reinterpret_cast<void*>(code->raw_instruction_start()),
                     buffer, buffer_size));
  CHECK_EQ(code->raw_instruction_end() - code->address(),
           Code::kHeaderSize + buffer_size);
51 52 53 54 55 56 57
}

TEST(CodeLayoutWithUnwindingInfo) {
  CcTest::InitializeVM();
  HandleScope handle_scope(CcTest::i_isolate());

  // "Hello, World!" in ASCII.
58 59
  byte buffer_array[13] = {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x2C, 0x20,
                           0x57, 0x6F, 0x72, 0x6C, 0x64, 0x21};
60 61

  // "JavaScript" in ASCII.
62
  byte unwinding_info_array[10] = {0x4A, 0x61, 0x76, 0x61, 0x53,
63 64 65 66 67 68 69 70 71 72 73
                                   0x63, 0x72, 0x69, 0x70, 0x74};

  byte* buffer = &buffer_array[0];
  int buffer_size = sizeof(buffer_array);
  byte* unwinding_info = &unwinding_info_array[0];
  int unwinding_info_size = sizeof(unwinding_info_array);

  CodeDesc code_desc;
  code_desc.buffer = buffer;
  code_desc.buffer_size = buffer_size;
  code_desc.instr_size = buffer_size;
74 75 76 77 78 79 80 81 82
  code_desc.safepoint_table_offset = buffer_size;
  code_desc.safepoint_table_size = 0;
  code_desc.handler_table_offset = buffer_size;
  code_desc.handler_table_size = 0;
  code_desc.constant_pool_offset = buffer_size;
  code_desc.constant_pool_size = 0;
  code_desc.code_comments_offset = buffer_size;
  code_desc.code_comments_size = 0;
  code_desc.reloc_offset = buffer_size;
83 84 85
  code_desc.reloc_size = 0;
  code_desc.unwinding_info = unwinding_info;
  code_desc.unwinding_info_size = unwinding_info_size;
86
  code_desc.origin = nullptr;
87 88

  Handle<Code> code = CcTest::i_isolate()->factory()->NewCode(
89
      code_desc, Code::STUB, Handle<Object>::null());
90 91

  CHECK(code->has_unwinding_info());
92
  CHECK_EQ(code->raw_instruction_size(), buffer_size);
93 94
  CHECK_EQ(0, memcmp(reinterpret_cast<void*>(code->raw_instruction_start()),
                     buffer, buffer_size));
95 96
  CHECK(IsAligned(code->GetUnwindingInfoSizeOffset(), 8));
  CHECK_EQ(code->unwinding_info_size(), unwinding_info_size);
97 98 99 100 101
  CHECK(IsAligned(code->unwinding_info_start(), 8));
  CHECK_EQ(memcmp(reinterpret_cast<void*>(code->unwinding_info_start()),
                  unwinding_info, unwinding_info_size),
           0);
  CHECK_EQ(code->unwinding_info_end() - code->address(),
102
           Code::kHeaderSize + RoundUp(buffer_size, kInt64Size) + kInt64Size +
103
               unwinding_info_size);
104
}
105 106 107

}  // namespace internal
}  // namespace v8