HomeSort by relevance Sort by last modified time
    Searched refs:CompilerDispatcherJob (Results 1 - 6 of 6) sorted by null

  /external/v8/src/compiler-dispatcher/
compiler-dispatcher-job.cc 12 const UnoptimizedCompileJob* CompilerDispatcherJob::AsUnoptimizedCompileJob()
compiler-dispatcher-job.h 18 class V8_EXPORT_PRIVATE CompilerDispatcherJob {
31 CompilerDispatcherJob(Type type) : type_(type), status_(Status::kInitial) {}
33 virtual ~CompilerDispatcherJob() {}
40 // Returns true if this CompilerDispatcherJob has finished (either with a
46 // Returns true if this CompilerDispatcherJob has failed.
compiler-dispatcher.h 32 class CompilerDispatcherJob;
126 typedef std::map<JobId, std::unique_ptr<CompilerDispatcherJob>> JobMap;
132 void WaitForJobIfRunningOnBackground(CompilerDispatcherJob* job);
137 void ConsiderJobForBackgroundProcessing(CompilerDispatcherJob* job);
144 JobId Enqueue(std::unique_ptr<CompilerDispatcherJob> job);
145 JobId EnqueueAndStep(std::unique_ptr<CompilerDispatcherJob> job);
149 JobMap::const_iterator InsertJob(std::unique_ptr<CompilerDispatcherJob> job);
152 bool FinishNow(CompilerDispatcherJob* job);
190 std::unordered_set<CompilerDispatcherJob*> pending_background_jobs_;
194 std::unordered_set<CompilerDispatcherJob*> running_background_jobs_
    [all...]
compiler-dispatcher.cc 25 bool DoNextStepOnMainThread(Isolate* isolate, CompilerDispatcherJob* job,
31 case CompilerDispatcherJob::Status::kInitial:
34 case CompilerDispatcherJob::Status::kPrepared:
37 case CompilerDispatcherJob::Status::kCompiled:
40 case CompilerDispatcherJob::Status::kHasErrorsToReport:
43 case CompilerDispatcherJob::Status::kFailed:
44 case CompilerDispatcherJob::Status::kDone:
55 void DoNextStepOnBackgroundThread(CompilerDispatcherJob* job) {
60 case CompilerDispatcherJob::Status::kPrepared:
230 std::unique_ptr<CompilerDispatcherJob> job)
    [all...]
unoptimized-compile-job.h 32 class V8_EXPORT_PRIVATE UnoptimizedCompileJob : public CompilerDispatcherJob {
46 // CompilerDispatcherJob implementation.
unoptimized-compile-job.cc 70 : CompilerDispatcherJob(Type::kUnoptimizedCompile),

Completed in 466 milliseconds