Home
last modified time | relevance | path

Searched refs:register_count (Results 1 – 25 of 391) sorted by relevance

12345678910>>...16

/dports/lang/v8/v8-9.6.180.12/src/baseline/loong64/
H A Dbaseline-compiler-loong64-inl.h36 int register_count = bytecode_->register_count(); in PrologueFillFrame() local
42 DCHECK_LE(new_target_index, register_count); in PrologueFillFrame()
49 register_count -= new_target_index + 1; in PrologueFillFrame()
51 if (register_count < 2 * kLoopUnrollSize) { in PrologueFillFrame()
53 __ masm()->Add_d(sp, sp, Operand(-(kPointerSize * register_count))); in PrologueFillFrame()
54 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
58 __ masm()->Add_d(sp, sp, Operand(-(kPointerSize * register_count))); in PrologueFillFrame()
59 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
/dports/lang/v8/v8-9.6.180.12/src/baseline/mips/
H A Dbaseline-compiler-mips-inl.h36 int register_count = bytecode_->register_count(); in PrologueFillFrame() local
42 DCHECK_LE(new_target_index, register_count); in PrologueFillFrame()
49 register_count -= new_target_index + 1; in PrologueFillFrame()
51 if (register_count < 2 * kLoopUnrollSize) { in PrologueFillFrame()
53 __ masm()->Addu(sp, sp, Operand(-(kPointerSize * register_count))); in PrologueFillFrame()
54 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
58 __ masm()->Addu(sp, sp, Operand(-(kPointerSize * register_count))); in PrologueFillFrame()
59 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
/dports/lang/v8/v8-9.6.180.12/src/baseline/riscv64/
H A Dbaseline-compiler-riscv64-inl.h35 int register_count = bytecode_->register_count(); in PrologueFillFrame() local
41 DCHECK_LE(new_target_index, register_count); in PrologueFillFrame()
48 register_count -= new_target_index + 1; in PrologueFillFrame()
50 if (register_count < 2 * kLoopUnrollSize) { in PrologueFillFrame()
52 __ masm()->Add64(sp, sp, Operand(-(kPointerSize * register_count))); in PrologueFillFrame()
53 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
57 __ masm()->Add64(sp, sp, Operand(-(kPointerSize * register_count))); in PrologueFillFrame()
58 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
/dports/lang/v8/v8-9.6.180.12/src/baseline/mips64/
H A Dbaseline-compiler-mips64-inl.h36 int register_count = bytecode_->register_count(); in PrologueFillFrame() local
42 DCHECK_LE(new_target_index, register_count); in PrologueFillFrame()
49 register_count -= new_target_index + 1; in PrologueFillFrame()
51 if (register_count < 2 * kLoopUnrollSize) { in PrologueFillFrame()
53 __ masm()->Daddu(sp, sp, Operand(-(kPointerSize * register_count))); in PrologueFillFrame()
54 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
58 __ masm()->Daddu(sp, sp, Operand(-(kPointerSize * register_count))); in PrologueFillFrame()
59 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
/dports/lang/v8/v8-9.6.180.12/src/baseline/arm64/
H A Dbaseline-compiler-arm64-inl.h42 int register_count = bytecode_->register_count(); in PrologueFillFrame() local
48 register_count -= 1; in PrologueFillFrame()
55 DCHECK_LE(new_target_index, register_count); in PrologueFillFrame()
71 register_count -= (index - 1 + 2); in PrologueFillFrame()
74 if (register_count < 2 * kLoopUnrollSize) { in PrologueFillFrame()
76 for (int i = 0; i < register_count; i += 2) { in PrologueFillFrame()
85 int first_registers = register_count % kLoopUnrollSize; in PrologueFillFrame()
90 __ Move(scratch, register_count / kLoopUnrollSize); in PrologueFillFrame()
93 DCHECK_GT(register_count / kLoopUnrollSize, 0); in PrologueFillFrame()
/dports/lang/v8/v8-9.6.180.12/src/baseline/x64/
H A Dbaseline-compiler-x64-inl.h41 int register_count = bytecode_->register_count(); in PrologueFillFrame() local
47 DCHECK_LE(new_target_index, register_count); in PrologueFillFrame()
53 register_count -= new_target_index + 1; in PrologueFillFrame()
55 if (register_count < 2 * kLoopUnrollSize) { in PrologueFillFrame()
57 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
62 int first_registers = register_count % kLoopUnrollSize; in PrologueFillFrame()
68 __ Move(scratch, register_count / kLoopUnrollSize); in PrologueFillFrame()
71 DCHECK_GT(register_count / kLoopUnrollSize, 0); in PrologueFillFrame()
/dports/lang/v8/v8-9.6.180.12/src/baseline/ia32/
H A Dbaseline-compiler-ia32-inl.h39 int register_count = bytecode_->register_count(); in PrologueFillFrame() local
45 DCHECK_LE(new_target_index, register_count); in PrologueFillFrame()
51 register_count -= new_target_index + 1; in PrologueFillFrame()
53 if (register_count < 2 * kLoopUnrollSize) { in PrologueFillFrame()
55 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
60 int first_registers = register_count % kLoopUnrollSize; in PrologueFillFrame()
66 __ Move(scratch, register_count / kLoopUnrollSize); in PrologueFillFrame()
69 DCHECK_GT(register_count / kLoopUnrollSize, 0); in PrologueFillFrame()
/dports/lang/v8/v8-9.6.180.12/src/baseline/arm/
H A Dbaseline-compiler-arm-inl.h40 int register_count = bytecode_->register_count(); in PrologueFillFrame() local
46 DCHECK_LE(new_target_index, register_count); in PrologueFillFrame()
52 register_count -= new_target_index + 1; in PrologueFillFrame()
54 if (register_count < 2 * kLoopUnrollSize) { in PrologueFillFrame()
56 for (int i = 0; i < register_count; ++i) { in PrologueFillFrame()
62 int first_registers = register_count % kLoopUnrollSize; in PrologueFillFrame()
69 __ Move(scratch, register_count / kLoopUnrollSize); in PrologueFillFrame()
72 DCHECK_GT(register_count / kLoopUnrollSize, 0); in PrologueFillFrame()
/dports/lang/v8/v8-9.6.180.12/src/compiler/
H A Dbytecode-liveness-map.cc11 BytecodeLiveness::BytecodeLiveness(int register_count, Zone* zone) in BytecodeLiveness() argument
12 : in(zone->New<BytecodeLivenessState>(register_count, zone)), in BytecodeLiveness()
13 out(zone->New<BytecodeLivenessState>(register_count, zone)) {} in BytecodeLiveness()
23 int register_count, in InitializeLiveness() argument
27 [&]() { return BytecodeLiveness(register_count, zone); }) in InitializeLiveness()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/compiler/
H A Dbytecode-liveness-map.cc11 BytecodeLiveness::BytecodeLiveness(int register_count, Zone* zone) in BytecodeLiveness() argument
12 : in(new (zone) BytecodeLivenessState(register_count, zone)), in BytecodeLiveness()
13 out(new (zone) BytecodeLivenessState(register_count, zone)) {} in BytecodeLiveness()
23 int register_count, in InitializeLiveness() argument
27 [&]() { return BytecodeLiveness(register_count, zone); }, in InitializeLiveness()
/dports/www/node10/node-v10.24.1/deps/v8/src/compiler/
H A Dbytecode-liveness-map.cc11 BytecodeLiveness::BytecodeLiveness(int register_count, Zone* zone) in BytecodeLiveness() argument
12 : in(new (zone) BytecodeLivenessState(register_count, zone)), in BytecodeLiveness()
13 out(new (zone) BytecodeLivenessState(register_count, zone)) {} in BytecodeLiveness()
23 int register_count, in InitializeLiveness() argument
27 [&]() { return BytecodeLiveness(register_count, zone); }, in InitializeLiveness()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/compiler/
H A Dbytecode-liveness-map.cc11 BytecodeLiveness::BytecodeLiveness(int register_count, Zone* zone) in BytecodeLiveness() argument
12 : in(zone->New<BytecodeLivenessState>(register_count, zone)), in BytecodeLiveness()
13 out(zone->New<BytecodeLivenessState>(register_count, zone)) {} in BytecodeLiveness()
23 int register_count, in InitializeLiveness() argument
27 [&]() { return BytecodeLiveness(register_count, zone); }) in InitializeLiveness()
/dports/lang/v8/v8-9.6.180.12/src/execution/ia32/
H A Dframe-constants-ia32.cc21 int UnoptimizedFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
22 return register_count; in RegisterStackSlotCount()
25 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
26 USE(register_count); in PaddingSlotCount()
/dports/lang/v8/v8-9.6.180.12/src/execution/x64/
H A Dframe-constants-x64.cc20 int UnoptimizedFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
21 return register_count; in RegisterStackSlotCount()
24 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
25 USE(register_count); in PaddingSlotCount()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/execution/ia32/
H A Dframe-constants-ia32.cc21 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
22 return register_count; in RegisterStackSlotCount()
25 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
26 USE(register_count); in PaddingSlotCount()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/execution/x64/
H A Dframe-constants-x64.cc20 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
21 return register_count; in RegisterStackSlotCount()
24 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
25 USE(register_count); in PaddingSlotCount()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/execution/x64/
H A Dframe-constants-x64.cc20 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
21 return register_count; in RegisterStackSlotCount()
24 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
25 USE(register_count); in PaddingSlotCount()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/execution/ia32/
H A Dframe-constants-ia32.cc21 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
22 return register_count; in RegisterStackSlotCount()
25 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
26 USE(register_count); in PaddingSlotCount()
/dports/www/node10/node-v10.24.1/deps/v8/src/ia32/
H A Dframe-constants-ia32.cc21 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
22 return register_count; in RegisterStackSlotCount()
25 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
26 USE(register_count); in PaddingSlotCount()
/dports/www/node10/node-v10.24.1/deps/v8/src/x64/
H A Dframe-constants-x64.cc21 int InterpreterFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
22 return register_count; in RegisterStackSlotCount()
25 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
26 USE(register_count); in PaddingSlotCount()
/dports/lang/v8/v8-9.6.180.12/src/execution/arm/
H A Dframe-constants-arm.cc20 int UnoptimizedFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
21 return register_count; in RegisterStackSlotCount()
24 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
25 USE(register_count); in PaddingSlotCount()
/dports/lang/v8/v8-9.6.180.12/src/execution/loong64/
H A Dframe-constants-loong64.cc20 int UnoptimizedFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
21 return register_count; in RegisterStackSlotCount()
24 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
25 USE(register_count); in PaddingSlotCount()
/dports/lang/v8/v8-9.6.180.12/src/execution/mips/
H A Dframe-constants-mips.cc20 int UnoptimizedFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
21 return register_count; in RegisterStackSlotCount()
24 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
25 USE(register_count); in PaddingSlotCount()
/dports/lang/v8/v8-9.6.180.12/src/execution/riscv64/
H A Dframe-constants-riscv64.cc20 int UnoptimizedFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
21 return register_count; in RegisterStackSlotCount()
24 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
25 USE(register_count); in PaddingSlotCount()
/dports/lang/v8/v8-9.6.180.12/src/execution/s390/
H A Dframe-constants-s390.cc20 int UnoptimizedFrameConstants::RegisterStackSlotCount(int register_count) { in RegisterStackSlotCount() argument
21 return register_count; in RegisterStackSlotCount()
24 int BuiltinContinuationFrameConstants::PaddingSlotCount(int register_count) { in PaddingSlotCount() argument
25 USE(register_count); in PaddingSlotCount()

12345678910>>...16