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

  /external/webkit/Source/JavaScriptCore/jit/
JIT.cpp 78 , m_bytecodeOffset((unsigned)-1)
115 m_bytecodeOffset += OPCODE_LENGTH(name); \
177 for (m_bytecodeOffset = 0; m_bytecodeOffset < instructionCount; ) {
178 Instruction* currentInstruction = instructionsBegin + m_bytecodeOffset;
179 ASSERT_WITH_MESSAGE(m_interpreter->isOpcode(currentInstruction->u.opcode), "privateCompileMainPass gone bad @ %d", m_bytecodeOffset);
182 if (m_bytecodeOffset > 0) // Avoid the overhead of sampling op_enter twice.
187 if (m_labels[m_bytecodeOffset].isUsed())
191 m_labels[m_bytecodeOffset] = label();
351 m_bytecodeOffset = (unsigned)-1
    [all...]
JITStubCall.h 170 if (m_jit->m_bytecodeOffset != (unsigned)-1)
171 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeOffset, true);
176 m_jit->m_calls.append(CallRecord(call, m_jit->m_bytecodeOffset, m_stub.value()));
179 if (m_jit->m_bytecodeOffset != (unsigned)-1)
180 m_jit->sampleInstruction(m_jit->m_codeBlock->instructions().begin() + m_jit->m_bytecodeOffset, false);
JITInlineMethods.h 105 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeOffset is set.
108 m_calls.append(CallRecord(nakedCall, m_bytecodeOffset, function.executableAddress()));
272 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeOffset is set.
274 m_slowCases.append(SlowCaseEntry(jump, m_bytecodeOffset));
279 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_bytecodeOffset is set.
284 m_slowCases.append(SlowCaseEntry(jumpVector[i], m_bytecodeOffset));
289 ASSERT(m_bytecodeOffset != (unsigned)-1); // This method should only be called during hot/cold path generation, so that m_ (…)
    [all...]
JITOpcodes32_64.cpp 485 map(m_bytecodeOffset + OPCODE_LENGTH(op_mov), dst, regT1, regT0);
656 map(m_bytecodeOffset + OPCODE_LENGTH(op_get_global_var), dst, regT1, regT0);
670 map(m_bytecodeOffset + OPCODE_LENGTH(op_put_global_var), value, regT1, regT0);
697 map(m_bytecodeOffset + OPCODE_LENGTH(op_get_scoped_var), dst, regT1, regT0);
725 map(m_bytecodeOffset + OPCODE_LENGTH(op_put_scoped_var), value, regT1, regT0);
781 map(m_bytecodeOffset + OPCODE_LENGTH(op_to_primitive), dst, regT1, regT0);
    [all...]
JITPropertyAccess32_64.cpp 242 map(m_bytecodeOffset + OPCODE_LENGTH(op_method_check), dst, regT1, regT0);
245 m_bytecodeOffset += OPCODE_LENGTH(op_get_by_id);
259 m_bytecodeOffset += OPCODE_LENGTH(op_get_by_id);
322 map(m_bytecodeOffset + OPCODE_LENGTH(op_get_by_val), dst, regT1, regT0);
415 map(m_bytecodeOffset + OPCODE_LENGTH(op_get_by_id), dst, regT1, regT0);
    [all...]
JITOpcodes.cpp 45 do { m_labels[m_bytecodeOffset + (targetOffset)].used(); } while (false)
    [all...]
JITPropertyAccess.cpp 367 m_bytecodeOffset += OPCODE_LENGTH(op_get_by_id);
380 m_bytecodeOffset += OPCODE_LENGTH(op_get_by_id);
    [all...]
JIT.h     [all...]

Completed in 35 milliseconds