Searched defs:work (Results 1 - 4 of 4) sorted by relevance

/dalvik/vm/compiler/
H A DCompiler.cpp41 CompilerWorkOrder work = local
57 return work;
61 * Enqueue a work order - retrying until successful. If attempt to enqueue
90 * Attempt to enqueue a work order, returning true if successful.
311 /* Lock the mutex to clean up the work queue */
317 /* Drain the work queue to free the work orders */
319 CompilerWorkOrder work = workDequeue(); local
320 free(work.info);
344 /* Reset the work queu
664 CompilerWorkOrder work = workDequeue(); local
[all...]
/dalvik/vm/compiler/codegen/x86/
H A DCodegenInterface.cpp100 //ALOGD("Number of IC patch work orders: %d", gDvmJit.compilerICPatchIndex);
285 * Attempt to enqueue a work order to patch an inline cache for a predicted
473 * Enter the work order to the queue and the chaining cell will be patched
1481 * Accept the work and start compiling. Returns true if compilation
1484 bool dvmCompilerDoWork(CompilerWorkOrder *work) argument
1494 switch (work->kind) {
1498 desc = (JitTraceDescription *)work->info;
1499 success = dvmCompileTrace(desc, JIT_MAX_TRACE_LEN, &work->result,
1500 work->bailPtr, 0 /* no hints */);
1507 desc = (JitTraceDescription *)work
[all...]
/dalvik/vm/compiler/codegen/arm/
H A DCodegenDriver.cpp4603 * Accept the work and start compiling. Returns true if compilation
4606 bool dvmCompilerDoWork(CompilerWorkOrder *work) argument
4616 switch (work->kind) {
4620 desc = (JitTraceDescription *)work->info;
4621 success = dvmCompileTrace(desc, JIT_MAX_TRACE_LEN, &work->result,
4622 work->bailPtr, 0 /* no hints */);
4629 desc = (JitTraceDescription *)work->info;
4630 success = dvmCompileTrace(desc, JIT_MAX_TRACE_LEN, &work->result,
4631 work->bailPtr, 0 /* no hints */);
4636 dvmJitChangeProfileMode((TraceProfilingModes)(int)work
[all...]
/dalvik/vm/compiler/codegen/mips/
H A DCodegenDriver.cpp4706 * Accept the work and start compiling. Returns true if compilation
4709 bool dvmCompilerDoWork(CompilerWorkOrder *work) argument
4719 switch (work->kind) {
4723 desc = (JitTraceDescription *)work->info;
4724 success = dvmCompileTrace(desc, JIT_MAX_TRACE_LEN, &work->result,
4725 work->bailPtr, 0 /* no hints */);
4732 desc = (JitTraceDescription *)work->info;
4733 success = dvmCompileTrace(desc, JIT_MAX_TRACE_LEN, &work->result,
4734 work->bailPtr, 0 /* no hints */);
4739 dvmJitChangeProfileMode((TraceProfilingModes)(int)work
[all...]

Completed in 124 milliseconds