Home
last modified time | relevance | path

Searched refs:kSystemPointerSize (Results 1 – 25 of 222) sorted by relevance

123456789

/third_party/node/deps/v8/src/execution/
Dframe-constants.h53 static constexpr int kCallerFPOffset = 0 * kSystemPointerSize;
63 kFixedFrameSizeAboveFp / kSystemPointerSize;
65 FLAG_enable_embedded_constant_pool ? kSystemPointerSize : 0;
66 static constexpr int kCPSlotCount = kCPSlotSize / kSystemPointerSize;
68 kCPSlotSize ? -1 * kSystemPointerSize : 0;
69 static constexpr int kContextOrFrameTypeSize = kSystemPointerSize;
112 3 * kSystemPointerSize + kCPSlotSize;
116 kFixedFrameSizeFromFp / kSystemPointerSize;
117 static constexpr int kFixedSlotCount = kFixedFrameSize / kSystemPointerSize;
119 static constexpr int kFunctionOffset = -2 * kSystemPointerSize - kCPSlotSize;
[all …]
Disolate-data.h27 V(kCageBaseOffset, kSystemPointerSize, cage_base) \
31 Builtins::kBuiltinTier0Count* kSystemPointerSize, \
34 Builtins::kBuiltinTier0Count* kSystemPointerSize, builtin_tier0_table) \
36 V(kEmbedderDataOffset, Internals::kNumIsolateDataSlots* kSystemPointerSize, \
38 V(kFastCCallCallerFPOffset, kSystemPointerSize, fast_c_call_caller_fp) \
39 V(kFastCCallCallerPCOffset, kSystemPointerSize, fast_c_call_caller_pc) \
40 V(kFastApiCallTargetOffset, kSystemPointerSize, fast_api_call_target) \
43 V(kRootsTableOffset, RootsTable::kEntriesCount* kSystemPointerSize, \
48 V(kBuiltinEntryTableOffset, Builtins::kBuiltinCount* kSystemPointerSize, \
50 V(kBuiltinTableOffset, Builtins::kBuiltinCount* kSystemPointerSize, \
[all …]
/third_party/node/deps/v8/src/regexp/x64/
Dregexp-macro-assembler-x64.h97 static const int kReturn_eip = kFramePointer + kSystemPointerSize;
98 static const int kFrameAlign = kReturn_eip + kSystemPointerSize;
107 static const int kStartIndex = kInputString + kSystemPointerSize;
108 static const int kInputStart = kStartIndex + kSystemPointerSize;
109 static const int kInputEnd = kInputStart + kSystemPointerSize;
110 static const int kRegisterOutput = kInputEnd + kSystemPointerSize;
115 static const int kNumOutputRegisters = kRegisterOutput + kSystemPointerSize;
117 static const int kDirectCall = kNumOutputRegisters + kSystemPointerSize;
118 static const int kIsolate = kDirectCall + kSystemPointerSize;
123 static const int kInputString = kFramePointer - kSystemPointerSize;
[all …]
/third_party/node/deps/v8/src/execution/ia32/
Dframe-constants-ia32.h20 static constexpr int kCallerFPOffset = -6 * kSystemPointerSize;
24 static constexpr int kRootRegisterValueOffset = +2 * kSystemPointerSize;
27 static constexpr int kNewTargetArgOffset = +3 * kSystemPointerSize;
28 static constexpr int kFunctionArgOffset = +4 * kSystemPointerSize;
29 static constexpr int kReceiverArgOffset = +5 * kSystemPointerSize;
30 static constexpr int kArgcOffset = +6 * kSystemPointerSize;
31 static constexpr int kArgvOffset = +7 * kSystemPointerSize;
34 static constexpr int kMicrotaskQueueArgOffset = +3 * kSystemPointerSize;
46 kNumberOfSavedGpParamRegs * kSystemPointerSize +
66 -kFixedFrameSizeFromFp - kNumPushedGpRegisters * kSystemPointerSize;
[all …]
/third_party/node/deps/v8/src/regexp/ia32/
Dregexp-macro-assembler-ia32.h99 static const int kReturn_eip = kFramePointer + kSystemPointerSize;
100 static const int kFrameAlign = kReturn_eip + kSystemPointerSize;
103 static const int kStartIndex = kInputString + kSystemPointerSize;
104 static const int kInputStart = kStartIndex + kSystemPointerSize;
105 static const int kInputEnd = kInputStart + kSystemPointerSize;
106 static const int kRegisterOutput = kInputEnd + kSystemPointerSize;
110 static const int kNumOutputRegisters = kRegisterOutput + kSystemPointerSize;
111 static const int kDirectCall = kNumOutputRegisters + kSystemPointerSize;
112 static const int kIsolate = kDirectCall + kSystemPointerSize;
116 static const int kBackup_esi = kFramePointer - kSystemPointerSize;
[all …]
Dregexp-macro-assembler-ia32.cc203 __ add(backtrack_stackpointer(), Immediate(kSystemPointerSize)); // Pop. in CheckGreedyLoop()
305 __ add(esp, Immediate(kSystemPointerSize)); in CheckNotBackReferenceIgnoreCase()
331 __ mov(Operand(esp, 3 * kSystemPointerSize), in CheckNotBackReferenceIgnoreCase()
334 __ mov(Operand(esp, 2 * kSystemPointerSize), ebx); in CheckNotBackReferenceIgnoreCase()
342 __ mov(Operand(esp, 1 * kSystemPointerSize), edi); in CheckNotBackReferenceIgnoreCase()
346 __ mov(Operand(esp, 0 * kSystemPointerSize), edx); in CheckNotBackReferenceIgnoreCase()
524 __ mov(Operand(esp, 0 * kSystemPointerSize), current_character()); in CallIsCharacterInRangeArray()
525 __ mov(Operand(esp, 1 * kSystemPointerSize), GetOrAddRangeArray(ranges)); in CallIsCharacterInRangeArray()
526 __ mov(Operand(esp, 2 * kSystemPointerSize), in CallIsCharacterInRangeArray()
755 kLastCalleeSaveRegister - kSystemPointerSize); in GetCode()
[all …]
/third_party/node/deps/v8/src/execution/x64/
Dframe-constants-x64.h29 static constexpr int kCallerFPOffset = -3 * kSystemPointerSize +
30 -7 * kSystemPointerSize -
34 static constexpr int kArgcOffset = 6 * kSystemPointerSize;
35 static constexpr int kArgvOffset = 7 * kSystemPointerSize;
42 -3 * kSystemPointerSize + -5 * kSystemPointerSize;
55 kNumberOfSavedGpParamRegs * kSystemPointerSize +
73 -kFixedFrameSizeFromFp - kNumPushedGpRegisters * kSystemPointerSize;
83 base::bits::CountPopulation(lower_regs) * kSystemPointerSize; in GetPushedGpRegisterOffset()
/third_party/node/deps/v8/src/regexp/ppc/
Dregexp-macro-assembler-ppc.h100 static const int kReturnAddress = kStoredRegisters + 7 * kSystemPointerSize;
101 static const int kCallerFrame = kReturnAddress + kSystemPointerSize;
105 static const int kIsolate = kFramePointer - kSystemPointerSize;
106 static const int kDirectCall = kIsolate - kSystemPointerSize;
107 static const int kNumOutputRegisters = kDirectCall - kSystemPointerSize;
108 static const int kRegisterOutput = kNumOutputRegisters - kSystemPointerSize;
109 static const int kInputEnd = kRegisterOutput - kSystemPointerSize;
110 static const int kInputStart = kInputEnd - kSystemPointerSize;
111 static const int kStartIndex = kInputStart - kSystemPointerSize;
112 static const int kInputString = kStartIndex - kSystemPointerSize;
[all …]
/third_party/node/deps/v8/src/regexp/riscv64/
Dregexp-macro-assembler-riscv64.h110 kStoredRegisters + kNumCalleeRegsToRetain * kSystemPointerSize;
116 static const int kIsolate = kFramePointer - kSystemPointerSize;
117 static const int kDirectCall = kIsolate - kSystemPointerSize;
118 static const int kNumOutputRegisters = kDirectCall - kSystemPointerSize;
119 static const int kRegisterOutput = kNumOutputRegisters - kSystemPointerSize;
120 static const int kInputEnd = kRegisterOutput - kSystemPointerSize;
121 static const int kInputStart = kInputEnd - kSystemPointerSize;
122 static const int kStartIndex = kInputStart - kSystemPointerSize;
123 static const int kInputString = kStartIndex - kSystemPointerSize;
126 static const int kSuccessfulCaptures = kInputString - kSystemPointerSize;
[all …]
/third_party/node/deps/v8/src/regexp/loong64/
Dregexp-macro-assembler-loong64.h104 static const int kReturnAddress = kStoredRegisters + 9 * kSystemPointerSize;
110 static const int kIsolate = kFramePointer - kSystemPointerSize;
111 static const int kDirectCall = kIsolate - kSystemPointerSize;
112 static const int kNumOutputRegisters = kDirectCall - kSystemPointerSize;
113 static const int kRegisterOutput = kNumOutputRegisters - kSystemPointerSize;
114 static const int kInputEnd = kRegisterOutput - kSystemPointerSize;
115 static const int kInputStart = kInputEnd - kSystemPointerSize;
116 static const int kStartIndex = kInputStart - kSystemPointerSize;
117 static const int kInputString = kStartIndex - kSystemPointerSize;
120 static const int kSuccessfulCaptures = kInputString - kSystemPointerSize;
[all …]
/third_party/node/deps/v8/src/regexp/mips64/
Dregexp-macro-assembler-mips64.h105 static const int kReturnAddress = kStoredRegisters + 9 * kSystemPointerSize;
111 static const int kIsolate = kFramePointer - kSystemPointerSize;
112 static const int kDirectCall = kIsolate - kSystemPointerSize;
113 static const int kNumOutputRegisters = kDirectCall - kSystemPointerSize;
114 static const int kRegisterOutput = kNumOutputRegisters - kSystemPointerSize;
115 static const int kInputEnd = kRegisterOutput - kSystemPointerSize;
116 static const int kInputStart = kInputEnd - kSystemPointerSize;
117 static const int kStartIndex = kInputStart - kSystemPointerSize;
118 static const int kInputString = kStartIndex - kSystemPointerSize;
121 static const int kSuccessfulCaptures = kInputString - kSystemPointerSize;
[all …]
/third_party/node/deps/v8/src/diagnostics/arm/
Dunwinder-arm.cc25 reinterpret_cast<void*>(Load(base_addr + 0 * i::kSystemPointerSize)); in GetCalleeSavedRegistersFromEntryFrame()
27 reinterpret_cast<void*>(Load(base_addr + 1 * i::kSystemPointerSize)); in GetCalleeSavedRegistersFromEntryFrame()
29 reinterpret_cast<void*>(Load(base_addr + 2 * i::kSystemPointerSize)); in GetCalleeSavedRegistersFromEntryFrame()
31 reinterpret_cast<void*>(Load(base_addr + 3 * i::kSystemPointerSize)); in GetCalleeSavedRegistersFromEntryFrame()
33 reinterpret_cast<void*>(Load(base_addr + 4 * i::kSystemPointerSize)); in GetCalleeSavedRegistersFromEntryFrame()
35 reinterpret_cast<void*>(Load(base_addr + 5 * i::kSystemPointerSize)); in GetCalleeSavedRegistersFromEntryFrame()
37 reinterpret_cast<void*>(Load(base_addr + 6 * i::kSystemPointerSize)); in GetCalleeSavedRegistersFromEntryFrame()
/third_party/node/deps/v8/src/execution/arm/
Dframe-constants-arm.h36 static constexpr int kCallerFPOffset = -3 * kSystemPointerSize;
39 static constexpr int kArgcOffset = +0 * kSystemPointerSize;
40 static constexpr int kArgvOffset = +1 * kSystemPointerSize;
45 kDirectCallerFPOffset + 1 * kSystemPointerSize;
49 kSystemPointerSize +
55 (kNumCalleeSaved - 1) * kSystemPointerSize;
92 kSystemPointerSize * kNumPushedGpRegisters;
102 base::bits::CountPopulation(lower_regs) * kSystemPointerSize; in GetPushedGpRegisterOffset()
/third_party/node/deps/v8/src/regexp/s390/
Dregexp-macro-assembler-s390.h104 static const int kIsolate = kFramePointer - kSystemPointerSize;
105 static const int kDirectCall = kIsolate - kSystemPointerSize;
106 static const int kNumOutputRegisters = kDirectCall - kSystemPointerSize;
107 static const int kRegisterOutput = kNumOutputRegisters - kSystemPointerSize;
108 static const int kInputEnd = kRegisterOutput - kSystemPointerSize;
109 static const int kInputStart = kInputEnd - kSystemPointerSize;
110 static const int kStartIndex = kInputStart - kSystemPointerSize;
111 static const int kInputString = kStartIndex - kSystemPointerSize;
114 static const int kSuccessfulCaptures = kInputString - kSystemPointerSize;
116 kSuccessfulCaptures - kSystemPointerSize;
[all …]
/third_party/node/deps/v8/src/execution/arm64/
Dframe-constants-arm64.h52 static constexpr int kCallerFPOffset = -3 * kSystemPointerSize;
53 static constexpr int kFixedFrameSize = 4 * kSystemPointerSize;
59 18 * kSystemPointerSize;
69 kDirectCallerFPOffset + 1 * kSystemPointerSize;
71 kDirectCallerPCOffset + 1 * kSystemPointerSize +
89 kNumberOfSavedGpParamRegs * kSystemPointerSize +
119 kSystemPointerSize * kNumPushedGpRegisters;
129 base::bits::CountPopulation(lower_regs) * kSystemPointerSize; in GetPushedGpRegisterOffset()
/third_party/node/deps/v8/src/interpreter/
Dbytecode-register.cc14 kSystemPointerSize;
18 kSystemPointerSize;
22 kSystemPointerSize;
26 kSystemPointerSize;
30 kSystemPointerSize;
34 kSystemPointerSize;
38 kSystemPointerSize;
/third_party/node/deps/v8/src/regexp/arm64/
Dregexp-macro-assembler-arm64.h103 static const int kReturnAddress = kFramePointer + kSystemPointerSize;
106 static const int kCalleeSavedRegisters = kReturnAddress + kSystemPointerSize;
110 static const int kIsolate = -kSystemPointerSize;
111 static const int kDirectCall = kIsolate - kSystemPointerSize;
112 static const int kOutputSize = kDirectCall - kSystemPointerSize;
113 static const int kInput = kOutputSize - kSystemPointerSize;
116 static const int kSuccessCounter = kInput - kSystemPointerSize;
117 static const int kBacktrackCount = kSuccessCounter - kSystemPointerSize;
122 kBacktrackCount - kSystemPointerSize;
125 kRegExpStackBasePointer - kSystemPointerSize;
/third_party/node/deps/v8/src/execution/s390/
Dframe-constants-s390.h18 static constexpr int kCallerFPOffset = -3 * kSystemPointerSize;
21 static constexpr int kArgvOffset = 20 * kSystemPointerSize;
40 kNumberOfSavedGpParamRegs * kSystemPointerSize +
59 kSystemPointerSize * kNumPushedGpRegisters;
69 base::bits::CountPopulation(lower_regs) * kSystemPointerSize; in GetPushedGpRegisterOffset()
/third_party/node/deps/v8/src/execution/mips/
Dframe-constants-mips.h20 static constexpr int kCallerFPOffset = -3 * kSystemPointerSize;
23 static constexpr int kArgcOffset = +0 * kSystemPointerSize;
24 static constexpr int kArgvOffset = +1 * kSystemPointerSize;
59 -kFixedFrameSizeFromFp - kNumPushedGpRegisters * kSystemPointerSize;
69 base::bits::CountPopulation(lower_regs) * kSystemPointerSize; in GetPushedGpRegisterOffset()
/third_party/node/deps/v8/src/execution/ppc/
Dframe-constants-ppc.h20 ? -4 * kSystemPointerSize
21 : -3 * kSystemPointerSize;
36 kNumberOfSavedGpParamRegs * kSystemPointerSize +
60 kSystemPointerSize * kNumPushedGpRegisters;
70 base::bits::CountPopulation(lower_regs) * kSystemPointerSize; in GetPushedGpRegisterOffset()
/third_party/node/deps/v8/src/execution/riscv64/
Dframe-constants-riscv64.h21 static constexpr int kCallerFPOffset = -3 * kSystemPointerSize;
40 kNumberOfSavedGpParamRegs * kSystemPointerSize +
58 -kFixedFrameSizeFromFp - kNumPushedGpRegisters * kSystemPointerSize;
68 base::bits::CountPopulation(lower_regs) * kSystemPointerSize; in GetPushedGpRegisterOffset()
/third_party/node/deps/v8/src/wasm/
Dwasm-objects.h377 V(kMemoryStartOffset, kSystemPointerSize) \
379 V(kStackLimitAddressOffset, kSystemPointerSize) \
380 V(kImportedFunctionTargetsOffset, kSystemPointerSize) \
381 V(kIndirectFunctionTableTargetsOffset, kSystemPointerSize) \
382 V(kIndirectFunctionTableSigIdsOffset, kSystemPointerSize) \
383 V(kGlobalsStartOffset, kSystemPointerSize) \
384 V(kImportedMutableGlobalsOffset, kSystemPointerSize) \
385 V(kIsolateRootOffset, kSystemPointerSize) \
386 V(kJumpTableStartOffset, kSystemPointerSize) \
389 V(kNewAllocationLimitAddressOffset, kSystemPointerSize) \
[all …]
/third_party/node/deps/v8/src/codegen/riscv64/
Dmacro-assembler-riscv64.h70 #define SmiWordOffset(offset) (offset + kSystemPointerSize / 2)
88 int offset = (index - 5) * kSystemPointerSize + kCArgsSlotsSize; in CFunctionArgumentOperand()
290 Add64(sp, sp, Operand(-kSystemPointerSize)); in push()
299 Sub64(sp, sp, Operand(2 * kSystemPointerSize)); in Push()
300 Sd(src1, MemOperand(sp, 1 * kSystemPointerSize)); in Push()
301 Sd(src2, MemOperand(sp, 0 * kSystemPointerSize)); in Push()
306 Sub64(sp, sp, Operand(3 * kSystemPointerSize)); in Push()
307 Sd(src1, MemOperand(sp, 2 * kSystemPointerSize)); in Push()
308 Sd(src2, MemOperand(sp, 1 * kSystemPointerSize)); in Push()
309 Sd(src3, MemOperand(sp, 0 * kSystemPointerSize)); in Push()
[all …]
/third_party/node/deps/v8/src/builtins/s390/
Dbuiltins-s390.cc392 kSystemPointerSize)); in Generate_JSBuiltinsConstructStubHelper()
506 kSystemPointerSize)); in Generate_JSConstructStubGeneric()
766 (kNumCalleeSaved + 2) * kSystemPointerSize +
767 kNumCalleeSavedDoubles * kDoubleSize + 5 * kSystemPointerSize +
768 EntryFrameConstants::kCallerFPOffset - kSystemPointerSize;
823 __ lay(sp, MemOperand(sp, -10 * kSystemPointerSize)); in Generate_JSEntryVariant()
825 pushed_stack_space += (kNumCalleeSaved + 2) * kSystemPointerSize; in Generate_JSEntryVariant()
841 __ lay(sp, MemOperand(sp, -5 * kSystemPointerSize)); in Generate_JSEntryVariant()
842 pushed_stack_space += 5 * kSystemPointerSize; in Generate_JSEntryVariant()
853 __ StoreMultipleP(r6, r9, MemOperand(sp, kSystemPointerSize)); in Generate_JSEntryVariant()
[all …]
/third_party/node/deps/v8/src/builtins/ppc/
Dbuiltins-ppc.cc308 __ LoadU64WithUpdate(ip, MemOperand(scratch, -kSystemPointerSize)); in Generate_PushArguments()
350 Operand(StandardFrameConstants::kCallerSPOffset + kSystemPointerSize)); in Generate_JSBuiltinsConstructStubHelper()
518 Operand(StandardFrameConstants::kCallerSPOffset + kSystemPointerSize)); in Generate_JSConstructStubGeneric()
821 __ StoreU64(r0, MemOperand(sp, kStackFrameLRSlot * kSystemPointerSize)); in Generate_JSEntryVariant()
963 __ LoadU64(r0, MemOperand(sp, kStackFrameLRSlot * kSystemPointerSize)); in Generate_JSEntryVariant()
1741 __ LoadU64(r5, MemOperand(r5, -kSystemPointerSize)); in Generate_InterpreterPushArgsThenCallImpl()
1793 __ subi(r7, r7, Operand(kSystemPointerSize)); in Generate_InterpreterPushArgsThenConstructImpl()
1975 kSystemPointerSize + in Generate_ContinueToBuiltinHelper()
2041 __ LoadU64(r3, MemOperand(sp, 0 * kSystemPointerSize)); in Generate_NotifyDeoptimized()
2042 __ addi(sp, sp, Operand(1 * kSystemPointerSize)); in Generate_NotifyDeoptimized()
[all …]

123456789