Bug 1639153 - Part 6.2: Establish dependency from tls for x86 callWithABI div/mod...
[gecko.git] / js / src / jit / EdgeCaseAnalysis.h
blob23de36744a4d6a2502dfd54821dd39e3241a5fad
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: set ts=8 sts=2 et sw=2 tw=80:
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef jit_EdgeCaseAnalysis_h
8 #define jit_EdgeCaseAnalysis_h
10 #include "jit/MIRGenerator.h"
12 namespace js {
13 namespace jit {
15 class MIRGraph;
17 class EdgeCaseAnalysis {
18 MIRGenerator* mir;
19 MIRGraph& graph;
21 public:
22 EdgeCaseAnalysis(MIRGenerator* mir, MIRGraph& graph);
23 MOZ_MUST_USE bool analyzeLate();
26 } // namespace jit
27 } // namespace js
29 #endif /* jit_EdgeCaseAnalysis_h */