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

/dalvik/vm/compiler/codegen/x86/
H A DCodegenDriver.cpp213 /* Accept the work and start compiling */
214 bool dvmCompilerDoWork(CompilerWorkOrder *work) argument
223 switch (work->kind) {
226 desc = (JitTraceDescription *)work->info;
227 res = dvmCompileTrace(desc, JIT_MAX_TRACE_LEN, &work->result,
228 work->bailPtr, 0 /* no hints */);
234 desc = (JitTraceDescription *)work->info;
235 res = dvmCompileTrace(desc, JIT_MAX_TRACE_LEN, &work->result,
236 work->bailPtr, 0 /* no hints */);
242 ALOGE("Jit: unknown work orde
[all...]
/dalvik/vm/compiler/
H A DCompiler.cpp37 CompilerWorkOrder work = local
53 return work;
57 * Enqueue a work order - retrying until successful. If attempt to enqueue
86 * Attempt to enqueue a work order, returning true if successful.
296 /* Lock the mutex to clean up the work queue */
302 /* Drain the work queue to free the work orders */
304 CompilerWorkOrder work = workDequeue(); local
305 free(work.info);
329 /* Reset the work queu
649 CompilerWorkOrder work = workDequeue(); local
[all...]
/dalvik/vm/compiler/codegen/arm/
H A DCodegenDriver.cpp4585 * Accept the work and start compiling. Returns true if compilation
4588 bool dvmCompilerDoWork(CompilerWorkOrder *work) argument
4598 switch (work->kind) {
4602 desc = (JitTraceDescription *)work->info;
4603 success = dvmCompileTrace(desc, JIT_MAX_TRACE_LEN, &work->result,
4604 work->bailPtr, 0 /* no hints */);
4611 desc = (JitTraceDescription *)work->info;
4612 success = dvmCompileTrace(desc, JIT_MAX_TRACE_LEN, &work->result,
4613 work->bailPtr, 0 /* no hints */);
4618 dvmJitChangeProfileMode((TraceProfilingModes)(int)work
[all...]

Completed in 70 milliseconds