Searched refs:CellTag (Results 1 – 5 of 5) sorted by relevance
/external/webkit/JavaScriptCore/runtime/ |
D | JSValue.h | 219 enum { CellTag = 0xfffffffe }; enumerator 438 u.asBits.tag = CellTag; in JSValue() 474 u.asBits.tag = CellTag; in JSValue() 480 u.asBits.tag = CellTag; in JSValue() 486 return u.asBits.payload || tag() != CellTag; 516 return tag() == CellTag; in isCell()
|
/external/webkit/JavaScriptCore/jit/ |
D | JITCall.cpp | 163 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::CellTag))); in emit_op_construct_verify() 251 wasEval2 = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in compileOpCall() 321 wasEval2 = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in compileOpCall() 332 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::CellTag))); in compileOpCall() 394 Jump callLinkFailNotObject = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in compileOpCallSlowCase()
|
D | JITOpcodes.cpp | 50 Jump string_failureCases1 = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in privateCompileCTIMachineTrampolines() 266 Jump sawException1 = branch32(NotEqual, tagFor(0, regT2), Imm32(JSValue::CellTag)); in privateCompileCTIMachineTrampolines() 493 Jump valueIsImmediate = branch32(NotEqual, regT0, Imm32(JSValue::CellTag)); in emit_op_instanceof() 652 Jump isImm = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in emit_op_to_primitive() 879 Jump isImmediate = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in emit_op_jeq_null() 906 Jump isImmediate = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in emit_op_jneq_null() 933 addJump(branch32(NotEqual, regT1, Imm32(JSValue::CellTag)), target + 3); in emit_op_jneq_ptr() 959 addSlowCase(branch32(Equal, regT1, Imm32(JSValue::CellTag))); in emit_op_eq() 1011 addSlowCase(branch32(Equal, regT1, Imm32(JSValue::CellTag))); in emit_op_neq() 1068 addSlowCase(branch32(AboveOrEqual, regT2, Imm32(JSValue::CellTag))); in compileOpStrictEq() [all …]
|
D | JITInlineMethods.h | 407 store32(Imm32(JSValue::CellTag), tagFor(index, callFrameRegister)); in emitStoreCell() 508 addSlowCase(branch32(NotEqual, tagFor(virtualRegisterIndex), Imm32(JSValue::CellTag))); in emitJumpSlowCaseIfNotJSCell() 514 addSlowCase(branch32(NotEqual, tag, Imm32(JSValue::CellTag))); in emitJumpSlowCaseIfNotJSCell()
|
D | JITPropertyAccess.cpp | 220 move(Imm32(JSValue::CellTag), regT1); in emit_op_method_check() 316 branch32(Equal, regT1, Imm32(JSValue::CellTag), callGetByValJITStub); in emitSlow_op_get_by_val() 342 …egT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + 4), Imm32(JSValue::CellTag)); in emit_op_put_by_val() 553 failureCases.append(branch32(NotEqual, regT1, Imm32(JSValue::CellTag))); in privateCompilePutByIdTransition()
|