Home
last modified time | relevance | path

Searched refs:CellTag (Results 1 – 5 of 5) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DJSValue.h218 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/
DJITOpcodes.cpp55 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 …]
DJITCall.cpp160 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()
DJITInlineMethods.h446 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()
DJITPropertyAccess.cpp226 move(Imm32(JSValue::CellTag), regT1); in emit_op_method_check()
558 failureCases.append(branch32(NotEqual, regT1, Imm32(JSValue::CellTag))); in privateCompilePutByIdTransition()