blob: 60b6e0a1bea8d4771913b52233a95d2fb769bbcc [file] [log] [blame]
/* -*- 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_ParallelArrayAnalysis_h
#define jit_ParallelArrayAnalysis_h
#include "MIR.h"
#include "CompileInfo.h"
namespace js {
class StackFrame;
namespace jit {
class MIRGraph;
class AutoDestroyAllocator;
// Determines whether a function is compatible for parallel execution.
// Removes basic blocks containing unsafe MIR operations from the
// graph and replaces them with MParBailout blocks.
class ParallelArrayAnalysis
{
MIRGenerator *mir_;
MIRGraph &graph_;
bool removeResumePointOperands();
void replaceOperandsOnResumePoint(MResumePoint *resumePoint, MDefinition *withDef);
public:
ParallelArrayAnalysis(MIRGenerator *mir,
MIRGraph &graph)
: mir_(mir),
graph_(graph)
{}
bool analyze();
};
// Code to collect list of possible call targets by scraping through
// TI and baseline data. Used to permit speculative transitive
// compilation in vm/ForkJoin.
//
// This code may clone scripts and thus may invoke the GC. Hence only
// run from the link phase, which executes on the main thread.
typedef Vector<JSScript *, 4, IonAllocPolicy> CallTargetVector;
bool AddPossibleCallees(MIRGraph &graph, CallTargetVector &targets);
} // namespace jit
} // namespace js
#endif /* jit_ParallelArrayAnalysis_h */