Searched refs:m_bytecodeOffset (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/JavaScriptCore/jit/
H A DJIT.cpp78 , 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
[all...]
H A DJITStubCall.h170 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);
H A DJITInlineMethods.h105 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 !
[all...]
H A DJITOpcodes32_64.cpp485 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);
848 map(m_bytecodeOffset + dynamic ? OPCODE_LENGTH(op_resolve_global_dynamic) : OPCODE_LENGTH(op_resolve_global), dst, regT1, regT0);
1410 map(m_bytecodeOffset + OPCODE_LENGTH(op_to_jsnumber), dst, regT1, regT0);
1446 map(m_bytecodeOffset + OPCODE_LENGTH(op_catch), exception, regT1, regT0);
1465 m_switches.append(SwitchRecord(jumpTable, m_bytecodeOffset, defaultOffse
[all...]
H A DJITPropertyAccess32_64.cpp242 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);
1114 map(m_bytecodeOffset + OPCODE_LENGTH(op_get_by_pname), dst, regT1, regT0);
H A DJITOpcodes.cpp45 do { m_labels[m_bytecodeOffset + (targetOffset)].used(); } while (false)
1090 m_switches.append(SwitchRecord(jumpTable, m_bytecodeOffset, defaultOffset, SwitchRecord::Immediate));
1108 m_switches.append(SwitchRecord(jumpTable, m_bytecodeOffset, defaultOffset, SwitchRecord::Character));
1126 m_switches.append(SwitchRecord(jumpTable, m_bytecodeOffset, defaultOffset));
H A DJITPropertyAccess.cpp367 m_bytecodeOffset += OPCODE_LENGTH(op_get_by_id);
380 m_bytecodeOffset += OPCODE_LENGTH(op_get_by_id);
H A DJIT.h970 unsigned m_bytecodeOffset; member in class:JSC::JIT

Completed in 96 milliseconds