summaryrefslogtreecommitdiffstats
path: root/src/code-stubs.cc
blob: 586c9480c4ce553cd78ad709a9fce47ab9f64b55 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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
139
140
141
142
143
144
145
146
// Copyright 2006-2008 the V8 project authors. All rights reserved.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions 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 "v8.h"

#include "bootstrapper.h"
#include "code-stubs.h"
#include "factory.h"
#include "macro-assembler.h"

namespace v8 {
namespace internal {

Handle<Code> CodeStub::GetCode() {
  uint32_t key = GetKey();
  int index = Heap::code_stubs()->FindEntry(key);
  if (index == NumberDictionary::kNotFound) {
    HandleScope scope;

    // Update the static counter each time a new code stub is generated.
    Counters::code_stubs.Increment();

    // Generate the new code.
    MacroAssembler masm(NULL, 256);

    // Nested stubs are not allowed for leafs.
    masm.set_allow_stub_calls(AllowsStubCalls());

    // Generate the code for the stub.
    masm.set_generating_stub(true);
    Generate(&masm);

    // Create the code object.
    CodeDesc desc;
    masm.GetCode(&desc);

    // Copy the generated code into a heap object, and store the major key.
    Code::Flags flags = Code::ComputeFlags(Code::STUB, InLoop());
    Handle<Code> code = Factory::NewCode(desc, NULL, flags, masm.CodeObject());
    code->set_major_key(MajorKey());

    // Add unresolved entries in the code to the fixup list.
    Bootstrapper::AddFixup(*code, &masm);

    LOG(CodeCreateEvent(Logger::STUB_TAG, *code, GetName()));
    Counters::total_stubs_code_size.Increment(code->instruction_size());

#ifdef ENABLE_DISASSEMBLER
    if (FLAG_print_code_stubs) {
#ifdef DEBUG
      Print();
#endif
      code->Disassemble(GetName());
      PrintF("\n");
    }
#endif

    // Update the dictionary and the root in Heap.
    Handle<NumberDictionary> dict =
        Factory::DictionaryAtNumberPut(
            Handle<NumberDictionary>(Heap::code_stubs()),
            key,
            code);
    Heap::public_set_code_stubs(*dict);
    index = Heap::code_stubs()->FindEntry(key);
  }
  ASSERT(index != NumberDictionary::kNotFound);

  return Handle<Code>(Code::cast(Heap::code_stubs()->ValueAt(index)));
}


const char* CodeStub::MajorName(CodeStub::Major major_key) {
  switch (major_key) {
    case CallFunction:
      return "CallFunction";
    case GenericBinaryOp:
      return "GenericBinaryOp";
    case SmiOp:
      return "SmiOp";
    case Compare:
      return "Compare";
    case RecordWrite:
      return "RecordWrite";
    case StackCheck:
      return "StackCheck";
    case UnarySub:
      return "UnarySub";
    case RevertToNumber:
      return "RevertToNumber";
    case ToBoolean:
      return "ToBoolean";
    case Instanceof:
      return "Instanceof";
    case CounterOp:
      return "CounterOp";
    case ArgumentsAccess:
      return "ArgumentsAccess";
    case Runtime:
      return "Runtime";
    case CEntry:
      return "CEntry";
    case JSEntry:
      return "JSEntry";
    case GetProperty:
      return "GetProperty";
    case SetProperty:
      return "SetProperty";
    case InvokeBuiltin:
      return "InvokeBuiltin";
    case ConvertToDouble:
      return "ConvertToDouble";
    case WriteInt32ToHeapNumber:
      return "WriteInt32ToHeapNumber";
    default:
      UNREACHABLE();
      return NULL;
  }
}


} }  // namespace v8::internal