Home
last modified time | relevance | path

Searched refs:addressFor (Results 1 – 25 of 30) sorted by relevance

12

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/JavaScriptCore/dfg/
H A DDFGNonSpeculativeJIT.h105 m_jit.storePtr(info.gpr(), JITCompiler::addressFor(spillMe));
108 m_jit.storePtr(info.gpr(), JITCompiler::addressFor(spillMe));
120 m_jit.storePtr(canTrample, JITCompiler::addressFor(spillMe));
139 m_jit.load32(JITCompiler::addressFor(spillMe), info.gpr());
147 m_jit.loadPtr(JITCompiler::addressFor(spillMe), info.gpr());
163 m_jit.loadPtr(JITCompiler::addressFor(spillMe), canTrample);
H A DDFGJITCompiler.cpp52 loadPtr(addressFor(node.virtualRegister()), temporary); in fillNumericToDouble()
75 loadPtr(addressFor(node.virtualRegister()), gpr); in fillInt32ToInteger()
78 load32(addressFor(node.virtualRegister()), gpr); in fillInt32ToInteger()
102 loadPtr(addressFor(node.virtualRegister()), gpr); in fillToJS()
141 storePtr(GPRInfo::toRegister(index), addressFor(virtualRegister)); in jumpFromSpeculativeToNonSpeculative()
154 storePtr(GPRInfo::regT0, addressFor(virtualRegister)); in jumpFromSpeculativeToNonSpeculative()
H A DDFGSpeculativeJIT.cpp62 m_jit.load32(JITCompiler::addressFor(virtualRegister), gpr); in fillSpeculateIntInternal()
67 m_jit.loadPtr(JITCompiler::addressFor(virtualRegister), gpr); in fillSpeculateIntInternal()
72 m_jit.loadPtr(JITCompiler::addressFor(virtualRegister), gpr); in fillSpeculateIntInternal()
200 m_jit.loadPtr(JITCompiler::addressFor(virtualRegister), gpr); in fillSpeculateCell()
292 m_jit.loadPtr(JITCompiler::addressFor(node.local()), result.gpr()); in compile()
313 m_jit.storePtr(cell.gpr(), JITCompiler::addressFor(node.local())); in compile()
320 m_jit.storePtr(value.gpr(), JITCompiler::addressFor(node.local())); in compile()
909 …speculationCheck(m_jit.branchPtr(MacroAssembler::Below, JITCompiler::addressFor(virtualRegister), … in checkArgumentTypes()
914 m_jit.loadPtr(JITCompiler::addressFor(virtualRegister), temp.gpr()); in checkArgumentTypes()
935 … m_jit.storePtr(GPRInfo::tagTypeNumberRegister, JITCompiler::addressFor((VirtualRegister)var)); in initializeVariableTypes()
H A DDFGJITCodeGenerator.cpp65 m_jit.loadPtr(JITCompiler::addressFor(virtualRegister), gpr); in fillInteger()
145 m_jit.loadPtr(JITCompiler::addressFor(virtualRegister), gpr); in fillDouble()
257 m_jit.loadPtr(JITCompiler::addressFor(virtualRegister), gpr); in fillJSValue()
H A DDFGJITCompiler.h146 static Address addressFor(VirtualRegister virtualRegister) in addressFor() function
H A DDFGNonSpeculativeJIT.cpp195 m_jit.loadPtr(JITCompiler::addressFor(node.local()), result.gpr()); in compile()
207 m_jit.storePtr(value.gpr(), JITCompiler::addressFor(node.local())); in compile()
H A DDFGJITCodeGenerator.h213 m_jit.storePtr(gpr, JITCompiler::addressFor(spillMe)); in spill()
229 m_jit.storePtr(reg, JITCompiler::addressFor(spillMe)); in spill()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/JavaScriptCore/jit/
H A DJSInterfaceJIT.h215 inline Address addressFor(int index, RegisterID base = callFrameRegister);
276 loadDouble(addressFor(virtualRegisterIndex), dst); in emitLoadDouble()
293 loadPtr(addressFor(virtualRegisterIndex), dst); in emitLoadJSCell()
299 loadPtr(addressFor(virtualRegisterIndex), dst); in emitLoadInt32()
307 loadPtr(addressFor(virtualRegisterIndex), scratch); in emitLoadDouble()
329 return addressFor(virtualRegisterIndex, base); in payloadFor()
344 …inline JSInterfaceJIT::Address JSInterfaceJIT::addressFor(int virtualRegisterIndex, RegisterID bas… in addressFor() function
H A DJITOpcodes.cpp474 … activationNotCreated = branchTestPtr(Zero, addressFor(m_codeBlock->activationRegister())); in emit_op_get_scoped_var()
498 … activationNotCreated = branchTestPtr(Zero, addressFor(m_codeBlock->activationRegister())); in emit_op_put_scoped_var()
514 Jump activationCreated = branchTestPtr(NonZero, addressFor(activation)); in emit_op_tear_off_activation()
515 Jump argumentsNotCreated = branchTestPtr(Zero, addressFor(arguments)); in emit_op_tear_off_activation()
933 loadPtr(addressFor(it), regT1); in emit_op_next_pname()
1526 addSlowCase(branchTestPtr(NonZero, addressFor(argumentsRegister))); in emit_op_get_arguments_length()
1552 addSlowCase(branchTestPtr(NonZero, addressFor(argumentsRegister))); in emit_op_get_argument_by_val()
1617 … activationNotCreated = branchTestPtr(Zero, addressFor(m_codeBlock->activationRegister())); in emit_op_resolve_global_dynamic()
1682 addSlowCase(branchTestPtr(NonZero, addressFor(argsOffset))); in emit_op_load_varargs()
1738 lazyJump = branchTestPtr(NonZero, addressFor(dst)); in emit_op_new_func()
H A DJITInlineMethods.h461 loadDouble(addressFor(index), value); in emitLoadDouble()
510 storeDouble(value, addressFor(index)); in emitStoreDouble()
757 loadDouble(addressFor(index), value); in emitLoadDouble()
766 convertInt32ToDouble(addressFor(index), value); in emitLoadInt32ToDouble()
H A DJITPropertyAccess.cpp157 addSlowCase(branchPtr(NotEqual, regT0, addressFor(expected))); in emit_op_get_by_pname()
164 load32(addressFor(i), regT3); in emit_op_get_by_pname()
H A DJITPropertyAccess32_64.cpp1082 load32(addressFor(i), regT3); in emit_op_get_by_pname()
H A DJITOpcodes32_64.cpp1371 loadPtr(addressFor(dst), regT1); in emit_op_next_pname()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/javascriptcore/JavaScriptCore/jit/
H A DJITInlineMethods.h310 inline JIT::Address JIT::addressFor(unsigned index, RegisterID base) in addressFor() function
409 loadDouble(addressFor(index), value); in emitLoadDouble()
458 storeDouble(value, addressFor(index)); in emitStoreDouble()
739 loadDouble(addressFor(index), value); in emitLoadDouble()
748 convertInt32ToDouble(addressFor(index), value); in emitLoadInt32ToDouble()
H A DJITOpcodes.cpp1185 store32(Imm32(0), addressFor(i)); in emit_op_get_pnames()
1186 store32(regT3, addressFor(size)); in emit_op_get_pnames()
1212 load32(addressFor(i), regT0); in emit_op_next_pname()
1216 loadPtr(addressFor(it), regT1); in emit_op_next_pname()
1224 store32(regT0, addressFor(i)); in emit_op_next_pname()
1227 loadPtr(addressFor(base), regT0); in emit_op_next_pname()
1251 loadPtr(addressFor(dst), regT1); in emit_op_next_pname()
2394 store32(Imm32(0), addressFor(i));
2423 load32(addressFor(i), regT0);
2427 loadPtr(addressFor(it), regT1);
[all …]
H A DJITPropertyAccess.cpp994 load32(addressFor(i), regT3); in emit_op_get_by_pname()
1078 addSlowCase(branchPtr(NotEqual, regT0, addressFor(expected)));
1085 load32(addressFor(i), regT3);
H A DJIT.h388 Address addressFor(unsigned index, RegisterID base = callFrameRegister);
/dports/devel/qt5-scripttools/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/jit/
H A DJITInlineMethods.h310 inline JIT::Address JIT::addressFor(unsigned index, RegisterID base) in addressFor() function
409 loadDouble(addressFor(index), value); in emitLoadDouble()
458 storeDouble(value, addressFor(index)); in emitStoreDouble()
739 loadDouble(addressFor(index), value); in emitLoadDouble()
748 convertInt32ToDouble(addressFor(index), value); in emitLoadInt32ToDouble()
H A DJITOpcodes.cpp1185 store32(Imm32(0), addressFor(i)); in emit_op_get_pnames()
1186 store32(regT3, addressFor(size)); in emit_op_get_pnames()
1212 load32(addressFor(i), regT0); in emit_op_next_pname()
1216 loadPtr(addressFor(it), regT1); in emit_op_next_pname()
1224 store32(regT0, addressFor(i)); in emit_op_next_pname()
1227 loadPtr(addressFor(base), regT0); in emit_op_next_pname()
1251 loadPtr(addressFor(dst), regT1); in emit_op_next_pname()
2394 store32(Imm32(0), addressFor(i));
2423 load32(addressFor(i), regT0);
2427 loadPtr(addressFor(it), regT1);
[all …]
H A DJITPropertyAccess.cpp994 load32(addressFor(i), regT3); in emit_op_get_by_pname()
1078 addSlowCase(branchPtr(NotEqual, regT0, addressFor(expected)));
1085 load32(addressFor(i), regT3);
H A DJIT.h388 Address addressFor(unsigned index, RegisterID base = callFrameRegister);
/dports/devel/qt5-script/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/jit/
H A DJITInlineMethods.h310 inline JIT::Address JIT::addressFor(unsigned index, RegisterID base) in addressFor() function
409 loadDouble(addressFor(index), value); in emitLoadDouble()
458 storeDouble(value, addressFor(index)); in emitStoreDouble()
739 loadDouble(addressFor(index), value); in emitLoadDouble()
748 convertInt32ToDouble(addressFor(index), value); in emitLoadInt32ToDouble()
H A DJITOpcodes.cpp1185 store32(Imm32(0), addressFor(i)); in emit_op_get_pnames()
1186 store32(regT3, addressFor(size)); in emit_op_get_pnames()
1212 load32(addressFor(i), regT0); in emit_op_next_pname()
1216 loadPtr(addressFor(it), regT1); in emit_op_next_pname()
1224 store32(regT0, addressFor(i)); in emit_op_next_pname()
1227 loadPtr(addressFor(base), regT0); in emit_op_next_pname()
1251 loadPtr(addressFor(dst), regT1); in emit_op_next_pname()
2394 store32(Imm32(0), addressFor(i));
2423 load32(addressFor(i), regT0);
2427 loadPtr(addressFor(it), regT1);
[all …]
H A DJITPropertyAccess.cpp994 load32(addressFor(i), regT3); in emit_op_get_by_pname()
1078 addSlowCase(branchPtr(NotEqual, regT0, addressFor(expected)));
1085 load32(addressFor(i), regT3);
H A DJIT.h388 Address addressFor(unsigned index, RegisterID base = callFrameRegister);

12