2016-06-27 15:06:32 +00:00
|
|
|
// 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.
|
|
|
|
|
2018-04-09 19:11:22 +00:00
|
|
|
#include "src/heap/factory.h"
|
2016-09-01 12:01:33 +00:00
|
|
|
#include "src/isolate.h"
|
|
|
|
#include "src/objects-inl.h"
|
2016-06-27 15:06:32 +00:00
|
|
|
#include "test/cctest/cctest.h"
|
|
|
|
|
2017-08-11 11:22:28 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2016-06-27 15:06:32 +00:00
|
|
|
|
|
|
|
TEST(CodeLayoutWithoutUnwindingInfo) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
HandleScope handle_scope(CcTest::i_isolate());
|
|
|
|
|
|
|
|
// "Hello, World!" in ASCII.
|
2017-12-02 00:30:37 +00:00
|
|
|
byte buffer_array[13] = {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x2C, 0x20,
|
|
|
|
0x57, 0x6F, 0x72, 0x6C, 0x64, 0x21};
|
2016-06-27 15:06:32 +00:00
|
|
|
|
|
|
|
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.constant_pool_size = 0;
|
|
|
|
code_desc.instr_size = buffer_size;
|
|
|
|
code_desc.reloc_size = 0;
|
|
|
|
code_desc.origin = nullptr;
|
|
|
|
code_desc.unwinding_info = nullptr;
|
|
|
|
code_desc.unwinding_info_size = 0;
|
|
|
|
|
|
|
|
Handle<Code> code = CcTest::i_isolate()->factory()->NewCode(
|
2017-09-29 14:59:24 +00:00
|
|
|
code_desc, Code::STUB, Handle<Object>::null());
|
2016-06-27 15:06:32 +00:00
|
|
|
|
|
|
|
CHECK(!code->has_unwinding_info());
|
2018-04-05 10:58:15 +00:00
|
|
|
CHECK_EQ(code->raw_instruction_size(), buffer_size);
|
2018-04-13 22:28:05 +00:00
|
|
|
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);
|
2016-06-27 15:06:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(CodeLayoutWithUnwindingInfo) {
|
|
|
|
CcTest::InitializeVM();
|
|
|
|
HandleScope handle_scope(CcTest::i_isolate());
|
|
|
|
|
|
|
|
// "Hello, World!" in ASCII.
|
2017-12-02 00:30:37 +00:00
|
|
|
byte buffer_array[13] = {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x2C, 0x20,
|
|
|
|
0x57, 0x6F, 0x72, 0x6C, 0x64, 0x21};
|
2016-06-27 15:06:32 +00:00
|
|
|
|
|
|
|
// "JavaScript" in ASCII.
|
2017-12-02 00:30:37 +00:00
|
|
|
byte unwinding_info_array[10] = {0x4A, 0x61, 0x76, 0x61, 0x53,
|
2016-06-27 15:06:32 +00:00
|
|
|
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.constant_pool_size = 0;
|
|
|
|
code_desc.instr_size = buffer_size;
|
|
|
|
code_desc.reloc_size = 0;
|
|
|
|
code_desc.origin = nullptr;
|
|
|
|
code_desc.unwinding_info = unwinding_info;
|
|
|
|
code_desc.unwinding_info_size = unwinding_info_size;
|
|
|
|
|
|
|
|
Handle<Code> code = CcTest::i_isolate()->factory()->NewCode(
|
2017-09-29 14:59:24 +00:00
|
|
|
code_desc, Code::STUB, Handle<Object>::null());
|
2016-06-27 15:06:32 +00:00
|
|
|
|
|
|
|
CHECK(code->has_unwinding_info());
|
2018-04-05 10:58:15 +00:00
|
|
|
CHECK_EQ(code->raw_instruction_size(), buffer_size);
|
2018-04-13 22:28:05 +00:00
|
|
|
CHECK_EQ(0, memcmp(reinterpret_cast<void*>(code->raw_instruction_start()),
|
|
|
|
buffer, buffer_size));
|
2016-06-27 15:06:32 +00:00
|
|
|
CHECK(IsAligned(code->GetUnwindingInfoSizeOffset(), 8));
|
|
|
|
CHECK_EQ(code->unwinding_info_size(), unwinding_info_size);
|
2018-04-13 22:28:05 +00:00
|
|
|
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(),
|
2016-06-27 15:06:32 +00:00
|
|
|
Code::kHeaderSize + RoundUp(buffer_size, kInt64Size) + kInt64Size +
|
2018-04-13 22:28:05 +00:00
|
|
|
unwinding_info_size);
|
2016-06-27 15:06:32 +00:00
|
|
|
}
|
2017-08-11 11:22:28 +00:00
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|