Searched refs:CellTag (Results 1 – 5 of 5) sorted by relevance
/external/webkit/JavaScriptCore/runtime/ |
D | JSValue.h | 218 enum { CellTag = 0xfffffffe }; enumerator 491 u.asBits.tag = CellTag; in JSValue() 503 u.asBits.tag = CellTag; in JSValue() 545 return tag() == CellTag; in isCell()
|
/external/webkit/JavaScriptCore/jit/ |
D | JITOpcodes.cpp | 55 Jump string_failureCases1 = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in privateCompileCTIMachineTrampolines() 639 Jump isImm = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in emit_op_to_primitive() 838 Jump isImmediate = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in emit_op_jeq_null() 865 Jump isImmediate = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in emit_op_jneq_null() 892 addJump(branch32(NotEqual, regT1, Imm32(JSValue::CellTag)), target); in emit_op_jneq_ptr() 918 addSlowCase(branch32(Equal, regT1, Imm32(JSValue::CellTag))); in emit_op_eq() 970 addSlowCase(branch32(Equal, regT1, Imm32(JSValue::CellTag))); in emit_op_neq() 1027 addSlowCase(branch32(AboveOrEqual, regT2, Imm32(JSValue::CellTag))); in compileOpStrictEq() 1085 Jump isImmediate = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in emit_op_eq_null() 1111 Jump isImmediate = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in emit_op_neq_null() [all …]
|
D | JITCall.cpp | 160 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::CellTag))); in emit_op_construct_verify() 329 addSlowCase(branch32(NotEqual, regT1, Imm32(JSValue::CellTag))); in compileOpCall() 389 Jump callLinkFailNotObject = branch32(NotEqual, regT1, Imm32(JSValue::CellTag)); in compileOpCallSlowCase()
|
D | JITInlineMethods.h | 446 store32(Imm32(JSValue::CellTag), tagFor(index, callFrameRegister)); in emitStoreCell() 547 addSlowCase(branch32(NotEqual, tagFor(virtualRegisterIndex), Imm32(JSValue::CellTag))); in emitJumpSlowCaseIfNotJSCell() 553 addSlowCase(branch32(NotEqual, tag, Imm32(JSValue::CellTag))); in emitJumpSlowCaseIfNotJSCell()
|
D | JITPropertyAccess.cpp | 226 move(Imm32(JSValue::CellTag), regT1); in emit_op_method_check() 558 failureCases.append(branch32(NotEqual, regT1, Imm32(JSValue::CellTag))); in privateCompilePutByIdTransition()
|