Lines Matching refs:Address
41 (other.address() < reinterpret_cast<Address>(isolate()) ||
42 other.address() >= reinterpret_cast<Address>(isolate() + 1))) {
45 Address roots_register_value = kRootRegisterBias +
46 reinterpret_cast<Address>(isolate()->heap()->roots_array_start());
50 delta = other.address() - roots_register_value;
52 // For x32, zero extend the address to 64-bit and calculate the delta.
54 reinterpret_cast<intptr_t>(other.address()));
148 int64_t address = reinterpret_cast<int64_t>(source.address());
149 if (is_int32(address) && !serializer_enabled()) {
153 Push(Immediate(static_cast<int32_t>(address)));
258 // The mask isn't really an address. We load it as an external reference in
277 Move(kScratchRegister, reinterpret_cast<Address>(-new_space_start),
353 // Array access: calculate the destination address. Index is not a smi.
406 // Compute the address.
445 Register address,
452 DCHECK(!object.is(address));
453 DCHECK(!value.is(address));
463 cmpp(value, Operand(address, 0));
494 RecordWriteStub stub(isolate(), object, value, address, remembered_set_action,
507 Move(address, kZapValue, Assembler::RelocInfoNone());
671 // -- rsp[0] : return address
696 int64_t offset = (ref0.address() - ref1.address());
761 // Third parameter is the address of the actual getter function.
2966 void MacroAssembler::Jump(Address destination, RelocInfo::Mode rmode) {
3007 void MacroAssembler::Call(Address destination, RelocInfo::Mode rmode) {
3174 // Compute the handler entry address and jump to it. The handler table is
3207 // Remove the code object and state, compute the handler address in rdi.
3258 // Set the top handler address to next handler past the top ENTRY handler.
3261 // Remove the code object and state, compute the handler address in rdi.
4102 // Get the return address from the stack and restore the frame pointer.
4345 // Move address of new object to result. Use scratch register if available,
4346 // and keep address in scratch until call to UpdateAllocationTopHelper.
4404 // Scratch already contains address of allocation top.
4436 // Load address of new object into result.
4512 // Load address of new object into result.
5012 CodePatcher::CodePatcher(byte* address, int size)
5013 : address_(address),
5015 masm_(NULL, address, size + Assembler::kGap) {
5016 // Create a new macro assembler pointing to the address of the code to patch.