-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
Expand file tree
/
Copy pathliftoff-assembler.cc
More file actions
1239 lines (1142 loc) Β· 47.7 KB
/
liftoff-assembler.cc
File metadata and controls
1239 lines (1142 loc) Β· 47.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/wasm/baseline/liftoff-assembler.h"
#include <sstream>
#include "src/base/optional.h"
#include "src/base/platform/memory.h"
#include "src/codegen/assembler-inl.h"
#include "src/codegen/macro-assembler-inl.h"
#include "src/compiler/wasm-compiler.h"
#include "src/utils/ostreams.h"
#include "src/wasm/baseline/liftoff-assembler-inl.h"
#include "src/wasm/baseline/liftoff-register.h"
#include "src/wasm/baseline/parallel-move-inl.h"
#include "src/wasm/object-access.h"
#include "src/wasm/wasm-linkage.h"
#include "src/wasm/wasm-opcodes.h"
namespace v8::internal::wasm {
using VarState = LiftoffAssembler::VarState;
using ValueKindSig = LiftoffAssembler::ValueKindSig;
constexpr ValueKind LiftoffAssembler::kIntPtrKind;
constexpr ValueKind LiftoffAssembler::kSmiKind;
namespace {
class RegisterReuseMap {
public:
void Add(LiftoffRegister src, LiftoffRegister dst) {
if ([[maybe_unused]] auto previous = Lookup(src)) {
DCHECK_EQ(previous, dst);
return;
}
map_.emplace_back(src);
map_.emplace_back(dst);
}
base::Optional<LiftoffRegister> Lookup(LiftoffRegister src) {
for (auto it = map_.begin(), end = map_.end(); it != end; it += 2) {
if (it->is_gp_pair() == src.is_gp_pair() &&
it->is_fp_pair() == src.is_fp_pair() && *it == src)
return *(it + 1);
}
return {};
}
private:
// {map_} holds pairs of <src, dst>.
base::SmallVector<LiftoffRegister, 8> map_;
};
enum MergeKeepStackSlots : bool {
kKeepStackSlots = true,
kTurnStackSlotsIntoRegisters = false
};
enum MergeAllowConstants : bool {
kConstantsAllowed = true,
kConstantsNotAllowed = false
};
enum MergeAllowRegisters : bool {
kRegistersAllowed = true,
kRegistersNotAllowed = false
};
enum ReuseRegisters : bool {
kReuseRegisters = true,
kNoReuseRegisters = false
};
// {InitMergeRegion} is a helper used by {MergeIntoNewState} to initialize
// a part of the target stack ([target, target+count]) from [source,
// source+count]. The parameters specify how to initialize the part. The goal is
// to set up the region such that later merges (via {MergeStackWith} /
// {MergeFullStackWith} can successfully transfer their values to this new
// state.
void InitMergeRegion(LiftoffAssembler::CacheState* target_state,
const VarState* source, VarState* target, uint32_t count,
MergeKeepStackSlots keep_stack_slots,
MergeAllowConstants allow_constants,
MergeAllowRegisters allow_registers,
ReuseRegisters reuse_registers, LiftoffRegList used_regs,
int new_stack_offset, ParallelMove& parallel_move) {
RegisterReuseMap register_reuse_map;
for (const VarState* source_end = source + count; source < source_end;
++source, ++target) {
if (source->is_stack() && keep_stack_slots) {
*target = *source;
// If {new_stack_offset} is set, we want to recompute stack offsets for
// the region we are initializing such that they are contiguous. If
// {new_stack_offset} is zero (which is an illegal stack offset), we just
// keep the source offsets.
if (new_stack_offset) {
new_stack_offset =
LiftoffAssembler::NextSpillOffset(source->kind(), new_stack_offset);
if (new_stack_offset != source->offset()) {
target->set_offset(new_stack_offset);
parallel_move.TransferToStack(new_stack_offset, *source);
}
}
continue;
}
if (source->is_const() && allow_constants) {
*target = *source;
DCHECK(!new_stack_offset);
continue;
}
base::Optional<LiftoffRegister> reg;
bool needs_reg_transfer = true;
if (allow_registers) {
// First try: Keep the same register, if it's free.
if (source->is_reg() && target_state->is_free(source->reg())) {
reg = source->reg();
needs_reg_transfer = false;
}
// Second try: Use the same register we used before (if we reuse
// registers).
if (!reg && reuse_registers) {
reg = register_reuse_map.Lookup(source->reg());
}
// Third try: Use any free register.
RegClass rc = reg_class_for(source->kind());
if (!reg && target_state->has_unused_register(rc, used_regs)) {
reg = target_state->unused_register(rc, used_regs);
}
}
// See above: Recompute the stack offset if requested.
int target_offset = source->offset();
if (new_stack_offset) {
new_stack_offset =
LiftoffAssembler::NextSpillOffset(source->kind(), new_stack_offset);
target_offset = new_stack_offset;
}
if (reg) {
if (needs_reg_transfer) parallel_move.LoadIntoRegister(*reg, *source);
if (reuse_registers) register_reuse_map.Add(source->reg(), *reg);
target_state->inc_used(*reg);
*target = VarState(source->kind(), *reg, target_offset);
} else {
// No free register; make this a stack slot.
*target = VarState(source->kind(), target_offset);
parallel_move.TransferToStack(target_offset, *source);
}
}
}
} // namespace
LiftoffAssembler::CacheState LiftoffAssembler::MergeIntoNewState(
uint32_t num_locals, uint32_t arity, uint32_t stack_depth) {
CacheState target{zone()};
// The source state looks like this:
// |------locals------|---(stack prefix)---|--(discarded)--|----merge----|
// <-- num_locals --> <-- stack_depth --> <-- arity -->
//
// We compute the following target state from it:
// |------locals------|---(stack prefix)----|----merge----|
// <-- num_locals --> <-- stack_depth --> <-- arity -->
//
// The target state will have dropped the "(discarded)" region, and the
// "locals" and "merge" regions have been modified to avoid any constants and
// avoid duplicate register uses. This ensures that later merges can
// successfully transfer into the target state.
// The "stack prefix" region will be identical for any source that merges into
// that state.
if (cache_state_.cached_instance_data != no_reg) {
target.SetInstanceCacheRegister(cache_state_.cached_instance_data);
}
DCHECK_EQ(cache_state_.cached_mem_start == no_reg,
cache_state_.cached_mem_index == CacheState::kNoCachedMemIndex);
if (cache_state_.cached_mem_start != no_reg) {
target.SetMemStartCacheRegister(cache_state_.cached_mem_start,
cache_state_.cached_mem_index);
}
uint32_t target_height = num_locals + stack_depth + arity;
target.stack_state.resize_no_init(target_height);
const VarState* source_begin = cache_state_.stack_state.data();
VarState* target_begin = target.stack_state.data();
// Compute the starts of the different regions, for source and target (see
// pictograms above).
const VarState* locals_source = source_begin;
const VarState* stack_prefix_source = source_begin + num_locals;
const VarState* discarded_source = stack_prefix_source + stack_depth;
const VarState* merge_source = cache_state_.stack_state.end() - arity;
VarState* locals_target = target_begin;
VarState* stack_prefix_target = target_begin + num_locals;
VarState* merge_target = target_begin + num_locals + stack_depth;
// Try to keep locals and the merge region in their registers. Registers used
// multiple times need to be copied to another free register. Compute the list
// of used registers.
LiftoffRegList used_regs;
for (auto& src : base::VectorOf(locals_source, num_locals)) {
if (src.is_reg()) used_regs.set(src.reg());
}
// If there is more than one operand in the merge region, a stack-to-stack
// move can interfere with a register reload, which would not be handled
// correctly by the ParallelMove. To avoid this, spill all registers in
// this region.
MergeAllowRegisters allow_registers =
arity <= 1 ? kRegistersAllowed : kRegistersNotAllowed;
if (allow_registers) {
for (auto& src : base::VectorOf(merge_source, arity)) {
if (src.is_reg()) used_regs.set(src.reg());
}
}
ParallelMove parallel_move{this};
// The merge region is often empty, hence check for this before doing any
// work (even though not needed for correctness).
if (arity) {
// Initialize the merge region. If this region moves, try to turn stack
// slots into registers since we need to load the value anyways.
MergeKeepStackSlots keep_merge_stack_slots =
target_height == cache_state_.stack_height()
? kKeepStackSlots
: kTurnStackSlotsIntoRegisters;
// Shift spill offsets down to keep slots contiguous. We place the merge
// region right after the "stack prefix", if it exists.
int merge_region_stack_offset = discarded_source == source_begin
? StaticStackFrameSize()
: discarded_source[-1].offset();
InitMergeRegion(&target, merge_source, merge_target, arity,
keep_merge_stack_slots, kConstantsNotAllowed,
allow_registers, kNoReuseRegisters, used_regs,
merge_region_stack_offset, parallel_move);
}
// Initialize the locals region. Here, stack slots stay stack slots (because
// they do not move). Try to keep register in registers, but avoid duplicates.
if (num_locals) {
InitMergeRegion(&target, locals_source, locals_target, num_locals,
kKeepStackSlots, kConstantsNotAllowed, kRegistersAllowed,
kNoReuseRegisters, used_regs, 0, parallel_move);
}
// Consistency check: All the {used_regs} are really in use now.
DCHECK_EQ(used_regs, target.used_registers & used_regs);
// Last, initialize the "stack prefix" region. Here, constants are allowed,
// but registers which are already used for the merge region or locals must be
// moved to other registers or spilled. If a register appears twice in the
// source region, ensure to use the same register twice in the target region.
if (stack_depth) {
InitMergeRegion(&target, stack_prefix_source, stack_prefix_target,
stack_depth, kKeepStackSlots, kConstantsAllowed,
kRegistersAllowed, kReuseRegisters, used_regs, 0,
parallel_move);
}
return target;
}
void LiftoffAssembler::CacheState::Steal(CacheState& source) {
// Just use the move assignment operator.
*this = std::move(source);
}
void LiftoffAssembler::CacheState::Split(const CacheState& source) {
// Call the private copy assignment operator.
*this = source;
}
namespace {
int GetSafepointIndexForStackSlot(const VarState& slot) {
// index = 0 is for the stack slot at 'fp + kFixedFrameSizeAboveFp -
// kSystemPointerSize', the location of the current stack slot is 'fp -
// slot.offset()'. The index we need is therefore '(fp +
// kFixedFrameSizeAboveFp - kSystemPointerSize) - (fp - slot.offset())' =
// 'slot.offset() + kFixedFrameSizeAboveFp - kSystemPointerSize'.
// Concretely, the index of the first stack slot is '4'.
return (slot.offset() + StandardFrameConstants::kFixedFrameSizeAboveFp -
kSystemPointerSize) /
kSystemPointerSize;
}
} // namespace
void LiftoffAssembler::CacheState::GetTaggedSlotsForOOLCode(
ZoneVector<int>* slots, LiftoffRegList* spills,
SpillLocation spill_location) {
for (const auto& slot : stack_state) {
if (!is_reference(slot.kind())) continue;
if (spill_location == SpillLocation::kTopOfStack && slot.is_reg()) {
// Registers get spilled just before the call to the runtime. In {spills}
// we store which of the spilled registers contain references, so that we
// can add the spill slots to the safepoint.
spills->set(slot.reg());
continue;
}
DCHECK_IMPLIES(slot.is_reg(), spill_location == SpillLocation::kStackSlots);
slots->push_back(GetSafepointIndexForStackSlot(slot));
}
}
void LiftoffAssembler::CacheState::DefineSafepoint(
SafepointTableBuilder::Safepoint& safepoint) {
// Go in reversed order to set the higher bits first; this avoids cost for
// growing the underlying bitvector.
for (const auto& slot : base::Reversed(stack_state)) {
if (is_reference(slot.kind())) {
// TODO(v8:14422): References that are not on the stack now will get lost
// at the moment. Once v8:14422 is resolved, this `continue` should be
// revisited and potentially updated to a DCHECK.
if (!slot.is_stack()) continue;
safepoint.DefineTaggedStackSlot(GetSafepointIndexForStackSlot(slot));
}
}
}
void LiftoffAssembler::CacheState::DefineSafepointWithCalleeSavedRegisters(
SafepointTableBuilder::Safepoint& safepoint) {
for (const auto& slot : stack_state) {
if (!is_reference(slot.kind())) continue;
if (slot.is_stack()) {
safepoint.DefineTaggedStackSlot(GetSafepointIndexForStackSlot(slot));
} else {
DCHECK(slot.is_reg());
safepoint.DefineTaggedRegister(slot.reg().gp().code());
}
}
if (cached_instance_data != no_reg) {
safepoint.DefineTaggedRegister(cached_instance_data.code());
}
}
int LiftoffAssembler::GetTotalFrameSlotCountForGC() const {
// The GC does not care about the actual number of spill slots, just about
// the number of references that could be there in the spilling area. Note
// that the offset of the first spill slot is kSystemPointerSize and not
// '0'. Therefore we don't have to add '+1' here.
return (max_used_spill_offset_ +
StandardFrameConstants::kFixedFrameSizeAboveFp +
ool_spill_space_size_) /
kSystemPointerSize;
}
namespace {
AssemblerOptions DefaultLiftoffOptions() {
AssemblerOptions options = AssemblerOptions{};
options.is_wasm = true;
return options;
}
} // namespace
LiftoffAssembler::LiftoffAssembler(Zone* zone,
std::unique_ptr<AssemblerBuffer> buffer)
: MacroAssembler(nullptr, DefaultLiftoffOptions(), CodeObjectRequired::kNo,
std::move(buffer)),
cache_state_(zone) {
set_abort_hard(true); // Avoid calls to Abort.
}
LiftoffAssembler::~LiftoffAssembler() {
if (num_locals_ > kInlineLocalKinds) {
base::Free(more_local_kinds_);
}
}
LiftoffRegister LiftoffAssembler::LoadToRegister_Slow(VarState slot,
LiftoffRegList pinned) {
DCHECK(!slot.is_reg());
LiftoffRegister reg = GetUnusedRegister(reg_class_for(slot.kind()), pinned);
LoadToFixedRegister(slot, reg);
return reg;
}
LiftoffRegister LiftoffAssembler::LoadI64HalfIntoRegister(VarState slot,
RegPairHalf half) {
if (slot.is_reg()) {
return half == kLowWord ? slot.reg().low() : slot.reg().high();
}
LiftoffRegister dst = GetUnusedRegister(kGpReg, {});
if (slot.is_stack()) {
FillI64Half(dst.gp(), slot.offset(), half);
return dst;
}
DCHECK(slot.is_const());
int32_t half_word =
static_cast<int32_t>(half == kLowWord ? slot.constant().to_i64()
: slot.constant().to_i64() >> 32);
LoadConstant(dst, WasmValue(half_word));
return dst;
}
LiftoffRegister LiftoffAssembler::PeekToRegister(int index,
LiftoffRegList pinned) {
DCHECK_LT(index, cache_state_.stack_state.size());
VarState& slot = cache_state_.stack_state.end()[-1 - index];
if (V8_LIKELY(slot.is_reg())) return slot.reg();
LiftoffRegister reg = LoadToRegister(slot, pinned);
cache_state_.inc_used(reg);
slot.MakeRegister(reg);
return reg;
}
void LiftoffAssembler::DropValues(int count) {
DCHECK_GE(cache_state_.stack_state.size(), count);
for (VarState& slot :
base::VectorOf(cache_state_.stack_state.end() - count, count)) {
if (slot.is_reg()) {
cache_state_.dec_used(slot.reg());
}
}
cache_state_.stack_state.pop_back(count);
}
void LiftoffAssembler::DropExceptionValueAtOffset(int offset) {
auto* dropped = cache_state_.stack_state.begin() + offset;
if (dropped->is_reg()) {
cache_state_.dec_used(dropped->reg());
}
// Compute the stack offset that the remaining slots are based on.
int stack_offset =
offset == 0 ? StaticStackFrameSize() : dropped[-1].offset();
// Move remaining slots down.
for (VarState *slot = dropped, *end = cache_state_.stack_state.end() - 1;
slot != end; ++slot) {
*slot = *(slot + 1);
stack_offset = NextSpillOffset(slot->kind(), stack_offset);
// Padding could cause some spill offsets to remain the same.
if (slot->offset() != stack_offset) {
if (slot->is_stack()) {
MoveStackValue(stack_offset, slot->offset(), slot->kind());
}
slot->set_offset(stack_offset);
}
}
cache_state_.stack_state.pop_back();
}
void LiftoffAssembler::PrepareLoopArgs(int num) {
for (int i = 0; i < num; ++i) {
VarState& slot = cache_state_.stack_state.end()[-1 - i];
if (slot.is_stack()) continue;
RegClass rc = reg_class_for(slot.kind());
if (slot.is_reg()) {
if (cache_state_.get_use_count(slot.reg()) > 1) {
// If the register is used more than once, we cannot use it for the
// merge. Move it to an unused register instead.
LiftoffRegList pinned;
pinned.set(slot.reg());
LiftoffRegister dst_reg = GetUnusedRegister(rc, pinned);
Move(dst_reg, slot.reg(), slot.kind());
cache_state_.dec_used(slot.reg());
cache_state_.inc_used(dst_reg);
slot.MakeRegister(dst_reg);
}
continue;
}
LiftoffRegister reg = GetUnusedRegister(rc, {});
LoadConstant(reg, slot.constant());
slot.MakeRegister(reg);
cache_state_.inc_used(reg);
}
}
void LiftoffAssembler::PrepareForBranch(uint32_t arity, LiftoffRegList pinned) {
VarState* stack_base = cache_state_.stack_state.data();
for (auto slots :
{base::VectorOf(stack_base + cache_state_.stack_state.size() - arity,
arity),
base::VectorOf(stack_base, num_locals())}) {
for (VarState& slot : slots) {
if (slot.is_reg()) {
// Registers used more than once can't be used for merges.
if (cache_state_.get_use_count(slot.reg()) > 1) {
RegClass rc = reg_class_for(slot.kind());
if (cache_state_.has_unused_register(rc, pinned)) {
LiftoffRegister dst_reg = cache_state_.unused_register(rc, pinned);
Move(dst_reg, slot.reg(), slot.kind());
cache_state_.inc_used(dst_reg);
cache_state_.dec_used(slot.reg());
slot.MakeRegister(dst_reg);
} else {
Spill(slot.offset(), slot.reg(), slot.kind());
cache_state_.dec_used(slot.reg());
slot.MakeStack();
}
}
continue;
}
// Materialize constants.
if (!slot.is_const()) continue;
RegClass rc = reg_class_for(slot.kind());
if (cache_state_.has_unused_register(rc, pinned)) {
LiftoffRegister reg = cache_state_.unused_register(rc, pinned);
LoadConstant(reg, slot.constant());
cache_state_.inc_used(reg);
slot.MakeRegister(reg);
} else {
Spill(slot.offset(), slot.constant());
slot.MakeStack();
}
}
}
}
#ifdef DEBUG
namespace {
bool SlotInterference(const VarState& a, const VarState& b) {
return a.is_stack() && b.is_stack() &&
b.offset() > a.offset() - value_kind_size(a.kind()) &&
b.offset() - value_kind_size(b.kind()) < a.offset();
}
bool SlotInterference(const VarState& a, base::Vector<const VarState> v) {
// Check the first 16 entries in {v}, then increase the step size to avoid
// quadratic runtime on huge stacks. This logic checks 41 of the first 100
// slots, 77 of the first 1000 and 115 of the first 10000.
for (size_t idx = 0, end = v.size(); idx < end; idx += 1 + idx / 16) {
if (SlotInterference(a, v[idx])) return true;
}
return false;
}
} // namespace
#endif
void LiftoffAssembler::MergeFullStackWith(CacheState& target) {
DCHECK_EQ(cache_state_.stack_height(), target.stack_height());
// TODO(clemensb): Reuse the same ParallelMove object to save some
// allocations.
ParallelMove parallel_move{this};
for (uint32_t i = 0, e = cache_state_.stack_height(); i < e; ++i) {
parallel_move.Transfer(target.stack_state[i], cache_state_.stack_state[i]);
DCHECK(!SlotInterference(target.stack_state[i],
base::VectorOf(cache_state_.stack_state) + i + 1));
}
// Full stack merging is only done for forward jumps, so we can just clear the
// cache registers at the target in case of mismatch.
if (cache_state_.cached_instance_data != target.cached_instance_data) {
target.ClearCachedInstanceRegister();
}
if (cache_state_.cached_mem_index != target.cached_mem_index ||
cache_state_.cached_mem_start != target.cached_mem_start) {
target.ClearCachedMemStartRegister();
}
}
void LiftoffAssembler::MergeStackWith(CacheState& target, uint32_t arity,
JumpDirection jump_direction) {
// Before: ----------------|----- (discarded) ----|--- arity ---|
// ^target_stack_height ^stack_base ^stack_height
// After: ----|-- arity --|
// ^ ^target_stack_height
// ^target_stack_base
uint32_t stack_height = cache_state_.stack_height();
uint32_t target_stack_height = target.stack_height();
DCHECK_LE(target_stack_height, stack_height);
DCHECK_LE(arity, target_stack_height);
uint32_t stack_base = stack_height - arity;
uint32_t target_stack_base = target_stack_height - arity;
ParallelMove parallel_move{this};
for (uint32_t i = 0; i < target_stack_base; ++i) {
parallel_move.Transfer(target.stack_state[i], cache_state_.stack_state[i]);
DCHECK(!SlotInterference(
target.stack_state[i],
base::VectorOf(cache_state_.stack_state.data() + i + 1,
target_stack_base - i - 1)));
DCHECK(!SlotInterference(
target.stack_state[i],
base::VectorOf(cache_state_.stack_state.data() + stack_base, arity)));
}
for (uint32_t i = 0; i < arity; ++i) {
parallel_move.Transfer(target.stack_state[target_stack_base + i],
cache_state_.stack_state[stack_base + i]);
DCHECK(!SlotInterference(
target.stack_state[target_stack_base + i],
base::VectorOf(cache_state_.stack_state.data() + stack_base + i + 1,
arity - i - 1)));
}
// Check whether the cached instance and/or memory start need to be moved to
// another register. Register moves are executed as part of the
// {ParallelMove}. Remember whether the register content has to be
// reloaded after executing the stack parallel_move.
bool reload_instance_data = false;
// If the instance cache registers match, or the destination has no instance
// cache register, nothing needs to be done.
if (cache_state_.cached_instance_data != target.cached_instance_data &&
target.cached_instance_data != no_reg) {
// On forward jumps, just reset the cached register in the target state.
if (jump_direction == kForwardJump) {
target.ClearCachedInstanceRegister();
} else if (cache_state_.cached_instance_data != no_reg) {
// If the source has the instance cached but in the wrong register,
// execute a register move as part of the stack transfer.
parallel_move.MoveRegister(
LiftoffRegister{target.cached_instance_data},
LiftoffRegister{cache_state_.cached_instance_data}, kIntPtrKind);
} else {
// Otherwise (the source state has no cached instance), we reload later.
reload_instance_data = true;
}
}
bool reload_mem_start = false;
// If the cached memory start registers match, or the destination has no cache
// register, nothing needs to be done.
DCHECK_EQ(target.cached_mem_start == no_reg,
target.cached_mem_index == CacheState::kNoCachedMemIndex);
if ((cache_state_.cached_mem_start != target.cached_mem_start ||
cache_state_.cached_mem_index != target.cached_mem_index) &&
target.cached_mem_start != no_reg) {
// On forward jumps, just reset the cached register in the target state.
if (jump_direction == kForwardJump) {
target.ClearCachedMemStartRegister();
} else if (cache_state_.cached_mem_index == target.cached_mem_index) {
DCHECK_NE(no_reg, cache_state_.cached_mem_start);
// If the source has the content but in the wrong register, execute a
// register move as part of the stack transfer.
parallel_move.MoveRegister(LiftoffRegister{target.cached_mem_start},
LiftoffRegister{cache_state_.cached_mem_start},
kIntPtrKind);
} else {
// Otherwise (the source state has no cached content), we reload later.
reload_mem_start = true;
}
}
// Now execute stack transfers and register moves/loads.
parallel_move.Execute();
if (reload_instance_data) {
LoadInstanceDataFromFrame(target.cached_instance_data);
}
if (reload_mem_start) {
// {target.cached_instance_data} already got restored above, so we can use
// it if it exists.
Register instance_data = target.cached_instance_data;
if (instance_data == no_reg) {
// We don't have the instance data available yet. Store it into the target
// mem_start, so that we can load the mem0_start from there.
instance_data = target.cached_mem_start;
LoadInstanceDataFromFrame(instance_data);
}
if (target.cached_mem_index == 0) {
LoadFromInstance(
target.cached_mem_start, instance_data,
ObjectAccess::ToTagged(WasmTrustedInstanceData::kMemory0StartOffset),
sizeof(size_t));
} else {
LoadTaggedPointerFromInstance(
target.cached_mem_start, instance_data,
ObjectAccess::ToTagged(
WasmTrustedInstanceData::kMemoryBasesAndSizesOffset));
int buffer_offset = wasm::ObjectAccess::ToTagged(ByteArray::kHeaderSize) +
kSystemPointerSize * target.cached_mem_index * 2;
LoadFullPointer(target.cached_mem_start, target.cached_mem_start,
buffer_offset);
#ifdef V8_ENABLE_SANDBOX
DecodeSandboxedPointer(target.cached_mem_start);
#endif
}
}
}
void LiftoffAssembler::Spill(VarState* slot) {
switch (slot->loc()) {
case VarState::kStack:
return;
case VarState::kRegister:
Spill(slot->offset(), slot->reg(), slot->kind());
cache_state_.dec_used(slot->reg());
break;
case VarState::kIntConst:
Spill(slot->offset(), slot->constant());
break;
}
slot->MakeStack();
}
void LiftoffAssembler::SpillLocals() {
for (uint32_t i = 0; i < num_locals_; ++i) {
Spill(&cache_state_.stack_state[i]);
}
}
void LiftoffAssembler::SpillAllRegisters() {
for (uint32_t i = 0, e = cache_state_.stack_height(); i < e; ++i) {
auto& slot = cache_state_.stack_state[i];
if (!slot.is_reg()) continue;
Spill(slot.offset(), slot.reg(), slot.kind());
slot.MakeStack();
}
cache_state_.ClearAllCacheRegisters();
cache_state_.reset_used_registers();
}
void LiftoffAssembler::ClearRegister(
Register reg, std::initializer_list<Register*> possible_uses,
LiftoffRegList pinned) {
if (reg == cache_state()->cached_instance_data) {
cache_state()->ClearCachedInstanceRegister();
// We can return immediately. The instance is only used to load information
// at the beginning of an instruction when values don't have to be in
// specific registers yet. Therefore the instance should never be one of the
// {possible_uses}.
#ifdef DEBUG
for (Register* use : possible_uses) DCHECK_NE(reg, *use);
#endif
return;
} else if (reg == cache_state()->cached_mem_start) {
cache_state()->ClearCachedMemStartRegister();
// The memory start may be among the {possible_uses}, e.g. for an atomic
// compare exchange. Therefore it is necessary to iterate over the
// {possible_uses} below, and we cannot return early.
} else if (cache_state()->is_used(LiftoffRegister(reg))) {
SpillRegister(LiftoffRegister(reg));
}
Register replacement = no_reg;
for (Register* use : possible_uses) {
if (reg != *use) continue;
if (replacement == no_reg) {
replacement = GetUnusedRegister(kGpReg, pinned).gp();
Move(replacement, reg, kIntPtrKind);
}
// We cannot leave this loop early. There may be multiple uses of {reg}.
*use = replacement;
}
}
namespace {
void PrepareStackTransfers(const ValueKindSig* sig,
compiler::CallDescriptor* call_descriptor,
const VarState* slots,
LiftoffStackSlots* stack_slots,
ParallelMove* parallel_move,
LiftoffRegList* param_regs) {
// Process parameters backwards, to reduce the amount of Slot sorting for
// the most common case - a normal Wasm Call. Slots will be mostly unsorted
// in the Builtin call case.
uint32_t call_desc_input_idx =
static_cast<uint32_t>(call_descriptor->InputCount());
uint32_t num_params = static_cast<uint32_t>(sig->parameter_count());
for (uint32_t i = num_params; i > 0; --i) {
const uint32_t param = i - 1;
ValueKind kind = sig->GetParam(param);
const bool is_gp_pair = kNeedI64RegPair && kind == kI64;
const int num_lowered_params = is_gp_pair ? 2 : 1;
const VarState& slot = slots[param];
DCHECK(CompatibleStackSlotTypes(slot.kind(), kind));
// Process both halfs of a register pair separately, because they are passed
// as separate parameters. One or both of them could end up on the stack.
for (int lowered_idx = 0; lowered_idx < num_lowered_params; ++lowered_idx) {
const RegPairHalf half =
is_gp_pair && lowered_idx == 0 ? kHighWord : kLowWord;
--call_desc_input_idx;
LinkageLocation loc =
call_descriptor->GetInputLocation(call_desc_input_idx);
if (loc.IsRegister()) {
DCHECK(!loc.IsAnyRegister());
RegClass rc = is_gp_pair ? kGpReg : reg_class_for(kind);
int reg_code = loc.AsRegister();
LiftoffRegister reg =
LiftoffRegister::from_external_code(rc, kind, reg_code);
param_regs->set(reg);
if (is_gp_pair) {
parallel_move->LoadI64HalfIntoRegister(reg, slot, half);
} else {
parallel_move->LoadIntoRegister(reg, slot);
}
} else {
DCHECK(loc.IsCallerFrameSlot());
int param_offset = -loc.GetLocation() - 1;
stack_slots->Add(slot, slot.offset(), half, param_offset);
}
}
}
}
} // namespace
void LiftoffAssembler::PrepareBuiltinCall(
const ValueKindSig* sig, compiler::CallDescriptor* call_descriptor,
std::initializer_list<VarState> params) {
LiftoffStackSlots stack_slots{this};
ParallelMove parallel_move{this};
LiftoffRegList param_regs;
PrepareStackTransfers(sig, call_descriptor, params.begin(), &stack_slots,
¶llel_move, ¶m_regs);
SpillAllRegisters();
int param_slots = static_cast<int>(call_descriptor->ParameterSlotCount());
if (param_slots > 0) {
stack_slots.Construct(param_slots);
}
// Execute the stack transfers before filling the instance register.
parallel_move.Execute();
// Reset register use counters.
cache_state_.reset_used_registers();
}
void LiftoffAssembler::PrepareCall(const ValueKindSig* sig,
compiler::CallDescriptor* call_descriptor,
Register* target,
Register target_instance_data) {
uint32_t num_params = static_cast<uint32_t>(sig->parameter_count());
LiftoffStackSlots stack_slots{this};
ParallelMove parallel_move{this};
LiftoffRegList param_regs;
// Move the target instance (if supplied) into the correct instance register.
Register instance_reg = wasm::kGpParamRegisters[0];
// Check that the call descriptor agrees. Input 0 is the call target, 1 is the
// instance.
DCHECK_EQ(
instance_reg,
Register::from_code(call_descriptor->GetInputLocation(1).AsRegister()));
param_regs.set(instance_reg);
if (target_instance_data == no_reg) {
target_instance_data = cache_state_.cached_instance_data;
}
if (target_instance_data != no_reg && target_instance_data != instance_reg) {
parallel_move.MoveRegister(LiftoffRegister(instance_reg),
LiftoffRegister(target_instance_data),
kIntPtrKind);
}
int param_slots = static_cast<int>(call_descriptor->ParameterSlotCount());
if (num_params) {
uint32_t param_base = cache_state_.stack_height() - num_params;
PrepareStackTransfers(sig, call_descriptor,
&cache_state_.stack_state[param_base], &stack_slots,
¶llel_move, ¶m_regs);
}
// If the target register overlaps with a parameter register, then move the
// target to another free register, or spill to the stack.
if (target && param_regs.has(LiftoffRegister(*target))) {
// Try to find another free register.
LiftoffRegList free_regs = kGpCacheRegList.MaskOut(param_regs);
if (!free_regs.is_empty()) {
LiftoffRegister new_target = free_regs.GetFirstRegSet();
parallel_move.MoveRegister(new_target, LiftoffRegister(*target),
kIntPtrKind);
*target = new_target.gp();
} else {
stack_slots.Add(VarState(kIntPtrKind, LiftoffRegister(*target), 0),
param_slots);
param_slots++;
*target = no_reg;
}
}
// After figuring out all register and stack moves, drop the parameter slots
// from the stack.
DropValues(num_params);
// Spill all remaining cache slots.
cache_state_.ClearAllCacheRegisters();
// Iterate backwards, spilling register slots until all registers are free.
if (!cache_state_.used_registers.is_empty()) {
for (auto* slot = cache_state_.stack_state.end() - 1;; --slot) {
DCHECK_LE(cache_state_.stack_state.begin(), slot);
if (!slot->is_reg()) continue;
Spill(slot->offset(), slot->reg(), slot->kind());
cache_state_.dec_used(slot->reg());
slot->MakeStack();
if (cache_state_.used_registers.is_empty()) break;
}
}
// All slots are either spilled on the stack, or hold constants now.
DCHECK(std::all_of(
cache_state_.stack_state.begin(), cache_state_.stack_state.end(),
[](const VarState& slot) { return slot.is_stack() || slot.is_const(); }));
if (param_slots > 0) {
stack_slots.Construct(param_slots);
}
// Execute the stack transfers before filling the instance register.
parallel_move.Execute();
// Reload the instance from the stack if we do not have it in a register.
if (target_instance_data == no_reg) {
LoadInstanceDataFromFrame(instance_reg);
}
}
void LiftoffAssembler::FinishCall(const ValueKindSig* sig,
compiler::CallDescriptor* call_descriptor) {
int call_desc_return_idx = 0;
for (ValueKind return_kind : sig->returns()) {
DCHECK_LT(call_desc_return_idx, call_descriptor->ReturnCount());
const bool needs_gp_pair = needs_gp_reg_pair(return_kind);
const int num_lowered_params = 1 + needs_gp_pair;
const ValueKind lowered_kind = needs_gp_pair ? kI32 : return_kind;
const RegClass rc = reg_class_for(lowered_kind);
// Initialize to anything, will be set in the loop and used afterwards.
LiftoffRegister reg_pair[2] = {kGpCacheRegList.GetFirstRegSet(),
kGpCacheRegList.GetFirstRegSet()};
LiftoffRegList pinned;
for (int pair_idx = 0; pair_idx < num_lowered_params; ++pair_idx) {
LinkageLocation loc =
call_descriptor->GetReturnLocation(call_desc_return_idx++);
if (loc.IsRegister()) {
DCHECK(!loc.IsAnyRegister());
reg_pair[pair_idx] = LiftoffRegister::from_external_code(
rc, lowered_kind, loc.AsRegister());
} else {
DCHECK(loc.IsCallerFrameSlot());
reg_pair[pair_idx] = GetUnusedRegister(rc, pinned);
// Get slot offset relative to the stack pointer.
int offset = call_descriptor->GetOffsetToReturns();
int return_slot = -loc.GetLocation() - offset - 1;
LoadReturnStackSlot(reg_pair[pair_idx],
return_slot * kSystemPointerSize, lowered_kind);
}
if (pair_idx == 0) {
pinned.set(reg_pair[0]);
}
}
if (num_lowered_params == 1) {
PushRegister(return_kind, reg_pair[0]);
} else {
PushRegister(return_kind, LiftoffRegister::ForPair(reg_pair[0].gp(),
reg_pair[1].gp()));
}
}
int return_slots = static_cast<int>(call_descriptor->ReturnSlotCount());
RecordUsedSpillOffset(TopSpillOffset() + return_slots * kSystemPointerSize);
}
void LiftoffAssembler::Move(LiftoffRegister dst, LiftoffRegister src,
ValueKind kind) {
DCHECK_EQ(dst.reg_class(), src.reg_class());
DCHECK_NE(dst, src);
if (kNeedI64RegPair && dst.is_gp_pair()) {
// Use the {ParallelMove} to move pairs, as the registers in the
// pairs might overlap.
ParallelMove{this}.MoveRegister(dst, src, kind);
} else if (kNeedS128RegPair && dst.is_fp_pair()) {
// Calling low_fp is fine, Move will automatically check the kind and
// convert this FP to its SIMD register, and use a SIMD move.
Move(dst.low_fp(), src.low_fp(), kind);
} else if (dst.is_gp()) {
Move(dst.gp(), src.gp(), kind);
} else {
Move(dst.fp(), src.fp(), kind);
}
}
void LiftoffAssembler::ParallelRegisterMove(
base::Vector<const ParallelRegisterMoveTuple> tuples) {
ParallelMove parallel_move{this};
for (auto tuple : tuples) {
if (tuple.dst == tuple.src) continue;
parallel_move.MoveRegister(tuple.dst, tuple.src, tuple.kind);
}
}
void LiftoffAssembler::MoveToReturnLocations(
const FunctionSig* sig, compiler::CallDescriptor* descriptor) {
DCHECK_LT(0, sig->return_count());
if (V8_UNLIKELY(sig->return_count() > 1)) {
MoveToReturnLocationsMultiReturn(sig, descriptor);
return;
}
ValueKind return_kind = sig->GetReturn(0).kind();
// Defaults to a gp reg, will be set below if return kind is not gp.
LiftoffRegister return_reg = LiftoffRegister(kGpReturnRegisters[0]);
if (needs_gp_reg_pair(return_kind)) {
return_reg =
LiftoffRegister::ForPair(kGpReturnRegisters[0], kGpReturnRegisters[1]);
} else if (needs_fp_reg_pair(return_kind)) {
return_reg = LiftoffRegister::ForFpPair(kFpReturnRegisters[0]);
} else if (reg_class_for(return_kind) == kFpReg) {
return_reg = LiftoffRegister(kFpReturnRegisters[0]);
} else {
DCHECK_EQ(kGpReg, reg_class_for(return_kind));
}
VarState& slot = cache_state_.stack_state.back();
if (V8_LIKELY(slot.is_reg())) {
if (slot.reg() != return_reg) {
Move(return_reg, slot.reg(), slot.kind());
}
} else {
LoadToFixedRegister(cache_state_.stack_state.back(), return_reg);
}
}
void LiftoffAssembler::MoveToReturnLocationsMultiReturn(
const FunctionSig* sig, compiler::CallDescriptor* descriptor) {
DCHECK_LT(1, sig->return_count());