test-code-stubs-x64.cc 4.84 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
// Copyright 2013 the V8 project authors. All rights reserved.
// Rrdistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Rrdistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Rrdistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include <stdlib.h>

30
#include "src/v8.h"
31

32
#include "src/base/platform/platform.h"
33
#include "src/code-stubs.h"
34
#include "src/heap/factory.h"
35
#include "src/macro-assembler.h"
36
#include "src/objects-inl.h"
37
#include "src/register-configuration.h"
38 39
#include "test/cctest/cctest.h"
#include "test/cctest/test-code-stubs.h"
40
#include "test/common/assembler-tester.h"
41

42 43
namespace v8 {
namespace internal {
44
namespace test_code_stubs_x64 {
45

46
#define __ masm.
47 48 49 50

ConvertDToIFunc MakeConvertDToIFuncTrampoline(Isolate* isolate,
                                              Register destination_reg) {
  HandleScope handles(isolate);
51 52 53 54

  size_t allocated;
  byte* buffer = AllocateAssemblerBuffer(&allocated);
  MacroAssembler masm(isolate, buffer, static_cast<int>(allocated),
55
                      v8::internal::CodeObjectRequired::kYes);
56

57
  Handle<Code> code = BUILTIN_CODE(isolate, DoubleToI);
58
  Address start = code->InstructionStart();
59

60 61 62 63 64
  __ pushq(rbx);
  __ pushq(rcx);
  __ pushq(rdx);
  __ pushq(rsi);
  __ pushq(rdi);
65

66
  const RegisterConfiguration* config = RegisterConfiguration::Default();
67 68 69

  // Save registers make sure they don't get clobbered.
  int reg_num = 0;
70 71 72
  for (; reg_num < config->num_allocatable_general_registers(); ++reg_num) {
    Register reg =
        Register::from_code(config->GetAllocatableGeneralCode(reg_num));
73
    if (reg != rsp && reg != rbp && reg != destination_reg) {
74
      __ pushq(reg);
75 76 77
    }
  }

78
  // Put the double argument into the designated double argument slot.
79
  __ subq(rsp, Immediate(kDoubleSize));
80
  __ Movsd(MemOperand(rsp, 0), xmm0);
81 82 83

  // Call through to the actual stub
  __ Call(start, RelocInfo::EXTERNAL_REFERENCE);
84
  __ movl(destination_reg, MemOperand(rsp, 0));
85 86 87 88 89

  __ addq(rsp, Immediate(kDoubleSize));

  // Make sure no registers have been unexpectedly clobbered
  for (--reg_num; reg_num >= 0; --reg_num) {
90 91
    Register reg =
        Register::from_code(config->GetAllocatableGeneralCode(reg_num));
92
    if (reg != rsp && reg != rbp && reg != destination_reg) {
93
      __ cmpq(reg, MemOperand(rsp, 0));
94
      __ Assert(equal, AbortReason::kRegisterWasClobbered);
95 96 97 98 99 100
      __ addq(rsp, Immediate(kPointerSize));
    }
  }

  __ movq(rax, destination_reg);

101 102 103 104 105
  __ popq(rdi);
  __ popq(rsi);
  __ popq(rdx);
  __ popq(rcx);
  __ popq(rbx);
106 107 108 109

  __ ret(0);

  CodeDesc desc;
110
  masm.GetCode(isolate, &desc);
111
  MakeAssemblerBufferExecutable(buffer, allocated);
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
  return reinterpret_cast<ConvertDToIFunc>(
      reinterpret_cast<intptr_t>(buffer));
}

#undef __


static Isolate* GetIsolateFrom(LocalContext* context) {
  return reinterpret_cast<Isolate*>((*context)->GetIsolate());
}


TEST(ConvertDToI) {
  CcTest::InitializeVM();
  LocalContext context;
  Isolate* isolate = GetIsolateFrom(&context);
  HandleScope scope(isolate);

#if DEBUG
  // Verify that the tests actually work with the C version. In the release
  // code, the compiler optimizes it away because it's all constant, but does it
  // wrong, triggering an assert on gcc.
  RunAllTruncationTests(&ConvertDToICVersion);
#endif

  Register dest_registers[] = {rax, rbx, rcx, rdx, rsi, rdi, r8, r9};

139 140 141
  for (size_t d = 0; d < sizeof(dest_registers) / sizeof(Register); d++) {
    RunAllTruncationTests(
        MakeConvertDToIFuncTrampoline(isolate, dest_registers[d]));
142 143
  }
}
144

145
}  // namespace test_code_stubs_x64
146 147
}  // namespace internal
}  // namespace v8