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

  /external/webkit/JavaScriptCore/jit/
JIT.cpp 81 , m_bytecodeIndex((unsigned)-1)
117 m_bytecodeIndex += OPCODE_LENGTH(name); \
179 for (m_bytecodeIndex = 0; m_bytecodeIndex < instructionCount; ) {
180 Instruction* currentInstruction = instructionsBegin + m_bytecodeIndex;
181 ASSERT_WITH_MESSAGE(m_interpreter->isOpcode(currentInstruction->u.opcode), "privateCompileMainPass gone bad @ %d", m_bytecodeIndex);
184 if (m_bytecodeIndex > 0) // Avoid the overhead of sampling op_enter twice.
189 if (m_labels[m_bytecodeIndex].isUsed())
193 m_labels[m_bytecodeIndex] = label();
338 m_bytecodeIndex = (unsigned)-1
    [all...]
JITStubCall.h 168 if (m_jit->m_bytecodeIndex != (unsigned)-1)
169 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeIndex, true);
174 m_jit->m_calls.append(CallRecord(call, m_jit->m_bytecodeIndex, m_stub.value()));
177 if (m_jit->m_bytecodeIndex != (unsigned)-1)
178 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeIndex, false);
JITInlineMethods.h 107 ASSERT(m_bytecodeIndex != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeIndex is set.
110 m_calls.append(CallRecord(nakedCall, m_bytecodeIndex, function.executableAddress()));
220 ASSERT(m_bytecodeIndex != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeIndex is set.
222 m_slowCases.append(SlowCaseEntry(jump, m_bytecodeIndex));
227 ASSERT(m_bytecodeIndex != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeIndex is set.
232 m_slowCases.append(SlowCaseEntry(jumpVector[i], m_bytecodeIndex));
237 ASSERT(m_bytecodeIndex != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_ (…)
    [all...]
JITOpcodes.cpp 399 map(m_bytecodeIndex + OPCODE_LENGTH(op_mov), dst, regT1, regT0);
549 map(m_bytecodeIndex + OPCODE_LENGTH(op_get_global_var), dst, regT1, regT0);
563 map(m_bytecodeIndex + OPCODE_LENGTH(op_put_global_var), value, regT1, regT0);
582 map(m_bytecodeIndex + OPCODE_LENGTH(op_get_scoped_var), dst, regT1, regT0);
602 map(m_bytecodeIndex + OPCODE_LENGTH(op_put_scoped_var), value, regT1, regT0);
645 map(m_bytecodeIndex + OPCODE_LENGTH(op_to_primitive), dst, regT1, regT0);
704 map(m_bytecodeIndex + OPCODE_LENGTH(op_resolve_global), dst, regT1, regT0);
    [all...]
JITPropertyAccess.cpp 243 map(m_bytecodeIndex + OPCODE_LENGTH(op_method_check), dst, regT1, regT0);
246 m_bytecodeIndex += OPCODE_LENGTH(op_get_by_id);
260 m_bytecodeIndex += OPCODE_LENGTH(op_get_by_id);
291 map(m_bytecodeIndex + OPCODE_LENGTH(op_get_by_val), dst, regT1, regT0);
373 map(m_bytecodeIndex + OPCODE_LENGTH(op_get_by_id), dst, regT1, regT0);
    [all...]
JITCall.cpp 135 map(m_bytecodeIndex + OPCODE_LENGTH(op_call_varargs), dst, regT1, regT0);
367 map(m_bytecodeIndex + opcodeLengths[opcodeID], dst, regT1, regT0);
JIT.h     [all...]

Completed in 66 milliseconds