js/src/jit/EdgeCaseAnalysis.h

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:c766b890bb64
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 * vim: set ts=8 sts=4 et sw=4 tw=99:
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/. */
6
7 #ifndef jit_EdgeCaseAnalysis_h
8 #define jit_EdgeCaseAnalysis_h
9
10 #include "jit/MIRGenerator.h"
11
12 namespace js {
13 namespace jit {
14
15 class MIRGraph;
16
17 class EdgeCaseAnalysis
18 {
19 MIRGenerator *mir;
20 MIRGraph &graph;
21
22 public:
23 EdgeCaseAnalysis(MIRGenerator *mir, MIRGraph &graph);
24 bool analyzeLate();
25 };
26
27
28 } // namespace jit
29 } // namespace js
30
31 #endif /* jit_EdgeCaseAnalysis_h */

mercurial