Searched refs:payload (Results 76 - 100 of 148) sorted by relevance

123456

/macosx-10.9.5/JavaScriptCore-7537.78.1/llint/
H A DLowLevelInterpreter32_64.asm212 # Index, tag, and payload must be different registers. Index is not
214 macro loadConstantOrVariable(index, tag, payload)
217 loadi PayloadOffset[cfr, index, 8], payload
220 loadp CodeBlock[cfr], payload
221 loadp CodeBlock::m_constantRegisters + VectorBufferOffset[payload], payload
224 loadp TagOffset[payload, index, 8], tag
225 loadp PayloadOffset[payload, index, 8], payload
242 # Index and payload ma
[all...]
H A DLowLevelInterpreter.cpp429 t0.i = result.payload();
455 return JSValue(t1.i, t0.i); // returning JSValue(tag, payload);
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJIT.h518 void emitLoadPayload(int index, RegisterID payload);
520 void emitLoad(const JSValue& v, RegisterID tag, RegisterID payload);
521 void emitLoad(int index, RegisterID tag, RegisterID payload, RegisterID base = callFrameRegister);
524 void emitStore(int index, RegisterID tag, RegisterID payload, RegisterID base = callFrameRegister);
526 void emitStoreInt32(int index, RegisterID payload, bool indexIsInt32 = false);
527 void emitStoreInt32(int index, TrustedImm32 payload, bool indexIsInt32 = false);
528 void emitStoreAndMapInt32(int index, RegisterID tag, RegisterID payload, bool indexIsInt32, size_t opcodeLength);
529 void emitStoreCell(int index, RegisterID payload, bool indexIsCell = false);
530 void emitStoreBool(int index, RegisterID payload, bool indexIsBool = false);
534 void map(unsigned bytecodeOffset, int virtualRegisterIndex, RegisterID tag, RegisterID payload);
591 emitStoreCell(unsigned dst, RegisterID payload, bool = false) argument
[all...]
H A DJSInterfaceJIT.h185 inline Jump emitLoadJSCell(unsigned virtualRegisterIndex, RegisterID payload);
226 inline JSInterfaceJIT::Jump JSInterfaceJIT::emitLoadJSCell(unsigned virtualRegisterIndex, RegisterID payload) argument
228 loadPtr(payloadFor(virtualRegisterIndex), payload); local
254 return Address(base, (static_cast<unsigned>(virtualRegisterIndex) * sizeof(Register)) + OBJECT_OFFSETOF(JSValue, u.asBits.payload));
349 return Address(base, (static_cast<unsigned>(virtualRegisterIndex) * sizeof(Register)) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload));
H A DJITCall32_64.cpp172 store32(regT0, Address(regT3, OBJECT_OFFSETOF(JSValue, u.asBits.payload) + (CallFrame::thisArgumentOffset() * static_cast<int>(sizeof(Register)))));
181 load32(BaseIndex(callFrameRegister, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload) +(CallFrame::thisArgumentOffset() * static_cast<int>(sizeof(Register)))), regT0);
183 store32(regT0, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload) +(CallFrame::thisArgumentOffset() * static_cast<int>(sizeof(Register)))));
H A DSpecializedThunkJIT.h103 loadPtr(Address(stackPointerRegister, OBJECT_OFFSETOF(JSValue, u.asBits.payload) - sizeof(double)), regT0);
H A DJITCall.cpp94 store32(regT0, Address(regT1, JSStack::ArgumentCount * static_cast<int>(sizeof(Register)) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)));
180 store32(TrustedImm32(argCount), Address(regT1, JSStack::ArgumentCount * static_cast<int>(sizeof(Register)) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)));
H A DJITPropertyAccess32_64.cpp201 load32(BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload)), regT0); // payload
234 load32(BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.payload)), regT0); // payload
347 store32(regT0, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload)));
400 store32(regT0, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + OBJECT_OFFSETOF(JSValue, u.asBits.payload))); // payload
494 DataLabelCompact displacementLabel1 = loadPtrWithCompactAddressOffsetPatch(Address(regT2, patchGetByIdDefaultOffset), regT0); // payload
560 DataLabel32 displacementLabel1 = storePtrWithAddressOffsetPatch(regT2, Address(regT1, patchPutByIdDefaultOffset)); // payload
614 load32(Address(resultTag, OBJECT_OFFSETOF(JSValue, u.asBits.payload)), resultPayloa
[all...]
H A DJITOpcodes32_64.cpp279 load32(Address(regT2, Structure::prototypeOffset() + OBJECT_OFFSETOF(JSValue, u.asBits.payload)), regT2);
937 loadPtr(Address(regT2, Structure::prototypeOffset() + OBJECT_OFFSETOF(JSValue, u.asBits.payload)), regT2);
1017 load32(Address(regT3, OBJECT_OFFSETOF(VM, exception) + OBJECT_OFFSETOF(JSValue, u.asBits.payload)), regT0);
1019 store32(TrustedImm32(JSValue().payload()), Address(regT3, OBJECT_OFFSETOF(VM, exception) + OBJECT_OFFSETOF(JSValue, u.asBits.payload)));
1278 loadPtr(BaseIndex(callFrameRegister, regT2, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload) + CallFrame::thisArgumentOffset() * static_cast<int>(sizeof(Register))), regT0);
1324 storePtr(regT0, reinterpret_cast<char*>(operation->m_registerAddress) + OBJECT_OFFSETOF(JSValue, u.asBits.payload));
1334 store32(regT0, Address(regT2, operation->m_offset * sizeof(Register) + OBJECT_OFFSETOF(JSValue, u.asBits.payload)));
1350 storePtr(regT0, BaseIndex(regT2, regT3, TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload)));
/macosx-10.9.5/BerkeleyDB-21/db/examples_c/txn_guide/
H A Dtxn_guide_inmemory.c210 int i, j, payload, ret, thread_num; local
259 payload = rand() + i;
260 value.data = &payload;
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSCJSValue.h90 int32_t payload; member in struct:JSC::EncodedValueDescriptor::__anon2780
94 int32_t payload; member in struct:JSC::EncodedValueDescriptor::__anon2781
287 * can encode a 51-bit payload. Hardware produced and C-library payloads typically
288 * have a payload of zero. We assume that non-zero payloads are available to encode
290 * all set represents a NaN with a non-zero payload, we can use this space in the NaN
296 * cell, integer and bool values the lower 32 bits (the 'payload') contain the pointer
297 * integer or boolean value; in the case of all other tags the payload is 0.
300 int32_t payload() const;
304 // synthesize JSValue from its "register"s holding tag and payload
306 explicit JSValue(int32_t tag, int32_t payload);
[all...]
H A DWriteBarrier.h183 int32_t* payloadPointer() { return &bitwise_cast<EncodedValueDescriptor*>(&m_value)->asBits.payload; }
/macosx-10.9.5/WebCore-7537.78.1/Modules/websockets/
H A DWebSocketChannel.cpp549 // All control frames must have a payload of 125 bytes or less, which means the frame must not contain
550 // the "extended payload length" field.
552 fail("Received control frame having too long payload: " + String::number(frame.payloadLength) + " bytes");
572 m_continuousFrameData.append(frame.payload, frame.payloadLength);
602 message = String::fromUTF8(frame.payload, frame.payloadLength);
614 m_continuousFrameData.append(frame.payload, frame.payloadLength);
622 memcpy(binaryData->data(), frame.payload, frame.payloadLength);
629 m_continuousFrameData.append(frame.payload, frame.payloadLength);
642 unsigned char highByte = static_cast<unsigned char>(frame.payload[0]);
643 unsigned char lowByte = static_cast<unsigned char>(frame.payload[
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/examples_cxx/txn_guide/
H A DTxnGuide.cpp234 int payload = rand() + i; local
235 value.set_data(&payload);
H A DTxnGuideInMemory.cpp216 int payload = rand() + i; local
217 value.set_data(&payload);
/macosx-10.9.5/IOKitUser-907.100.13/pwr_mgt.subproj/
H A DIOPMLibPrivate.c703 uint32_t payload[kMsgPayloadCount]; member in struct:__anon2435
723 m->payload[1], // messageToken argument
724 m->payload[0]); // event DATA
942 msg.m.payload[1], msg.m.payload[0]);
1299 uint64_t payload = 0; local
1303 notify_get_state(token, &payload);
1307 return ((payload & kIOPMSleepServiceActiveNotifyBit) ? true : false);
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGSpeculativeJIT32_64.cpp62 m_jit.move(MacroAssembler::Imm32(jsValue.payload()), gpr);
133 m_jit.move(Imm32(valueOfJSConstant(edge.node()).payload()), payloadGPR);
278 JITCompiler::DataLabelCompact payloadLoadWithPatch = m_jit.load32WithCompactAddressOffsetPatch(JITCompiler::Address(resultPayloadGPR, OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)), resultPayloadGPR);
335 JITCompiler::DataLabel32 payloadStoreWithPatch = m_jit.store32WithAddressOffsetPatch(valuePayloadGPR, JITCompiler::Address(scratchGPR, OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)));
821 m_jit.storePtr(resultPayloadGPR, MacroAssembler::Address(GPRInfo::callFrameRegister, static_cast<ptrdiff_t>(sizeof(Register)) * JSStack::ScopeChain + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)));
1905 m_jit.store32(valuePayloadReg, MacroAssembler::BaseIndex(storageReg, propertyReg, MacroAssembler::TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload)));
1933 m_jit.store32(valuePayloadReg, MacroAssembler::BaseIndex(storageReg, propertyReg, MacroAssembler::TimesEight, OBJECT_OFFSETOF(JSValue, u.asBits.payload)));
2058 GPRTemporary payload(this);
2060 m_jit.load32(JITCompiler::payloadFor(node->unlinkedLocal()), payload.gpr());
2062 jsValueResult(tag.gpr(), payload
[all...]
H A DDFGRepatch.cpp69 repatchBuffer.repatch(stubInfo.callReturnLocation.dataLabelCompactAtOffset(stubInfo.patch.dfg.deltaCallToPayloadLoadOrStore), offsetRelativeToPatchedStorage(offset) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload));
72 repatchBuffer.repatch(stubInfo.callReturnLocation.dataLabel32AtOffset(stubInfo.patch.dfg.deltaCallToPayloadLoadOrStore), offsetRelativeToPatchedStorage(offset) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload));
218 stubJit.load32(MacroAssembler::Address(resultGPR, OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)), resultGPR);
226 stubJit.load32(MacroAssembler::Address(resultGPR, offsetInButterfly(offset) * sizeof(WriteBarrier<Unknown>) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)), resultGPR);
490 stubJit.load32(MacroAssembler::Address(baseGPR, offsetRelativeToBase(slot.cachedOffset()) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)), resultGPR);
494 stubJit.load32(MacroAssembler::Address(baseGPR, offsetRelativeToBase(slot.cachedOffset()) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)), resultGPR);
503 stubJit.load32(MacroAssembler::Address(resultGPR, offsetRelativeToBase(slot.cachedOffset()) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)), resultGPR);
712 stubJit.store32(valueGPR, MacroAssembler::Address(baseGPR, JSObject::offsetOfInlineStorage() + offsetInInlineStorage(slot.cachedOffset()) * sizeof(JSValue) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)));
716 stubJit.store32(valueGPR, MacroAssembler::Address(scratchGPR, offsetInButterfly(slot.cachedOffset()) * sizeof(JSValue) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)));
885 stubJit.store32(valueGPR, MacroAssembler::Address(baseGPR, JSObject::offsetOfInlineStorage() + offsetInInlineStorage(slot.cachedOffset()) * sizeof(JSValue) + OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)));
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DCallFrame.h193 size_t argumentCountIncludingThis() const { return this[JSStack::ArgumentCount].payload(); }
235 void setArgumentCountIncludingThis(int count) { static_cast<Register*>(this)[JSStack::ArgumentCount].payload() = count; }
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/ldap/
H A Dldap.tcl552 proc ldap::CreateAndSendMessage {handle payload} {
561 set message [asnSequence [asnInteger $conn(messageId)] $payload]
721 # conn(pdu,payload) -- the payload buffer
825 if {[::info exists conn(pdu,payload)]} {
827 set missing [expr {$conn(pdu,length) - [string length $conn(pdu,payload)]}]
835 append conn(pdu,payload) $bytes
838 append conn(pdu,payload) $bytes
856 set pdu $conn(pdu,payload)
857 set conn(pdu,payload) ""
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/securityd/
H A DSOSCloudCircleServer.c175 const uint8_t *payload = ccder_decode_tl(CCDER_BOOLEAN, &payload_size, der, der_end); local
177 if (NULL == payload || (der_end - payload) < 1 || payload_size != 1) {
182 *boolean = (*payload != 0);
184 return payload + payload_size;
/macosx-10.9.5/SmartcardCCID-55005/libusb/libusb/
H A Dusbpp.cpp334 unsigned char *payload, int timeout)
336 return usb_control_msg(m_handle, requestType, request, value, index, (char *)payload, length, timeout);
332 controlTransfer(u_int8_t requestType, u_int8_t request, u_int16_t value, u_int16_t index, u_int16_t length, unsigned char *payload, int timeout) argument
H A Dusbpp.h636 * \param payload corresponds to the data phase of a control
646 unsigned char *payload,
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDebuggerModel.js682 * @param {DebuggerAgent.CallFrame} payload
684 WebInspector.DebuggerModel.CallFrame = function(script, payload)
687 this._payload = payload;
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/racoon/
H A Disakmp.h111 #define ISAKMP_NPTYPE_FRAG 132 /* IKE fragmentation payload */
201 The value of the next payload field MUST only contain the value "2"
203 then this field will be 2. If the current Proposal payload is the
218 The value of the next payload field MUST only contain the value "3"
220 then this field will be 3. If the current Transform payload is the
391 /* natoa payload */
402 vchar_t *payload; member in struct:payload_list
425 /* IKE fragmentation payload */

Completed in 318 milliseconds

123456