зеркало из https://github.com/mozilla/gecko-dev.git
Bug 988619 - Fix bad includes bustage. r=njn over IRC to fix bustage in a CLOSED TREE
--HG-- rename : js/src/jit/ExecutionModeInlines.h => js/src/jit/ExecutionMode-inl.h
This commit is contained in:
Родитель
c3055e4c5c
Коммит
aa22e57dcf
|
@ -201,7 +201,7 @@ class FileKind(object):
|
|||
if filename.endswith('.cpp'):
|
||||
return FileKind.CPP
|
||||
|
||||
if filename.endswith(('inlines.h', '-inl.h', 'Inlines.h')):
|
||||
if filename.endswith(('inlines.h', '-inl.h')):
|
||||
return FileKind.INL_H
|
||||
|
||||
if filename.endswith('.h'):
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
#ifdef JSGC_GENERATIONAL
|
||||
# include "gc/Nursery.h"
|
||||
#endif
|
||||
#include "jit/ExecutionModeInlines.h"
|
||||
#include "jit/IonCaches.h"
|
||||
#include "jit/IonLinker.h"
|
||||
#include "jit/IonOptimizationLevels.h"
|
||||
|
@ -35,6 +34,7 @@
|
|||
|
||||
#include "jsboolinlines.h"
|
||||
|
||||
#include "jit/ExecutionMode-inl.h"
|
||||
#include "jit/shared/CodeGenerator-shared-inl.h"
|
||||
#include "vm/Interpreter-inl.h"
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
* 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_ExecutionModeInlines_h
|
||||
#define jit_ExecutionModeInlines_h
|
||||
#ifndef jit_ExecutionMode_inl_h
|
||||
#define jit_ExecutionMode_inl_h
|
||||
|
||||
#ifdef JS_ION
|
||||
|
||||
|
@ -100,4 +100,4 @@ CompilingOffThread(HandleScript script, ExecutionMode cmode)
|
|||
|
||||
#endif // JS_ION
|
||||
|
||||
#endif /* jit_ExecutionModeInlines_h */
|
||||
#endif /* jit_ExecutionMode_inl_h */
|
|
@ -23,7 +23,6 @@
|
|||
#include "jit/CodeGenerator.h"
|
||||
#include "jit/EdgeCaseAnalysis.h"
|
||||
#include "jit/EffectiveAddressAnalysis.h"
|
||||
#include "jit/ExecutionModeInlines.h"
|
||||
#include "jit/IonAnalysis.h"
|
||||
#include "jit/IonBuilder.h"
|
||||
#include "jit/IonOptimizationLevels.h"
|
||||
|
@ -48,6 +47,8 @@
|
|||
#include "jsinferinlines.h"
|
||||
#include "jsobjinlines.h"
|
||||
|
||||
#include "jit/ExecutionMode-inl.h"
|
||||
|
||||
using namespace js;
|
||||
using namespace js::jit;
|
||||
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
#include "frontend/SourceNotes.h"
|
||||
#include "jit/BaselineFrame.h"
|
||||
#include "jit/BaselineInspector.h"
|
||||
#include "jit/ExecutionModeInlines.h"
|
||||
#include "jit/Ion.h"
|
||||
#include "jit/IonOptimizationLevels.h"
|
||||
#include "jit/IonSpewer.h"
|
||||
|
@ -29,6 +28,7 @@
|
|||
#include "jsscriptinlines.h"
|
||||
|
||||
#include "jit/CompileInfo-inl.h"
|
||||
#include "jit/ExecutionMode-inl.h"
|
||||
|
||||
using namespace js;
|
||||
using namespace js::jit;
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
#include "assembler/assembler/MacroAssembler.h"
|
||||
#include "jit/arm/BaselineHelpers-arm.h"
|
||||
#include "jit/Bailouts.h"
|
||||
#include "jit/ExecutionModeInlines.h"
|
||||
#include "jit/IonFrames.h"
|
||||
#include "jit/IonLinker.h"
|
||||
#include "jit/IonSpewer.h"
|
||||
|
@ -19,6 +18,8 @@
|
|||
#endif
|
||||
#include "jit/VMFunctions.h"
|
||||
|
||||
#include "jit/ExecutionMode-inl.h"
|
||||
|
||||
using namespace js;
|
||||
using namespace js::jit;
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
|
||||
#include "jsnum.h"
|
||||
|
||||
#include "jit/ExecutionModeInlines.h"
|
||||
#include "jit/IonCaches.h"
|
||||
#include "jit/MIR.h"
|
||||
#include "jit/MIRGraph.h"
|
||||
|
@ -18,6 +17,7 @@
|
|||
|
||||
#include "jsscriptinlines.h"
|
||||
|
||||
#include "jit/ExecutionMode-inl.h"
|
||||
#include "jit/shared/CodeGenerator-shared-inl.h"
|
||||
|
||||
using namespace js;
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
#include "assembler/assembler/MacroAssembler.h"
|
||||
#include "jit/Bailouts.h"
|
||||
#include "jit/BaselineJIT.h"
|
||||
#include "jit/ExecutionModeInlines.h"
|
||||
#include "jit/IonFrames.h"
|
||||
#include "jit/IonLinker.h"
|
||||
#include "jit/IonSpewer.h"
|
||||
|
@ -22,6 +21,8 @@
|
|||
|
||||
#include "jsscriptinlines.h"
|
||||
|
||||
#include "jit/ExecutionMode-inl.h"
|
||||
|
||||
using namespace js;
|
||||
using namespace js::jit;
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
#include "jsobjinlines.h"
|
||||
#include "jsscriptinlines.h"
|
||||
|
||||
#include "jit/ExecutionModeInlines.h"
|
||||
#include "jit/ExecutionMode-inl.h"
|
||||
|
||||
using namespace js;
|
||||
using namespace js::gc;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
|
||||
#include "jsanalyze.h"
|
||||
|
||||
#include "jit/ExecutionModeInlines.h"
|
||||
#include "vm/ArrayObject.h"
|
||||
#include "vm/BooleanObject.h"
|
||||
#include "vm/NumberObject.h"
|
||||
|
@ -25,6 +24,8 @@
|
|||
|
||||
#include "jscntxtinlines.h"
|
||||
|
||||
#include "jit/ExecutionMode-inl.h"
|
||||
|
||||
namespace js {
|
||||
namespace types {
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче