summaryrefslogtreecommitdiffstats
path: root/js/src/jit/BaselineCacheIR.h
blob: 187d18e3a62ef74060f4066cbf8520abbd24d84f (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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 * vim: set ts=8 sts=4 et sw=4 tw=99:
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef jit_BaselineCacheIR_h
#define jit_BaselineCacheIR_h

#include "gc/Barrier.h"
#include "jit/CacheIR.h"

namespace js {
namespace jit {

class ICFallbackStub;
class ICStub;

// See the 'Sharing Baseline stub code' comment in CacheIR.h for a description
// of this class.
class CacheIRStubInfo
{
    CacheKind kind_;
    uint8_t stubDataOffset_;
    const uint8_t* code_;
    uint32_t length_;
    const uint8_t* gcTypes_;

    CacheIRStubInfo(CacheKind kind, uint32_t stubDataOffset, const uint8_t* code, uint32_t codeLength,
                    const uint8_t* gcTypes)
      : kind_(kind),
        stubDataOffset_(stubDataOffset),
        code_(code),
        length_(codeLength),
        gcTypes_(gcTypes)
    {
        MOZ_ASSERT(stubDataOffset_ == stubDataOffset, "stubDataOffset must fit in uint8_t");
    }

    CacheIRStubInfo(const CacheIRStubInfo&) = delete;
    CacheIRStubInfo& operator=(const CacheIRStubInfo&) = delete;

  public:
    CacheKind kind() const { return kind_; }

    const uint8_t* code() const { return code_; }
    uint32_t codeLength() const { return length_; }
    uint32_t stubDataOffset() const { return stubDataOffset_; }

    StubField::GCType gcType(uint32_t i) const { return (StubField::GCType)gcTypes_[i]; }

    static CacheIRStubInfo* New(CacheKind kind, uint32_t stubDataOffset,
                                const CacheIRWriter& writer);

    template <class T>
    js::GCPtr<T>& getStubField(ICStub* stub, uint32_t field) const;
};

void TraceBaselineCacheIRStub(JSTracer* trc, ICStub* stub, const CacheIRStubInfo* stubInfo);

ICStub* AttachBaselineCacheIRStub(JSContext* cx, const CacheIRWriter& writer, CacheKind kind,
                                  ICFallbackStub* stub);

} // namespace jit
} // namespace js

#endif /* jit_BaselineCacheIR_h */