2 * Copyright (C) 2012, 2014, 2016 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #ifndef GCAwareJITStubRoutine_h
27 #define GCAwareJITStubRoutine_h
31 #include "JITStubRoutine.h"
34 #include "WriteBarrier.h"
35 #include <wtf/RefCounted.h>
36 #include <wtf/Vector.h>
40 class JITStubRoutineSet;
42 // Use this stub routine if you know that your code might be on stack when
43 // either GC or other kinds of stub deletion happen. Basicaly, if your stub
44 // routine makes calls (either to JS code or to C++ code) then you should
45 // assume that it's possible for that JS or C++ code to do something that
46 // causes the system to try to delete your routine. Using this routine type
47 // ensures that the actual deletion is delayed until the GC proves that the
48 // routine is no longer running. You can also subclass this routine if you
49 // want to mark additional objects during GC in those cases where the
50 // routine is known to be executing, or if you want to force this routine to
51 // keep other routines alive (for example due to the use of a slow-path
52 // list which does not get reclaimed all at once).
53 class GCAwareJITStubRoutine : public JITStubRoutine {
55 GCAwareJITStubRoutine(const MacroAssemblerCodeRef&, VM&);
56 virtual ~GCAwareJITStubRoutine();
58 void markRequiredObjects(SlotVisitor& visitor)
60 markRequiredObjectsInternal(visitor);
66 void observeZeroRefCount() override;
68 virtual void markRequiredObjectsInternal(SlotVisitor&);
71 friend class JITStubRoutineSet;
73 bool m_mayBeExecuting;
77 // Use this if you want to mark one additional object during GC if your stub
78 // routine is known to be executing.
79 class MarkingGCAwareJITStubRoutine : public GCAwareJITStubRoutine {
81 MarkingGCAwareJITStubRoutine(
82 const MacroAssemblerCodeRef&, VM&, const JSCell* owner, const Vector<JSCell*>&);
83 virtual ~MarkingGCAwareJITStubRoutine();
86 void markRequiredObjectsInternal(SlotVisitor&) override;
89 Vector<WriteBarrier<JSCell>> m_cells;
93 // The stub has exception handlers in it. So it clears itself from exception
94 // handling table when it dies. It also frees space in CodeOrigin table
95 // for new exception handlers to use the same CallSiteIndex.
96 class GCAwareJITStubRoutineWithExceptionHandler : public MarkingGCAwareJITStubRoutine {
98 typedef GCAwareJITStubRoutine Base;
100 GCAwareJITStubRoutineWithExceptionHandler(const MacroAssemblerCodeRef&, VM&, const JSCell* owner, const Vector<JSCell*>&, CodeBlock*, CallSiteIndex);
102 void aboutToDie() override;
103 void observeZeroRefCount() override;
106 CodeBlock* m_codeBlockWithExceptionHandler;
107 CallSiteIndex m_exceptionHandlerCallSiteIndex;
110 // Helper for easily creating a GC-aware JIT stub routine. For the varargs,
111 // pass zero or more JSCell*'s. This will either create a JITStubRoutine, a
112 // GCAwareJITStubRoutine, or an ObjectMarkingGCAwareJITStubRoutine as
113 // appropriate. Generally you only need to pass pointers that will be used
114 // after the first call to C++ or JS.
116 // PassRefPtr<JITStubRoutine> createJITStubRoutine(
117 // const MacroAssemblerCodeRef& code,
119 // const JSCell* owner,
123 // Note that we don't actually use C-style varargs because that leads to
124 // strange type-related problems. For example it would preclude us from using
125 // our custom of passing '0' as NULL pointer. Besides, when I did try to write
126 // this function using varargs, I ended up with more code than this simple
129 PassRefPtr<JITStubRoutine> createJITStubRoutine(
130 const MacroAssemblerCodeRef&, VM&, const JSCell* owner, bool makesCalls,
131 const Vector<JSCell*>& = { },
132 CodeBlock* codeBlockForExceptionHandlers = nullptr, CallSiteIndex exceptionHandlingCallSiteIndex = CallSiteIndex(std::numeric_limits<unsigned>::max()));
136 #endif // ENABLE(JIT)
138 #endif // GCAwareJITStubRoutine_h