| // 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/api/api.h" |
| #include "src/baseline/baseline.h" |
| #include "src/builtins/builtins-utils-gen.h" |
| #include "src/builtins/builtins.h" |
| #include "src/codegen/code-stub-assembler.h" |
| #include "src/codegen/interface-descriptors-inl.h" |
| #include "src/codegen/macro-assembler.h" |
| #include "src/common/globals.h" |
| #include "src/execution/frame-constants.h" |
| #include "src/heap/memory-chunk.h" |
| #include "src/ic/accessor-assembler.h" |
| #include "src/ic/keyed-store-generic.h" |
| #include "src/logging/counters.h" |
| #include "src/objects/debug-objects.h" |
| #include "src/objects/scope-info.h" |
| #include "src/objects/shared-function-info.h" |
| #include "src/runtime/runtime.h" |
| |
| namespace v8 { |
| namespace internal { |
| |
| // ----------------------------------------------------------------------------- |
| // TurboFan support builtins. |
| |
| TF_BUILTIN(CopyFastSmiOrObjectElements, CodeStubAssembler) { |
| auto js_object = Parameter<JSObject>(Descriptor::kObject); |
| |
| // Load the {object}s elements. |
| TNode<FixedArrayBase> source = |
| CAST(LoadObjectField(js_object, JSObject::kElementsOffset)); |
| TNode<FixedArrayBase> target = |
| CloneFixedArray(source, ExtractFixedArrayFlag::kFixedArrays); |
| StoreObjectField(js_object, JSObject::kElementsOffset, target); |
| Return(target); |
| } |
| |
| TF_BUILTIN(GrowFastDoubleElements, CodeStubAssembler) { |
| auto object = Parameter<JSObject>(Descriptor::kObject); |
| auto key = Parameter<Smi>(Descriptor::kKey); |
| |
| Label runtime(this, Label::kDeferred); |
| TNode<FixedArrayBase> elements = LoadElements(object); |
| elements = TryGrowElementsCapacity(object, elements, PACKED_DOUBLE_ELEMENTS, |
| key, &runtime); |
| Return(elements); |
| |
| BIND(&runtime); |
| TailCallRuntime(Runtime::kGrowArrayElements, NoContextConstant(), object, |
| key); |
| } |
| |
| TF_BUILTIN(GrowFastSmiOrObjectElements, CodeStubAssembler) { |
| auto object = Parameter<JSObject>(Descriptor::kObject); |
| auto key = Parameter<Smi>(Descriptor::kKey); |
| |
| Label runtime(this, Label::kDeferred); |
| TNode<FixedArrayBase> elements = LoadElements(object); |
| elements = |
| TryGrowElementsCapacity(object, elements, PACKED_ELEMENTS, key, &runtime); |
| Return(elements); |
| |
| BIND(&runtime); |
| TailCallRuntime(Runtime::kGrowArrayElements, NoContextConstant(), object, |
| key); |
| } |
| |
| TF_BUILTIN(ReturnReceiver, CodeStubAssembler) { |
| auto receiver = Parameter<Object>(Descriptor::kReceiver); |
| Return(receiver); |
| } |
| |
| TF_BUILTIN(DebugBreakTrampoline, CodeStubAssembler) { |
| Label tailcall_to_shared(this); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| auto new_target = Parameter<Object>(Descriptor::kJSNewTarget); |
| auto arg_count = |
| UncheckedParameter<Int32T>(Descriptor::kJSActualArgumentsCount); |
| auto function = Parameter<JSFunction>(Descriptor::kJSTarget); |
| |
| // Check break-at-entry flag on the debug info. |
| TNode<SharedFunctionInfo> shared = |
| CAST(LoadObjectField(function, JSFunction::kSharedFunctionInfoOffset)); |
| TNode<Object> maybe_heap_object_or_smi = |
| LoadObjectField(shared, SharedFunctionInfo::kScriptOrDebugInfoOffset); |
| TNode<HeapObject> maybe_debug_info = |
| TaggedToHeapObject(maybe_heap_object_or_smi, &tailcall_to_shared); |
| GotoIfNot(HasInstanceType(maybe_debug_info, InstanceType::DEBUG_INFO_TYPE), |
| &tailcall_to_shared); |
| |
| { |
| TNode<DebugInfo> debug_info = CAST(maybe_debug_info); |
| TNode<Smi> flags = |
| CAST(LoadObjectField(debug_info, DebugInfo::kFlagsOffset)); |
| GotoIfNot(SmiToInt32(SmiAnd(flags, SmiConstant(DebugInfo::kBreakAtEntry))), |
| &tailcall_to_shared); |
| |
| CallRuntime(Runtime::kDebugBreakAtEntry, context, function); |
| Goto(&tailcall_to_shared); |
| } |
| |
| BIND(&tailcall_to_shared); |
| // Tail call into code object on the SharedFunctionInfo. |
| TNode<Code> code = GetSharedFunctionInfoCode(shared); |
| TailCallJSCode(code, context, function, new_target, arg_count); |
| } |
| |
| class WriteBarrierCodeStubAssembler : public CodeStubAssembler { |
| public: |
| explicit WriteBarrierCodeStubAssembler(compiler::CodeAssemblerState* state) |
| : CodeStubAssembler(state) {} |
| |
| TNode<BoolT> IsMarking() { |
| TNode<ExternalReference> is_marking_addr = ExternalConstant( |
| ExternalReference::heap_is_marking_flag_address(this->isolate())); |
| return Word32NotEqual(Load<Uint8T>(is_marking_addr), Int32Constant(0)); |
| } |
| |
| TNode<BoolT> IsMinorMarking() { |
| TNode<ExternalReference> is_minor_marking_addr = ExternalConstant( |
| ExternalReference::heap_is_minor_marking_flag_address(this->isolate())); |
| return Word32NotEqual(Load<Uint8T>(is_minor_marking_addr), |
| Int32Constant(0)); |
| } |
| |
| TNode<BoolT> IsSharedSpaceIsolate() { |
| TNode<ExternalReference> is_shared_space_isolate_addr = ExternalConstant( |
| ExternalReference::is_shared_space_isolate_flag_address( |
| this->isolate())); |
| return Word32NotEqual(Load<Uint8T>(is_shared_space_isolate_addr), |
| Int32Constant(0)); |
| } |
| |
| TNode<BoolT> UsesSharedHeap() { |
| TNode<ExternalReference> uses_shared_heap_addr = ExternalConstant( |
| ExternalReference::uses_shared_heap_flag_address(this->isolate())); |
| return Word32NotEqual(Load<Uint8T>(uses_shared_heap_addr), |
| Int32Constant(0)); |
| } |
| |
| TNode<BoolT> IsPageFlagSet(TNode<IntPtrT> object, int mask) { |
| TNode<IntPtrT> page = PageFromAddress(object); |
| TNode<IntPtrT> flags = UncheckedCast<IntPtrT>( |
| Load(MachineType::Pointer(), page, |
| IntPtrConstant(BasicMemoryChunk::kFlagsOffset))); |
| return WordNotEqual(WordAnd(flags, IntPtrConstant(mask)), |
| IntPtrConstant(0)); |
| } |
| |
| TNode<BoolT> IsUnmarked(TNode<IntPtrT> object) { |
| TNode<IntPtrT> cell; |
| TNode<IntPtrT> mask; |
| GetMarkBit(object, &cell, &mask); |
| TNode<Int32T> mask32 = TruncateIntPtrToInt32(mask); |
| // Marked only requires checking a single bit here. |
| return Word32Equal(Word32And(Load<Int32T>(cell), mask32), Int32Constant(0)); |
| } |
| |
| void GetMarkBit(TNode<IntPtrT> object, TNode<IntPtrT>* cell, |
| TNode<IntPtrT>* mask) { |
| TNode<IntPtrT> page = PageFromAddress(object); |
| TNode<IntPtrT> bitmap = |
| IntPtrAdd(page, IntPtrConstant(MemoryChunk::kMarkingBitmapOffset)); |
| |
| { |
| // Temp variable to calculate cell offset in bitmap. |
| TNode<WordT> r0; |
| int shift = MarkingBitmap::kBitsPerCellLog2 + kTaggedSizeLog2 - |
| MarkingBitmap::kBytesPerCellLog2; |
| r0 = WordShr(object, IntPtrConstant(shift)); |
| r0 = WordAnd(r0, IntPtrConstant((kPageAlignmentMask >> shift) & |
| ~(MarkingBitmap::kBytesPerCell - 1))); |
| *cell = IntPtrAdd(bitmap, Signed(r0)); |
| } |
| { |
| // Temp variable to calculate bit offset in cell. |
| TNode<WordT> r1; |
| r1 = WordShr(object, IntPtrConstant(kTaggedSizeLog2)); |
| r1 = WordAnd(r1, |
| IntPtrConstant((1 << MarkingBitmap::kBitsPerCellLog2) - 1)); |
| // It seems that LSB(e.g. cl) is automatically used, so no manual masking |
| // is needed. Uncomment the following line otherwise. |
| // WordAnd(r1, IntPtrConstant((1 << kBitsPerByte) - 1))); |
| *mask = WordShl(IntPtrConstant(1), r1); |
| } |
| } |
| |
| void InsertIntoRememberedSet(TNode<IntPtrT> object, TNode<IntPtrT> slot, |
| SaveFPRegsMode fp_mode) { |
| Label slow_path(this), next(this); |
| TNode<IntPtrT> page = PageFromAddress(object); |
| |
| // Load address of SlotSet |
| TNode<IntPtrT> slot_set = LoadSlotSet(page, &slow_path); |
| TNode<IntPtrT> slot_offset = IntPtrSub(slot, page); |
| |
| // Load bucket |
| TNode<IntPtrT> bucket = LoadBucket(slot_set, slot_offset, &slow_path); |
| |
| // Update cell |
| SetBitInCell(bucket, slot_offset); |
| Goto(&next); |
| |
| BIND(&slow_path); |
| { |
| TNode<ExternalReference> function = |
| ExternalConstant(ExternalReference::insert_remembered_set_function()); |
| CallCFunctionWithCallerSavedRegisters( |
| function, MachineTypeOf<Int32T>::value, fp_mode, |
| std::make_pair(MachineTypeOf<IntPtrT>::value, page), |
| std::make_pair(MachineTypeOf<IntPtrT>::value, slot)); |
| Goto(&next); |
| } |
| |
| BIND(&next); |
| } |
| |
| TNode<IntPtrT> LoadSlotSet(TNode<IntPtrT> page, Label* slow_path) { |
| TNode<IntPtrT> slot_set = UncheckedCast<IntPtrT>( |
| Load(MachineType::Pointer(), page, |
| IntPtrConstant(MemoryChunk::kOldToNewSlotSetOffset))); |
| GotoIf(WordEqual(slot_set, IntPtrConstant(0)), slow_path); |
| return slot_set; |
| } |
| |
| TNode<IntPtrT> LoadBucket(TNode<IntPtrT> slot_set, TNode<WordT> slot_offset, |
| Label* slow_path) { |
| TNode<WordT> bucket_index = |
| WordShr(slot_offset, SlotSet::kBitsPerBucketLog2 + kTaggedSizeLog2); |
| TNode<IntPtrT> bucket = UncheckedCast<IntPtrT>( |
| Load(MachineType::Pointer(), slot_set, |
| WordShl(bucket_index, kSystemPointerSizeLog2))); |
| GotoIf(WordEqual(bucket, IntPtrConstant(0)), slow_path); |
| return bucket; |
| } |
| |
| void SetBitInCell(TNode<IntPtrT> bucket, TNode<WordT> slot_offset) { |
| // Load cell value |
| TNode<WordT> cell_offset = WordAnd( |
| WordShr(slot_offset, SlotSet::kBitsPerCellLog2 + kTaggedSizeLog2 - |
| SlotSet::kCellSizeBytesLog2), |
| IntPtrConstant((SlotSet::kCellsPerBucket - 1) |
| << SlotSet::kCellSizeBytesLog2)); |
| TNode<IntPtrT> cell_address = |
| UncheckedCast<IntPtrT>(IntPtrAdd(bucket, cell_offset)); |
| TNode<IntPtrT> old_cell_value = |
| ChangeInt32ToIntPtr(Load<Int32T>(cell_address)); |
| |
| // Calculate new cell value |
| TNode<WordT> bit_index = WordAnd(WordShr(slot_offset, kTaggedSizeLog2), |
| IntPtrConstant(SlotSet::kBitsPerCell - 1)); |
| TNode<IntPtrT> new_cell_value = UncheckedCast<IntPtrT>( |
| WordOr(old_cell_value, WordShl(IntPtrConstant(1), bit_index))); |
| |
| // Update cell value |
| StoreNoWriteBarrier(MachineRepresentation::kWord32, cell_address, |
| TruncateIntPtrToInt32(new_cell_value)); |
| } |
| |
| void WriteBarrier(SaveFPRegsMode fp_mode) { |
| Label marking_is_on(this), marking_is_off(this), next(this); |
| |
| auto slot = |
| UncheckedParameter<IntPtrT>(WriteBarrierDescriptor::kSlotAddress); |
| Branch(IsMarking(), &marking_is_on, &marking_is_off); |
| |
| BIND(&marking_is_off); |
| GenerationalOrSharedBarrierSlow(slot, &next, fp_mode); |
| |
| BIND(&marking_is_on); |
| WriteBarrierDuringMarking(slot, &next, fp_mode); |
| |
| BIND(&next); |
| } |
| |
| void GenerationalOrSharedBarrierSlow(TNode<IntPtrT> slot, Label* next, |
| SaveFPRegsMode fp_mode) { |
| // When incremental marking is not on, the fast and out-of-line fast path of |
| // the write barrier already checked whether we need to run the generational |
| // or shared barrier slow path. |
| Label generational_barrier(this), shared_barrier(this); |
| |
| TNode<IntPtrT> value = BitcastTaggedToWord(Load<HeapObject>(slot)); |
| |
| InYoungGeneration(value, &generational_barrier, &shared_barrier); |
| |
| BIND(&generational_barrier); |
| CSA_DCHECK(this, |
| IsPageFlagSet(value, MemoryChunk::kIsInYoungGenerationMask)); |
| GenerationalBarrierSlow(slot, next, fp_mode); |
| |
| BIND(&shared_barrier); |
| CSA_DCHECK(this, IsPageFlagSet(value, MemoryChunk::kInSharedHeap)); |
| SharedBarrierSlow(slot, next, fp_mode); |
| } |
| |
| void GenerationalBarrierSlow(TNode<IntPtrT> slot, Label* next, |
| SaveFPRegsMode fp_mode) { |
| TNode<IntPtrT> object = BitcastTaggedToWord( |
| UncheckedParameter<Object>(WriteBarrierDescriptor::kObject)); |
| InsertIntoRememberedSet(object, slot, fp_mode); |
| Goto(next); |
| } |
| |
| void SharedBarrierSlow(TNode<IntPtrT> slot, Label* next, |
| SaveFPRegsMode fp_mode) { |
| TNode<ExternalReference> function = ExternalConstant( |
| ExternalReference::shared_barrier_from_code_function()); |
| TNode<IntPtrT> object = BitcastTaggedToWord( |
| UncheckedParameter<Object>(WriteBarrierDescriptor::kObject)); |
| CallCFunctionWithCallerSavedRegisters( |
| function, MachineTypeOf<Int32T>::value, fp_mode, |
| std::make_pair(MachineTypeOf<IntPtrT>::value, object), |
| std::make_pair(MachineTypeOf<IntPtrT>::value, slot)); |
| Goto(next); |
| } |
| |
| void WriteBarrierDuringMarking(TNode<IntPtrT> slot, Label* next, |
| SaveFPRegsMode fp_mode) { |
| // When incremental marking is on, we need to perform generational, shared |
| // and incremental marking write barrier. |
| Label incremental_barrier(this); |
| |
| GenerationalOrSharedBarrierDuringMarking(slot, &incremental_barrier, |
| fp_mode); |
| |
| BIND(&incremental_barrier); |
| IncrementalWriteBarrier(slot, fp_mode); |
| Goto(next); |
| } |
| |
| void GenerationalOrSharedBarrierDuringMarking(TNode<IntPtrT> slot, |
| Label* next, |
| SaveFPRegsMode fp_mode) { |
| Label generational_barrier_check(this), shared_barrier_check(this), |
| shared_barrier_slow(this), generational_barrier_slow(this); |
| |
| // During incremental marking we always reach this slow path, so we need to |
| // check whether this is a old-to-new or old-to-shared reference. |
| TNode<IntPtrT> object = BitcastTaggedToWord( |
| UncheckedParameter<Object>(WriteBarrierDescriptor::kObject)); |
| |
| InYoungGeneration(object, next, &generational_barrier_check); |
| |
| BIND(&generational_barrier_check); |
| |
| TNode<IntPtrT> value = BitcastTaggedToWord(Load<HeapObject>(slot)); |
| InYoungGeneration(value, &generational_barrier_slow, &shared_barrier_check); |
| |
| BIND(&generational_barrier_slow); |
| GenerationalBarrierSlow(slot, next, fp_mode); |
| |
| BIND(&shared_barrier_check); |
| |
| InSharedHeap(value, &shared_barrier_slow, next); |
| |
| BIND(&shared_barrier_slow); |
| |
| SharedBarrierSlow(slot, next, fp_mode); |
| } |
| |
| void InYoungGeneration(TNode<IntPtrT> object, Label* true_label, |
| Label* false_label) { |
| TNode<BoolT> object_is_young = |
| IsPageFlagSet(object, MemoryChunk::kIsInYoungGenerationMask); |
| |
| Branch(object_is_young, true_label, false_label); |
| } |
| |
| void InSharedHeap(TNode<IntPtrT> object, Label* true_label, |
| Label* false_label) { |
| TNode<BoolT> object_is_young = |
| IsPageFlagSet(object, MemoryChunk::kInSharedHeap); |
| |
| Branch(object_is_young, true_label, false_label); |
| } |
| |
| void IncrementalWriteBarrierMinor(TNode<IntPtrT> slot, TNode<IntPtrT> value, |
| SaveFPRegsMode fp_mode, Label* next) { |
| Label check_is_unmarked(this); |
| |
| InYoungGeneration(value, &check_is_unmarked, next); |
| |
| BIND(&check_is_unmarked); |
| GotoIfNot(IsUnmarked(value), next); |
| |
| { |
| TNode<ExternalReference> function = ExternalConstant( |
| ExternalReference::write_barrier_marking_from_code_function()); |
| TNode<IntPtrT> object = BitcastTaggedToWord( |
| UncheckedParameter<Object>(WriteBarrierDescriptor::kObject)); |
| CallCFunctionWithCallerSavedRegisters( |
| function, MachineTypeOf<Int32T>::value, fp_mode, |
| std::make_pair(MachineTypeOf<IntPtrT>::value, object), |
| std::make_pair(MachineTypeOf<IntPtrT>::value, slot)); |
| Goto(next); |
| } |
| } |
| |
| void IncrementalWriteBarrierMajor(TNode<IntPtrT> slot, TNode<IntPtrT> value, |
| SaveFPRegsMode fp_mode, Label* next) { |
| Label marking_cpp_slow_path(this); |
| |
| IsValueUnmarkedOrRecordSlot(value, &marking_cpp_slow_path, next); |
| |
| BIND(&marking_cpp_slow_path); |
| { |
| TNode<ExternalReference> function = ExternalConstant( |
| ExternalReference::write_barrier_marking_from_code_function()); |
| TNode<IntPtrT> object = BitcastTaggedToWord( |
| UncheckedParameter<Object>(WriteBarrierDescriptor::kObject)); |
| CallCFunctionWithCallerSavedRegisters( |
| function, MachineTypeOf<Int32T>::value, fp_mode, |
| std::make_pair(MachineTypeOf<IntPtrT>::value, object), |
| std::make_pair(MachineTypeOf<IntPtrT>::value, slot)); |
| Goto(next); |
| } |
| } |
| |
| void IsValueUnmarkedOrRecordSlot(TNode<IntPtrT> value, Label* true_label, |
| Label* false_label) { |
| // This code implements the following condition: |
| // IsUnmarked(value) || |
| // OnEvacuationCandidate(value) && |
| // !SkipEvacuationCandidateRecording(value) |
| |
| // 1) IsUnmarked(value) || .... |
| GotoIf(IsUnmarked(value), true_label); |
| |
| // 2) OnEvacuationCandidate(value) && |
| // !SkipEvacuationCandidateRecording(value) |
| GotoIfNot(IsPageFlagSet(value, MemoryChunk::kEvacuationCandidateMask), |
| false_label); |
| |
| { |
| TNode<IntPtrT> object = BitcastTaggedToWord( |
| UncheckedParameter<Object>(WriteBarrierDescriptor::kObject)); |
| Branch( |
| IsPageFlagSet(object, MemoryChunk::kSkipEvacuationSlotsRecordingMask), |
| false_label, true_label); |
| } |
| } |
| |
| void IncrementalWriteBarrier(TNode<IntPtrT> slot, SaveFPRegsMode fp_mode) { |
| Label next(this), write_into_shared_object(this), |
| write_into_local_object(this), local_object_and_value(this); |
| |
| TNode<IntPtrT> object = BitcastTaggedToWord( |
| UncheckedParameter<Object>(WriteBarrierDescriptor::kObject)); |
| TNode<IntPtrT> value = BitcastTaggedToWord(Load<HeapObject>(slot)); |
| |
| // Without a shared heap, all objects are local. This is the fast path |
| // always used when no shared heap exists. |
| GotoIfNot(UsesSharedHeap(), &local_object_and_value); |
| |
| // From the point-of-view of the shared space isolate (= the main isolate) |
| // shared heap objects are just local objects. |
| GotoIf(IsSharedSpaceIsolate(), &local_object_and_value); |
| |
| // These checks here are now only reached by client isolates (= worker |
| // isolates). Now first check whether incremental marking is activated for |
| // that particular object's space. Incrementally marking might only be |
| // enabled for either local or shared objects on client isolates. |
| GotoIfNot(IsPageFlagSet(object, MemoryChunk::kIncrementalMarking), &next); |
| |
| // We now know that incremental marking is enabled for the given object. |
| // Decide whether to run the shared or local incremental marking barrier. |
| InSharedHeap(object, &write_into_shared_object, &write_into_local_object); |
| |
| BIND(&write_into_shared_object); |
| |
| // Run the shared incremental marking barrier. |
| IncrementalWriteBarrierShared(object, slot, value, fp_mode, &next); |
| |
| BIND(&write_into_local_object); |
| |
| // When writing into a local object we can ignore stores of shared object |
| // values since for those no slot recording or marking is required. |
| InSharedHeap(value, &next, &local_object_and_value); |
| |
| // Both object and value are now guaranteed to be local objects, run the |
| // local incremental marking barrier. |
| BIND(&local_object_and_value); |
| IncrementalWriteBarrierLocal(slot, value, fp_mode, &next); |
| |
| BIND(&next); |
| } |
| |
| void IncrementalWriteBarrierShared(TNode<IntPtrT> object, TNode<IntPtrT> slot, |
| TNode<IntPtrT> value, |
| SaveFPRegsMode fp_mode, Label* next) { |
| Label shared_marking_cpp_slow_path(this); |
| |
| IsValueUnmarkedOrRecordSlot(value, &shared_marking_cpp_slow_path, next); |
| |
| BIND(&shared_marking_cpp_slow_path); |
| { |
| TNode<ExternalReference> function = ExternalConstant( |
| ExternalReference::write_barrier_shared_marking_from_code_function()); |
| CallCFunctionWithCallerSavedRegisters( |
| function, MachineTypeOf<Int32T>::value, fp_mode, |
| std::make_pair(MachineTypeOf<IntPtrT>::value, object), |
| std::make_pair(MachineTypeOf<IntPtrT>::value, slot)); |
| |
| Goto(next); |
| } |
| } |
| |
| void IncrementalWriteBarrierLocal(TNode<IntPtrT> slot, TNode<IntPtrT> value, |
| SaveFPRegsMode fp_mode, Label* next) { |
| Label is_minor(this), is_major(this); |
| Branch(IsMinorMarking(), &is_minor, &is_major); |
| |
| BIND(&is_minor); |
| IncrementalWriteBarrierMinor(slot, value, fp_mode, next); |
| |
| BIND(&is_major); |
| IncrementalWriteBarrierMajor(slot, value, fp_mode, next); |
| } |
| |
| void GenerateRecordWrite(SaveFPRegsMode fp_mode) { |
| if (V8_DISABLE_WRITE_BARRIERS_BOOL) { |
| Return(TrueConstant()); |
| return; |
| } |
| |
| WriteBarrier(fp_mode); |
| IncrementCounter(isolate()->counters()->write_barriers(), 1); |
| Return(TrueConstant()); |
| } |
| |
| void GenerateEphemeronKeyBarrier(SaveFPRegsMode fp_mode) { |
| TNode<ExternalReference> function = ExternalConstant( |
| ExternalReference::ephemeron_key_write_barrier_function()); |
| TNode<ExternalReference> isolate_constant = |
| ExternalConstant(ExternalReference::isolate_address(isolate())); |
| // In this method we limit the allocatable registers so we have to use |
| // UncheckedParameter. Parameter does not work because the checked cast |
| // needs more registers. |
| auto address = |
| UncheckedParameter<IntPtrT>(WriteBarrierDescriptor::kSlotAddress); |
| TNode<IntPtrT> object = BitcastTaggedToWord( |
| UncheckedParameter<Object>(WriteBarrierDescriptor::kObject)); |
| |
| CallCFunctionWithCallerSavedRegisters( |
| function, MachineTypeOf<Int32T>::value, fp_mode, |
| std::make_pair(MachineTypeOf<IntPtrT>::value, object), |
| std::make_pair(MachineTypeOf<IntPtrT>::value, address), |
| std::make_pair(MachineTypeOf<ExternalReference>::value, |
| isolate_constant)); |
| |
| IncrementCounter(isolate()->counters()->write_barriers(), 1); |
| Return(TrueConstant()); |
| } |
| }; |
| |
| TF_BUILTIN(RecordWriteSaveFP, WriteBarrierCodeStubAssembler) { |
| GenerateRecordWrite(SaveFPRegsMode::kSave); |
| } |
| |
| TF_BUILTIN(RecordWriteIgnoreFP, WriteBarrierCodeStubAssembler) { |
| GenerateRecordWrite(SaveFPRegsMode::kIgnore); |
| } |
| |
| TF_BUILTIN(EphemeronKeyBarrierSaveFP, WriteBarrierCodeStubAssembler) { |
| GenerateEphemeronKeyBarrier(SaveFPRegsMode::kSave); |
| } |
| |
| TF_BUILTIN(EphemeronKeyBarrierIgnoreFP, WriteBarrierCodeStubAssembler) { |
| GenerateEphemeronKeyBarrier(SaveFPRegsMode::kIgnore); |
| } |
| |
| #ifdef V8_IS_TSAN |
| class TSANRelaxedStoreCodeStubAssembler : public CodeStubAssembler { |
| public: |
| explicit TSANRelaxedStoreCodeStubAssembler( |
| compiler::CodeAssemblerState* state) |
| : CodeStubAssembler(state) {} |
| |
| TNode<ExternalReference> GetExternalReference(int size) { |
| if (size == kInt8Size) { |
| return ExternalConstant( |
| ExternalReference::tsan_relaxed_store_function_8_bits()); |
| } else if (size == kInt16Size) { |
| return ExternalConstant( |
| ExternalReference::tsan_relaxed_store_function_16_bits()); |
| } else if (size == kInt32Size) { |
| return ExternalConstant( |
| ExternalReference::tsan_relaxed_store_function_32_bits()); |
| } else { |
| CHECK_EQ(size, kInt64Size); |
| return ExternalConstant( |
| ExternalReference::tsan_relaxed_store_function_64_bits()); |
| } |
| } |
| |
| void GenerateTSANRelaxedStore(SaveFPRegsMode fp_mode, int size) { |
| TNode<ExternalReference> function = GetExternalReference(size); |
| auto address = UncheckedParameter<IntPtrT>(TSANStoreDescriptor::kAddress); |
| TNode<IntPtrT> value = BitcastTaggedToWord( |
| UncheckedParameter<Object>(TSANStoreDescriptor::kValue)); |
| CallCFunctionWithCallerSavedRegisters( |
| function, MachineType::Int32(), fp_mode, |
| std::make_pair(MachineType::IntPtr(), address), |
| std::make_pair(MachineType::IntPtr(), value)); |
| Return(UndefinedConstant()); |
| } |
| }; |
| |
| TF_BUILTIN(TSANRelaxedStore8IgnoreFP, TSANRelaxedStoreCodeStubAssembler) { |
| GenerateTSANRelaxedStore(SaveFPRegsMode::kIgnore, kInt8Size); |
| } |
| |
| TF_BUILTIN(TSANRelaxedStore8SaveFP, TSANRelaxedStoreCodeStubAssembler) { |
| GenerateTSANRelaxedStore(SaveFPRegsMode::kSave, kInt8Size); |
| } |
| |
| TF_BUILTIN(TSANRelaxedStore16IgnoreFP, TSANRelaxedStoreCodeStubAssembler) { |
| GenerateTSANRelaxedStore(SaveFPRegsMode::kIgnore, kInt16Size); |
| } |
| |
| TF_BUILTIN(TSANRelaxedStore16SaveFP, TSANRelaxedStoreCodeStubAssembler) { |
| GenerateTSANRelaxedStore(SaveFPRegsMode::kSave, kInt16Size); |
| } |
| |
| TF_BUILTIN(TSANRelaxedStore32IgnoreFP, TSANRelaxedStoreCodeStubAssembler) { |
| GenerateTSANRelaxedStore(SaveFPRegsMode::kIgnore, kInt32Size); |
| } |
| |
| TF_BUILTIN(TSANRelaxedStore32SaveFP, TSANRelaxedStoreCodeStubAssembler) { |
| GenerateTSANRelaxedStore(SaveFPRegsMode::kSave, kInt32Size); |
| } |
| |
| TF_BUILTIN(TSANRelaxedStore64IgnoreFP, TSANRelaxedStoreCodeStubAssembler) { |
| GenerateTSANRelaxedStore(SaveFPRegsMode::kIgnore, kInt64Size); |
| } |
| |
| TF_BUILTIN(TSANRelaxedStore64SaveFP, TSANRelaxedStoreCodeStubAssembler) { |
| GenerateTSANRelaxedStore(SaveFPRegsMode::kSave, kInt64Size); |
| } |
| |
| class TSANSeqCstStoreCodeStubAssembler : public CodeStubAssembler { |
| public: |
| explicit TSANSeqCstStoreCodeStubAssembler(compiler::CodeAssemblerState* state) |
| : CodeStubAssembler(state) {} |
| |
| TNode<ExternalReference> GetExternalReference(int size) { |
| if (size == kInt8Size) { |
| return ExternalConstant( |
| ExternalReference::tsan_seq_cst_store_function_8_bits()); |
| } else if (size == kInt16Size) { |
| return ExternalConstant( |
| ExternalReference::tsan_seq_cst_store_function_16_bits()); |
| } else if (size == kInt32Size) { |
| return ExternalConstant( |
| ExternalReference::tsan_seq_cst_store_function_32_bits()); |
| } else { |
| CHECK_EQ(size, kInt64Size); |
| return ExternalConstant( |
| ExternalReference::tsan_seq_cst_store_function_64_bits()); |
| } |
| } |
| |
| void GenerateTSANSeqCstStore(SaveFPRegsMode fp_mode, int size) { |
| TNode<ExternalReference> function = GetExternalReference(size); |
| auto address = UncheckedParameter<IntPtrT>(TSANStoreDescriptor::kAddress); |
| TNode<IntPtrT> value = BitcastTaggedToWord( |
| UncheckedParameter<Object>(TSANStoreDescriptor::kValue)); |
| CallCFunctionWithCallerSavedRegisters( |
| function, MachineType::Int32(), fp_mode, |
| std::make_pair(MachineType::IntPtr(), address), |
| std::make_pair(MachineType::IntPtr(), value)); |
| Return(UndefinedConstant()); |
| } |
| }; |
| |
| TF_BUILTIN(TSANSeqCstStore8IgnoreFP, TSANSeqCstStoreCodeStubAssembler) { |
| GenerateTSANSeqCstStore(SaveFPRegsMode::kIgnore, kInt8Size); |
| } |
| |
| TF_BUILTIN(TSANSeqCstStore8SaveFP, TSANSeqCstStoreCodeStubAssembler) { |
| GenerateTSANSeqCstStore(SaveFPRegsMode::kSave, kInt8Size); |
| } |
| |
| TF_BUILTIN(TSANSeqCstStore16IgnoreFP, TSANSeqCstStoreCodeStubAssembler) { |
| GenerateTSANSeqCstStore(SaveFPRegsMode::kIgnore, kInt16Size); |
| } |
| |
| TF_BUILTIN(TSANSeqCstStore16SaveFP, TSANSeqCstStoreCodeStubAssembler) { |
| GenerateTSANSeqCstStore(SaveFPRegsMode::kSave, kInt16Size); |
| } |
| |
| TF_BUILTIN(TSANSeqCstStore32IgnoreFP, TSANSeqCstStoreCodeStubAssembler) { |
| GenerateTSANSeqCstStore(SaveFPRegsMode::kIgnore, kInt32Size); |
| } |
| |
| TF_BUILTIN(TSANSeqCstStore32SaveFP, TSANSeqCstStoreCodeStubAssembler) { |
| GenerateTSANSeqCstStore(SaveFPRegsMode::kSave, kInt32Size); |
| } |
| |
| TF_BUILTIN(TSANSeqCstStore64IgnoreFP, TSANSeqCstStoreCodeStubAssembler) { |
| GenerateTSANSeqCstStore(SaveFPRegsMode::kIgnore, kInt64Size); |
| } |
| |
| TF_BUILTIN(TSANSeqCstStore64SaveFP, TSANSeqCstStoreCodeStubAssembler) { |
| GenerateTSANSeqCstStore(SaveFPRegsMode::kSave, kInt64Size); |
| } |
| |
| class TSANRelaxedLoadCodeStubAssembler : public CodeStubAssembler { |
| public: |
| explicit TSANRelaxedLoadCodeStubAssembler(compiler::CodeAssemblerState* state) |
| : CodeStubAssembler(state) {} |
| |
| TNode<ExternalReference> GetExternalReference(int size) { |
| if (size == kInt32Size) { |
| return ExternalConstant( |
| ExternalReference::tsan_relaxed_load_function_32_bits()); |
| } else { |
| CHECK_EQ(size, kInt64Size); |
| return ExternalConstant( |
| ExternalReference::tsan_relaxed_load_function_64_bits()); |
| } |
| } |
| |
| void GenerateTSANRelaxedLoad(SaveFPRegsMode fp_mode, int size) { |
| TNode<ExternalReference> function = GetExternalReference(size); |
| auto address = UncheckedParameter<IntPtrT>(TSANLoadDescriptor::kAddress); |
| CallCFunctionWithCallerSavedRegisters( |
| function, MachineType::Int32(), fp_mode, |
| std::make_pair(MachineType::IntPtr(), address)); |
| Return(UndefinedConstant()); |
| } |
| }; |
| |
| TF_BUILTIN(TSANRelaxedLoad32IgnoreFP, TSANRelaxedLoadCodeStubAssembler) { |
| GenerateTSANRelaxedLoad(SaveFPRegsMode::kIgnore, kInt32Size); |
| } |
| |
| TF_BUILTIN(TSANRelaxedLoad32SaveFP, TSANRelaxedLoadCodeStubAssembler) { |
| GenerateTSANRelaxedLoad(SaveFPRegsMode::kSave, kInt32Size); |
| } |
| |
| TF_BUILTIN(TSANRelaxedLoad64IgnoreFP, TSANRelaxedLoadCodeStubAssembler) { |
| GenerateTSANRelaxedLoad(SaveFPRegsMode::kIgnore, kInt64Size); |
| } |
| |
| TF_BUILTIN(TSANRelaxedLoad64SaveFP, TSANRelaxedLoadCodeStubAssembler) { |
| GenerateTSANRelaxedLoad(SaveFPRegsMode::kSave, kInt64Size); |
| } |
| #endif // V8_IS_TSAN |
| |
| class DeletePropertyBaseAssembler : public AccessorAssembler { |
| public: |
| explicit DeletePropertyBaseAssembler(compiler::CodeAssemblerState* state) |
| : AccessorAssembler(state) {} |
| |
| void DictionarySpecificDelete(TNode<JSReceiver> receiver, |
| TNode<NameDictionary> properties, |
| TNode<IntPtrT> key_index, |
| TNode<Context> context) { |
| // Overwrite the entry itself (see NameDictionary::SetEntry). |
| TNode<Oddball> filler = TheHoleConstant(); |
| DCHECK(RootsTable::IsImmortalImmovable(RootIndex::kTheHoleValue)); |
| StoreFixedArrayElement(properties, key_index, filler, SKIP_WRITE_BARRIER); |
| StoreValueByKeyIndex<NameDictionary>(properties, key_index, filler, |
| SKIP_WRITE_BARRIER); |
| StoreDetailsByKeyIndex<NameDictionary>(properties, key_index, |
| SmiConstant(0)); |
| |
| // Update bookkeeping information (see NameDictionary::ElementRemoved). |
| TNode<Smi> nof = GetNumberOfElements<NameDictionary>(properties); |
| TNode<Smi> new_nof = SmiSub(nof, SmiConstant(1)); |
| SetNumberOfElements<NameDictionary>(properties, new_nof); |
| TNode<Smi> num_deleted = |
| GetNumberOfDeletedElements<NameDictionary>(properties); |
| TNode<Smi> new_deleted = SmiAdd(num_deleted, SmiConstant(1)); |
| SetNumberOfDeletedElements<NameDictionary>(properties, new_deleted); |
| |
| // Shrink the dictionary if necessary (see NameDictionary::Shrink). |
| Label shrinking_done(this); |
| TNode<Smi> capacity = GetCapacity<NameDictionary>(properties); |
| GotoIf(SmiGreaterThan(new_nof, SmiShr(capacity, 2)), &shrinking_done); |
| GotoIf(SmiLessThan(new_nof, SmiConstant(16)), &shrinking_done); |
| |
| TNode<NameDictionary> new_properties = |
| CAST(CallRuntime(Runtime::kShrinkNameDictionary, context, properties)); |
| |
| StoreJSReceiverPropertiesOrHash(receiver, new_properties); |
| |
| Goto(&shrinking_done); |
| BIND(&shrinking_done); |
| } |
| |
| void DictionarySpecificDelete(TNode<JSReceiver> receiver, |
| TNode<SwissNameDictionary> properties, |
| TNode<IntPtrT> key_index, |
| TNode<Context> context) { |
| Label shrunk(this), done(this); |
| TVARIABLE(SwissNameDictionary, shrunk_table); |
| |
| SwissNameDictionaryDelete(properties, key_index, &shrunk, &shrunk_table); |
| Goto(&done); |
| BIND(&shrunk); |
| StoreJSReceiverPropertiesOrHash(receiver, shrunk_table.value()); |
| Goto(&done); |
| |
| BIND(&done); |
| } |
| |
| template <typename Dictionary> |
| void DeleteDictionaryProperty(TNode<JSReceiver> receiver, |
| TNode<Dictionary> properties, TNode<Name> name, |
| TNode<Context> context, Label* dont_delete, |
| Label* notfound) { |
| TVARIABLE(IntPtrT, var_name_index); |
| Label dictionary_found(this, &var_name_index); |
| NameDictionaryLookup<Dictionary>(properties, name, &dictionary_found, |
| &var_name_index, notfound); |
| |
| BIND(&dictionary_found); |
| TNode<IntPtrT> key_index = var_name_index.value(); |
| TNode<Uint32T> details = LoadDetailsByKeyIndex(properties, key_index); |
| GotoIf(IsSetWord32(details, PropertyDetails::kAttributesDontDeleteMask), |
| dont_delete); |
| |
| DictionarySpecificDelete(receiver, properties, key_index, context); |
| |
| Return(TrueConstant()); |
| } |
| }; |
| |
| TF_BUILTIN(DeleteProperty, DeletePropertyBaseAssembler) { |
| auto receiver = Parameter<Object>(Descriptor::kObject); |
| auto key = Parameter<Object>(Descriptor::kKey); |
| auto language_mode = Parameter<Smi>(Descriptor::kLanguageMode); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| |
| TVARIABLE(IntPtrT, var_index); |
| TVARIABLE(Name, var_unique); |
| Label if_index(this, &var_index), if_unique_name(this), if_notunique(this), |
| if_notfound(this), slow(this), if_proxy(this); |
| |
| GotoIf(TaggedIsSmi(receiver), &slow); |
| TNode<Map> receiver_map = LoadMap(CAST(receiver)); |
| TNode<Uint16T> instance_type = LoadMapInstanceType(receiver_map); |
| GotoIf(InstanceTypeEqual(instance_type, JS_PROXY_TYPE), &if_proxy); |
| GotoIf(IsCustomElementsReceiverInstanceType(instance_type), &slow); |
| TryToName(key, &if_index, &var_index, &if_unique_name, &var_unique, &slow, |
| &if_notunique); |
| |
| BIND(&if_index); |
| { |
| Comment("integer index"); |
| Goto(&slow); // TODO(jkummerow): Implement more smarts here. |
| } |
| |
| BIND(&if_unique_name); |
| { |
| Comment("key is unique name"); |
| CheckForAssociatedProtector(var_unique.value(), &slow); |
| |
| Label dictionary(this), dont_delete(this); |
| GotoIf(IsDictionaryMap(receiver_map), &dictionary); |
| |
| // Fast properties need to clear recorded slots and mark the deleted |
| // property as mutable, which can only be done in C++. |
| Goto(&slow); |
| |
| BIND(&dictionary); |
| { |
| InvalidateValidityCellIfPrototype(receiver_map); |
| |
| TNode<PropertyDictionary> properties = |
| CAST(LoadSlowProperties(CAST(receiver))); |
| DeleteDictionaryProperty(CAST(receiver), properties, var_unique.value(), |
| context, &dont_delete, &if_notfound); |
| } |
| |
| BIND(&dont_delete); |
| { |
| static_assert(LanguageModeSize == 2); |
| GotoIf(SmiNotEqual(language_mode, SmiConstant(LanguageMode::kSloppy)), |
| &slow); |
| Return(FalseConstant()); |
| } |
| } |
| |
| BIND(&if_notunique); |
| { |
| // If the string was not found in the string table, then no object can |
| // have a property with that name. |
| TryInternalizeString(CAST(key), &if_index, &var_index, &if_unique_name, |
| &var_unique, &if_notfound, &slow); |
| } |
| |
| BIND(&if_notfound); |
| Return(TrueConstant()); |
| |
| BIND(&if_proxy); |
| { |
| TNode<Name> name = CAST(CallBuiltin(Builtin::kToName, context, key)); |
| GotoIf(IsPrivateSymbol(name), &slow); |
| TailCallBuiltin(Builtin::kProxyDeleteProperty, context, receiver, name, |
| language_mode); |
| } |
| |
| BIND(&slow); |
| { |
| TailCallRuntime(Runtime::kDeleteProperty, context, receiver, key, |
| language_mode); |
| } |
| } |
| |
| namespace { |
| |
| class SetOrCopyDataPropertiesAssembler : public CodeStubAssembler { |
| public: |
| explicit SetOrCopyDataPropertiesAssembler(compiler::CodeAssemblerState* state) |
| : CodeStubAssembler(state) {} |
| |
| protected: |
| TNode<JSObject> AllocateJsObjectTarget(TNode<Context> context) { |
| const TNode<NativeContext> native_context = LoadNativeContext(context); |
| const TNode<JSFunction> object_function = Cast( |
| LoadContextElement(native_context, Context::OBJECT_FUNCTION_INDEX)); |
| const TNode<Map> map = |
| Cast(LoadJSFunctionPrototypeOrInitialMap(object_function)); |
| const TNode<JSObject> target = AllocateJSObjectFromMap(map); |
| return target; |
| } |
| TNode<Object> SetOrCopyDataProperties( |
| TNode<Context> context, TNode<JSReceiver> target, TNode<Object> source, |
| Label* if_runtime, |
| base::Optional<TNode<IntPtrT>> excluded_property_count = base::nullopt, |
| base::Optional<TNode<IntPtrT>> excluded_property_base = base::nullopt, |
| bool use_set = true) { |
| Label if_done(this), if_noelements(this), |
| if_sourcenotjsobject(this, Label::kDeferred); |
| |
| // JSPrimitiveWrapper wrappers for numbers don't have any enumerable own |
| // properties, so we can immediately skip the whole operation if {source} is |
| // a Smi. |
| GotoIf(TaggedIsSmi(source), &if_done); |
| |
| // Otherwise check if {source} is a proper JSObject, and if not, defer |
| // to testing for non-empty strings below. |
| TNode<Map> source_map = LoadMap(CAST(source)); |
| TNode<Uint16T> source_instance_type = LoadMapInstanceType(source_map); |
| GotoIfNot(IsJSObjectInstanceType(source_instance_type), |
| &if_sourcenotjsobject); |
| |
| TNode<FixedArrayBase> source_elements = LoadElements(CAST(source)); |
| GotoIf(IsEmptyFixedArray(source_elements), &if_noelements); |
| Branch(IsEmptySlowElementDictionary(source_elements), &if_noelements, |
| if_runtime); |
| |
| BIND(&if_noelements); |
| { |
| // If the target is deprecated, the object will be updated on first |
| // store. If the source for that store equals the target, this will |
| // invalidate the cached representation of the source. Handle this case |
| // in runtime. |
| TNode<Map> target_map = LoadMap(target); |
| GotoIf(IsDeprecatedMap(target_map), if_runtime); |
| if (use_set) { |
| TNode<BoolT> target_is_simple_receiver = IsSimpleObjectMap(target_map); |
| ForEachEnumerableOwnProperty( |
| context, source_map, CAST(source), kEnumerationOrder, |
| [=](TNode<Name> key, TNode<Object> value) { |
| KeyedStoreGenericGenerator::SetProperty( |
| state(), context, target, target_is_simple_receiver, key, |
| value, LanguageMode::kStrict); |
| }, |
| if_runtime); |
| } else { |
| ForEachEnumerableOwnProperty( |
| context, source_map, CAST(source), kEnumerationOrder, |
| [=](TNode<Name> key, TNode<Object> value) { |
| Label skip(this); |
| if (excluded_property_count.has_value()) { |
| BuildFastLoop<IntPtrT>( |
| IntPtrConstant(0), excluded_property_count.value(), |
| [&](TNode<IntPtrT> index) { |
| auto offset = Signed(TimesSystemPointerSize(index)); |
| TNode<IntPtrT> location = Signed( |
| IntPtrSub(excluded_property_base.value(), offset)); |
| auto property = LoadFullTagged(location); |
| |
| Label continue_label(this); |
| BranchIfSameValue(key, property, &skip, &continue_label); |
| Bind(&continue_label); |
| }, |
| 1, LoopUnrollingMode::kNo, IndexAdvanceMode::kPost); |
| } |
| |
| CallBuiltin(Builtin::kCreateDataProperty, context, target, key, |
| value); |
| Goto(&skip); |
| Bind(&skip); |
| }, |
| if_runtime); |
| } |
| Goto(&if_done); |
| } |
| |
| BIND(&if_sourcenotjsobject); |
| { |
| // Handle other JSReceivers in the runtime. |
| GotoIf(IsJSReceiverInstanceType(source_instance_type), if_runtime); |
| |
| // Non-empty strings are the only non-JSReceivers that need to be |
| // handled explicitly by Object.assign() and CopyDataProperties. |
| GotoIfNot(IsStringInstanceType(source_instance_type), &if_done); |
| TNode<IntPtrT> source_length = LoadStringLengthAsWord(CAST(source)); |
| Branch(IntPtrEqual(source_length, IntPtrConstant(0)), &if_done, |
| if_runtime); |
| } |
| |
| BIND(&if_done); |
| return target; |
| } |
| }; |
| |
| } // namespace |
| |
| TF_BUILTIN(CopyDataPropertiesWithExcludedPropertiesOnStack, |
| SetOrCopyDataPropertiesAssembler) { |
| auto source = UncheckedParameter<Object>(Descriptor::kSource); |
| auto excluded_property_count = |
| UncheckedParameter<IntPtrT>(Descriptor::kExcludedPropertyCount); |
| auto excluded_properties = |
| UncheckedParameter<IntPtrT>(Descriptor::kExcludedPropertyBase); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| |
| // first check undefine or null |
| Label if_runtime(this, Label::kDeferred); |
| GotoIf(IsNullOrUndefined(source), &if_runtime); |
| |
| TNode<JSReceiver> target = AllocateJsObjectTarget(context); |
| Return(SetOrCopyDataProperties(context, target, source, &if_runtime, |
| excluded_property_count, excluded_properties, |
| false)); |
| |
| BIND(&if_runtime); |
| // The excluded_property_base is passed as a raw stack pointer, but is |
| // bitcasted to a Smi . This is safe because the stack pointer is aligned, so |
| // it looks like a Smi to the GC. |
| CSA_DCHECK(this, IntPtrEqual(WordAnd(excluded_properties, |
| IntPtrConstant(kSmiTagMask)), |
| IntPtrConstant(kSmiTag))); |
| TailCallRuntime(Runtime::kCopyDataPropertiesWithExcludedPropertiesOnStack, |
| context, source, SmiTag(excluded_property_count), |
| BitcastWordToTaggedSigned(excluded_properties)); |
| } |
| |
| TF_BUILTIN(CopyDataPropertiesWithExcludedProperties, |
| SetOrCopyDataPropertiesAssembler) { |
| auto source = UncheckedParameter<Object>(Descriptor::kSource); |
| |
| auto excluded_property_count_smi = |
| UncheckedParameter<Smi>(Descriptor::kExcludedPropertyCount); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| |
| auto excluded_property_count = SmiToIntPtr(excluded_property_count_smi); |
| CodeStubArguments arguments(this, excluded_property_count); |
| |
| TNode<IntPtrT> excluded_properties = |
| ReinterpretCast<IntPtrT>(arguments.AtIndexPtr( |
| IntPtrSub(excluded_property_count, IntPtrConstant(2)))); |
| |
| arguments.PopAndReturn(CallBuiltin( |
| Builtin::kCopyDataPropertiesWithExcludedPropertiesOnStack, context, |
| source, excluded_property_count, excluded_properties)); |
| } |
| |
| // ES #sec-copydataproperties |
| TF_BUILTIN(CopyDataProperties, SetOrCopyDataPropertiesAssembler) { |
| auto target = Parameter<JSObject>(Descriptor::kTarget); |
| auto source = Parameter<Object>(Descriptor::kSource); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| |
| CSA_DCHECK(this, TaggedNotEqual(target, source)); |
| |
| Label if_runtime(this, Label::kDeferred); |
| SetOrCopyDataProperties(context, target, source, &if_runtime, base::nullopt, |
| base::nullopt, false); |
| Return(UndefinedConstant()); |
| |
| BIND(&if_runtime); |
| TailCallRuntime(Runtime::kCopyDataProperties, context, target, source); |
| } |
| |
| TF_BUILTIN(SetDataProperties, SetOrCopyDataPropertiesAssembler) { |
| auto target = Parameter<JSReceiver>(Descriptor::kTarget); |
| auto source = Parameter<Object>(Descriptor::kSource); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| |
| Label if_runtime(this, Label::kDeferred); |
| GotoIfForceSlowPath(&if_runtime); |
| SetOrCopyDataProperties(context, target, source, &if_runtime, base::nullopt, |
| base::nullopt, true); |
| Return(UndefinedConstant()); |
| |
| BIND(&if_runtime); |
| TailCallRuntime(Runtime::kSetDataProperties, context, target, source); |
| } |
| |
| TF_BUILTIN(ForInEnumerate, CodeStubAssembler) { |
| auto receiver = Parameter<JSReceiver>(Descriptor::kReceiver); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| |
| Label if_empty(this), if_runtime(this, Label::kDeferred); |
| TNode<Map> receiver_map = CheckEnumCache(receiver, &if_empty, &if_runtime); |
| Return(receiver_map); |
| |
| BIND(&if_empty); |
| Return(EmptyFixedArrayConstant()); |
| |
| BIND(&if_runtime); |
| TailCallRuntime(Runtime::kForInEnumerate, context, receiver); |
| } |
| |
| TF_BUILTIN(ForInPrepare, CodeStubAssembler) { |
| // The {enumerator} is either a Map or a FixedArray. |
| auto enumerator = Parameter<HeapObject>(Descriptor::kEnumerator); |
| auto index = Parameter<TaggedIndex>(Descriptor::kVectorIndex); |
| auto feedback_vector = Parameter<FeedbackVector>(Descriptor::kFeedbackVector); |
| TNode<UintPtrT> vector_index = Unsigned(TaggedIndexToIntPtr(index)); |
| |
| TNode<FixedArray> cache_array; |
| TNode<Smi> cache_length; |
| ForInPrepare(enumerator, vector_index, feedback_vector, &cache_array, |
| &cache_length, UpdateFeedbackMode::kGuaranteedFeedback); |
| Return(cache_array, cache_length); |
| } |
| |
| TF_BUILTIN(ForInFilter, CodeStubAssembler) { |
| auto key = Parameter<String>(Descriptor::kKey); |
| auto object = Parameter<HeapObject>(Descriptor::kObject); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| |
| Label if_true(this), if_false(this); |
| TNode<Oddball> result = HasProperty(context, object, key, kForInHasProperty); |
| Branch(IsTrue(result), &if_true, &if_false); |
| |
| BIND(&if_true); |
| Return(key); |
| |
| BIND(&if_false); |
| Return(UndefinedConstant()); |
| } |
| |
| TF_BUILTIN(SameValue, CodeStubAssembler) { |
| auto lhs = Parameter<Object>(Descriptor::kLeft); |
| auto rhs = Parameter<Object>(Descriptor::kRight); |
| |
| Label if_true(this), if_false(this); |
| BranchIfSameValue(lhs, rhs, &if_true, &if_false); |
| |
| BIND(&if_true); |
| Return(TrueConstant()); |
| |
| BIND(&if_false); |
| Return(FalseConstant()); |
| } |
| |
| TF_BUILTIN(SameValueNumbersOnly, CodeStubAssembler) { |
| auto lhs = Parameter<Object>(Descriptor::kLeft); |
| auto rhs = Parameter<Object>(Descriptor::kRight); |
| |
| Label if_true(this), if_false(this); |
| BranchIfSameValue(lhs, rhs, &if_true, &if_false, SameValueMode::kNumbersOnly); |
| |
| BIND(&if_true); |
| Return(TrueConstant()); |
| |
| BIND(&if_false); |
| Return(FalseConstant()); |
| } |
| |
| TF_BUILTIN(AdaptorWithBuiltinExitFrame, CodeStubAssembler) { |
| auto target = Parameter<JSFunction>(Descriptor::kTarget); |
| auto new_target = Parameter<Object>(Descriptor::kNewTarget); |
| auto c_function = UncheckedParameter<WordT>(Descriptor::kCFunction); |
| |
| // The logic contained here is mirrored for TurboFan inlining in |
| // JSTypedLowering::ReduceJSCall{Function,Construct}. Keep these in sync. |
| |
| // Make sure we operate in the context of the called function (for example |
| // ConstructStubs implemented in C++ will be run in the context of the caller |
| // instead of the callee, due to the way that [[Construct]] is defined for |
| // ordinary functions). |
| TNode<Context> context = LoadJSFunctionContext(target); |
| |
| auto actual_argc = |
| UncheckedParameter<Int32T>(Descriptor::kActualArgumentsCount); |
| CodeStubArguments args(this, actual_argc); |
| |
| TVARIABLE(Int32T, pushed_argc, |
| TruncateIntPtrToInt32(args.GetLengthWithReceiver())); |
| |
| TNode<SharedFunctionInfo> shared = LoadJSFunctionSharedFunctionInfo(target); |
| |
| TNode<Int32T> formal_count = UncheckedCast<Int32T>( |
| LoadSharedFunctionInfoFormalParameterCountWithReceiver(shared)); |
| |
| // The number of arguments pushed is the maximum of actual arguments count |
| // and formal parameters count. Except when the formal parameters count is |
| // the sentinel. |
| Label check_argc(this), update_argc(this), done_argc(this); |
| |
| Branch(IsSharedFunctionInfoDontAdaptArguments(shared), &done_argc, |
| &check_argc); |
| BIND(&check_argc); |
| Branch(Int32GreaterThan(formal_count, pushed_argc.value()), &update_argc, |
| &done_argc); |
| BIND(&update_argc); |
| pushed_argc = formal_count; |
| Goto(&done_argc); |
| BIND(&done_argc); |
| |
| // Update arguments count for CEntry to contain the number of arguments |
| // including the receiver and the extra arguments. |
| TNode<Int32T> argc = Int32Add( |
| pushed_argc.value(), |
| Int32Constant(BuiltinExitFrameConstants::kNumExtraArgsWithoutReceiver)); |
| |
| const bool builtin_exit_frame = true; |
| TNode<Code> code = HeapConstant( |
| CodeFactory::CEntry(isolate(), 1, ArgvMode::kStack, builtin_exit_frame)); |
| |
| // Unconditionally push argc, target and new target as extra stack arguments. |
| // They will be used by stack frame iterators when constructing stack trace. |
| TailCallStub(CEntry1ArgvOnStackDescriptor{}, // descriptor |
| code, context, // standard arguments for TailCallStub |
| argc, c_function, // register arguments |
| TheHoleConstant(), // additional stack argument 1 (padding) |
| SmiFromInt32(argc), // additional stack argument 2 |
| target, // additional stack argument 3 |
| new_target); // additional stack argument 4 |
| } |
| |
| TF_BUILTIN(NewHeapNumber, CodeStubAssembler) { |
| auto val = UncheckedParameter<Float64T>(Descriptor::kValue); |
| Return(ChangeFloat64ToTagged(val)); |
| } |
| |
| TF_BUILTIN(AllocateInYoungGeneration, CodeStubAssembler) { |
| auto requested_size = UncheckedParameter<IntPtrT>(Descriptor::kRequestedSize); |
| CSA_CHECK(this, IsValidPositiveSmi(requested_size)); |
| |
| TNode<Smi> allocation_flags = |
| SmiConstant(Smi::FromInt(AllocateDoubleAlignFlag::encode(false) | |
| AllowLargeObjectAllocationFlag::encode(true))); |
| TailCallRuntime(Runtime::kAllocateInYoungGeneration, NoContextConstant(), |
| SmiFromIntPtr(requested_size), allocation_flags); |
| } |
| |
| TF_BUILTIN(AllocateRegularInYoungGeneration, CodeStubAssembler) { |
| auto requested_size = UncheckedParameter<IntPtrT>(Descriptor::kRequestedSize); |
| CSA_CHECK(this, IsValidPositiveSmi(requested_size)); |
| |
| TNode<Smi> allocation_flags = |
| SmiConstant(Smi::FromInt(AllocateDoubleAlignFlag::encode(false) | |
| AllowLargeObjectAllocationFlag::encode(false))); |
| TailCallRuntime(Runtime::kAllocateInYoungGeneration, NoContextConstant(), |
| SmiFromIntPtr(requested_size), allocation_flags); |
| } |
| |
| TF_BUILTIN(AllocateInOldGeneration, CodeStubAssembler) { |
| auto requested_size = UncheckedParameter<IntPtrT>(Descriptor::kRequestedSize); |
| CSA_CHECK(this, IsValidPositiveSmi(requested_size)); |
| |
| TNode<Smi> runtime_flags = |
| SmiConstant(Smi::FromInt(AllocateDoubleAlignFlag::encode(false) | |
| AllowLargeObjectAllocationFlag::encode(true))); |
| TailCallRuntime(Runtime::kAllocateInOldGeneration, NoContextConstant(), |
| SmiFromIntPtr(requested_size), runtime_flags); |
| } |
| |
| TF_BUILTIN(AllocateRegularInOldGeneration, CodeStubAssembler) { |
| auto requested_size = UncheckedParameter<IntPtrT>(Descriptor::kRequestedSize); |
| CSA_CHECK(this, IsValidPositiveSmi(requested_size)); |
| |
| TNode<Smi> runtime_flags = |
| SmiConstant(Smi::FromInt(AllocateDoubleAlignFlag::encode(false) | |
| AllowLargeObjectAllocationFlag::encode(false))); |
| TailCallRuntime(Runtime::kAllocateInOldGeneration, NoContextConstant(), |
| SmiFromIntPtr(requested_size), runtime_flags); |
| } |
| |
| TF_BUILTIN(Abort, CodeStubAssembler) { |
| auto message_id = Parameter<Smi>(Descriptor::kMessageOrMessageId); |
| TailCallRuntime(Runtime::kAbort, NoContextConstant(), message_id); |
| } |
| |
| TF_BUILTIN(AbortCSADcheck, CodeStubAssembler) { |
| auto message = Parameter<String>(Descriptor::kMessageOrMessageId); |
| TailCallRuntime(Runtime::kAbortCSADcheck, NoContextConstant(), message); |
| } |
| |
| void Builtins::Generate_CEntry_Return1_ArgvOnStack_NoBuiltinExit( |
| MacroAssembler* masm) { |
| Generate_CEntry(masm, 1, ArgvMode::kStack, false); |
| } |
| |
| void Builtins::Generate_CEntry_Return1_ArgvOnStack_BuiltinExit( |
| MacroAssembler* masm) { |
| Generate_CEntry(masm, 1, ArgvMode::kStack, true); |
| } |
| |
| void Builtins::Generate_CEntry_Return1_ArgvInRegister_NoBuiltinExit( |
| MacroAssembler* masm) { |
| Generate_CEntry(masm, 1, ArgvMode::kRegister, false); |
| } |
| |
| void Builtins::Generate_CEntry_Return2_ArgvOnStack_NoBuiltinExit( |
| MacroAssembler* masm) { |
| Generate_CEntry(masm, 2, ArgvMode::kStack, false); |
| } |
| |
| void Builtins::Generate_CEntry_Return2_ArgvOnStack_BuiltinExit( |
| MacroAssembler* masm) { |
| Generate_CEntry(masm, 2, ArgvMode::kStack, true); |
| } |
| |
| void Builtins::Generate_CEntry_Return2_ArgvInRegister_NoBuiltinExit( |
| MacroAssembler* masm) { |
| Generate_CEntry(masm, 2, ArgvMode::kRegister, false); |
| } |
| |
| #if !defined(V8_TARGET_ARCH_ARM) |
| void Builtins::Generate_MemCopyUint8Uint8(MacroAssembler* masm) { |
| masm->Call(BUILTIN_CODE(masm->isolate(), Illegal), RelocInfo::CODE_TARGET); |
| } |
| #endif // !defined(V8_TARGET_ARCH_ARM) |
| |
| #ifndef V8_TARGET_ARCH_IA32 |
| void Builtins::Generate_MemMove(MacroAssembler* masm) { |
| masm->Call(BUILTIN_CODE(masm->isolate(), Illegal), RelocInfo::CODE_TARGET); |
| } |
| #endif // V8_TARGET_ARCH_IA32 |
| |
| // TODO(v8:11421): Remove #if once baseline compiler is ported to other |
| // architectures. |
| #if ENABLE_SPARKPLUG |
| void Builtins::Generate_BaselineLeaveFrame(MacroAssembler* masm) { |
| EmitReturnBaseline(masm); |
| } |
| #else |
| // Stub out implementations of arch-specific baseline builtins. |
| void Builtins::Generate_BaselineOutOfLinePrologue(MacroAssembler* masm) { |
| masm->Trap(); |
| } |
| void Builtins::Generate_BaselineLeaveFrame(MacroAssembler* masm) { |
| masm->Trap(); |
| } |
| void Builtins::Generate_BaselineOnStackReplacement(MacroAssembler* masm) { |
| masm->Trap(); |
| } |
| #endif |
| |
| // TODO(v8:11421): Remove #if once the Maglev compiler is ported to other |
| // architectures. |
| #ifndef V8_TARGET_ARCH_X64 |
| void Builtins::Generate_MaglevOnStackReplacement(MacroAssembler* masm) { |
| using D = |
| i::CallInterfaceDescriptorFor<Builtin::kMaglevOnStackReplacement>::type; |
| static_assert(D::kParameterCount == 1); |
| masm->Trap(); |
| } |
| #endif // V8_TARGET_ARCH_X64 |
| |
| // ES6 [[Get]] operation. |
| TF_BUILTIN(GetProperty, CodeStubAssembler) { |
| auto object = Parameter<Object>(Descriptor::kObject); |
| auto key = Parameter<Object>(Descriptor::kKey); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| // TODO(duongn): consider tailcalling to GetPropertyWithReceiver(object, |
| // object, key, OnNonExistent::kReturnUndefined). |
| Label if_notfound(this), if_proxy(this, Label::kDeferred), |
| if_slow(this, Label::kDeferred); |
| |
| CodeStubAssembler::LookupPropertyInHolder lookup_property_in_holder = |
| [=](TNode<HeapObject> receiver, TNode<HeapObject> holder, |
| TNode<Map> holder_map, TNode<Int32T> holder_instance_type, |
| TNode<Name> unique_name, Label* next_holder, Label* if_bailout) { |
| TVARIABLE(Object, var_value); |
| Label if_found(this); |
| TryGetOwnProperty(context, receiver, CAST(holder), holder_map, |
| holder_instance_type, unique_name, &if_found, |
| &var_value, next_holder, if_bailout); |
| BIND(&if_found); |
| Return(var_value.value()); |
| }; |
| |
| CodeStubAssembler::LookupElementInHolder lookup_element_in_holder = |
| [=](TNode<HeapObject> receiver, TNode<HeapObject> holder, |
| TNode<Map> holder_map, TNode<Int32T> holder_instance_type, |
| TNode<IntPtrT> index, Label* next_holder, Label* if_bailout) { |
| // Not supported yet. |
| Use(next_holder); |
| Goto(if_bailout); |
| }; |
| |
| TryPrototypeChainLookup(object, object, key, lookup_property_in_holder, |
| lookup_element_in_holder, &if_notfound, &if_slow, |
| &if_proxy); |
| |
| BIND(&if_notfound); |
| Return(UndefinedConstant()); |
| |
| BIND(&if_slow); |
| TailCallRuntime(Runtime::kGetProperty, context, object, key); |
| |
| BIND(&if_proxy); |
| { |
| // Convert the {key} to a Name first. |
| TNode<Object> name = CallBuiltin(Builtin::kToName, context, key); |
| |
| // The {object} is a JSProxy instance, look up the {name} on it, passing |
| // {object} both as receiver and holder. If {name} is absent we can safely |
| // return undefined from here. |
| TailCallBuiltin(Builtin::kProxyGetProperty, context, object, name, object, |
| SmiConstant(OnNonExistent::kReturnUndefined)); |
| } |
| } |
| |
| // ES6 [[Get]] operation with Receiver. |
| TF_BUILTIN(GetPropertyWithReceiver, CodeStubAssembler) { |
| auto object = Parameter<Object>(Descriptor::kObject); |
| auto key = Parameter<Object>(Descriptor::kKey); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| auto receiver = Parameter<Object>(Descriptor::kReceiver); |
| auto on_non_existent = Parameter<Object>(Descriptor::kOnNonExistent); |
| Label if_notfound(this), if_proxy(this, Label::kDeferred), |
| if_slow(this, Label::kDeferred); |
| |
| CodeStubAssembler::LookupPropertyInHolder lookup_property_in_holder = |
| [=](TNode<HeapObject> receiver, TNode<HeapObject> holder, |
| TNode<Map> holder_map, TNode<Int32T> holder_instance_type, |
| TNode<Name> unique_name, Label* next_holder, Label* if_bailout) { |
| TVARIABLE(Object, var_value); |
| Label if_found(this); |
| TryGetOwnProperty(context, receiver, CAST(holder), holder_map, |
| holder_instance_type, unique_name, &if_found, |
| &var_value, next_holder, if_bailout); |
| BIND(&if_found); |
| Return(var_value.value()); |
| }; |
| |
| CodeStubAssembler::LookupElementInHolder lookup_element_in_holder = |
| [=](TNode<HeapObject> receiver, TNode<HeapObject> holder, |
| TNode<Map> holder_map, TNode<Int32T> holder_instance_type, |
| TNode<IntPtrT> index, Label* next_holder, Label* if_bailout) { |
| // Not supported yet. |
| Use(next_holder); |
| Goto(if_bailout); |
| }; |
| |
| TryPrototypeChainLookup(receiver, object, key, lookup_property_in_holder, |
| lookup_element_in_holder, &if_notfound, &if_slow, |
| &if_proxy); |
| |
| BIND(&if_notfound); |
| Label throw_reference_error(this); |
| GotoIf(TaggedEqual(on_non_existent, |
| SmiConstant(OnNonExistent::kThrowReferenceError)), |
| &throw_reference_error); |
| CSA_DCHECK(this, TaggedEqual(on_non_existent, |
| SmiConstant(OnNonExistent::kReturnUndefined))); |
| Return(UndefinedConstant()); |
| |
| BIND(&throw_reference_error); |
| Return(CallRuntime(Runtime::kThrowReferenceError, context, key)); |
| |
| BIND(&if_slow); |
| TailCallRuntime(Runtime::kGetPropertyWithReceiver, context, object, key, |
| receiver, on_non_existent); |
| |
| BIND(&if_proxy); |
| { |
| // Convert the {key} to a Name first. |
| TNode<Name> name = CAST(CallBuiltin(Builtin::kToName, context, key)); |
| |
| // Proxy cannot handle private symbol so bailout. |
| GotoIf(IsPrivateSymbol(name), &if_slow); |
| |
| // The {object} is a JSProxy instance, look up the {name} on it, passing |
| // {object} both as receiver and holder. If {name} is absent we can safely |
| // return undefined from here. |
| TailCallBuiltin(Builtin::kProxyGetProperty, context, object, name, receiver, |
| on_non_existent); |
| } |
| } |
| |
| // ES6 [[Set]] operation. |
| TF_BUILTIN(SetProperty, CodeStubAssembler) { |
| auto context = Parameter<Context>(Descriptor::kContext); |
| auto receiver = Parameter<Object>(Descriptor::kReceiver); |
| auto key = Parameter<Object>(Descriptor::kKey); |
| auto value = Parameter<Object>(Descriptor::kValue); |
| |
| KeyedStoreGenericGenerator::SetProperty(state(), context, receiver, key, |
| value, LanguageMode::kStrict); |
| } |
| |
| // ES6 CreateDataProperty(), specialized for the case where objects are still |
| // being initialized, and have not yet been made accessible to the user. Thus, |
| // any operation here should be unobservable until after the object has been |
| // returned. |
| TF_BUILTIN(CreateDataProperty, CodeStubAssembler) { |
| auto context = Parameter<Context>(Descriptor::kContext); |
| auto receiver = Parameter<JSObject>(Descriptor::kReceiver); |
| auto key = Parameter<Object>(Descriptor::kKey); |
| auto value = Parameter<Object>(Descriptor::kValue); |
| |
| KeyedStoreGenericGenerator::CreateDataProperty(state(), context, receiver, |
| key, value); |
| } |
| |
| TF_BUILTIN(InstantiateAsmJs, CodeStubAssembler) { |
| Label tailcall_to_function(this); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| auto new_target = Parameter<Object>(Descriptor::kNewTarget); |
| auto arg_count = |
| UncheckedParameter<Int32T>(Descriptor::kActualArgumentsCount); |
| auto function = Parameter<JSFunction>(Descriptor::kTarget); |
| |
| // Retrieve arguments from caller (stdlib, foreign, heap). |
| CodeStubArguments args(this, arg_count); |
| TNode<Object> stdlib = args.GetOptionalArgumentValue(0); |
| TNode<Object> foreign = args.GetOptionalArgumentValue(1); |
| TNode<Object> heap = args.GetOptionalArgumentValue(2); |
| |
| // Call runtime, on success just pass the result to the caller and pop all |
| // arguments. A smi 0 is returned on failure, an object on success. |
| TNode<Object> maybe_result_or_smi_zero = CallRuntime( |
| Runtime::kInstantiateAsmJs, context, function, stdlib, foreign, heap); |
| GotoIf(TaggedIsSmi(maybe_result_or_smi_zero), &tailcall_to_function); |
| |
| TNode<SharedFunctionInfo> shared = LoadJSFunctionSharedFunctionInfo(function); |
| TNode<Int32T> parameter_count = UncheckedCast<Int32T>( |
| LoadSharedFunctionInfoFormalParameterCountWithReceiver(shared)); |
| // This builtin intercepts a call to {function}, where the number of arguments |
| // pushed is the maximum of actual arguments count and formal parameters |
| // count. |
| Label argc_lt_param_count(this), argc_ge_param_count(this); |
| Branch(IntPtrLessThan(args.GetLengthWithReceiver(), |
| ChangeInt32ToIntPtr(parameter_count)), |
| &argc_lt_param_count, &argc_ge_param_count); |
| BIND(&argc_lt_param_count); |
| PopAndReturn(parameter_count, maybe_result_or_smi_zero); |
| BIND(&argc_ge_param_count); |
| args.PopAndReturn(maybe_result_or_smi_zero); |
| |
| BIND(&tailcall_to_function); |
| // On failure, tail call back to regular JavaScript by re-calling the given |
| // function which has been reset to the compile lazy builtin. |
| |
| TNode<Code> code = LoadJSFunctionCode(function); |
| TailCallJSCode(code, context, function, new_target, arg_count); |
| } |
| |
| TF_BUILTIN(FindNonDefaultConstructorOrConstruct, CodeStubAssembler) { |
| auto this_function = Parameter<JSFunction>(Descriptor::kThisFunction); |
| auto new_target = Parameter<Object>(Descriptor::kNewTarget); |
| auto context = Parameter<Context>(Descriptor::kContext); |
| |
| TVARIABLE(Object, constructor); |
| Label found_default_base_ctor(this, &constructor), |
| found_something_else(this, &constructor); |
| |
| FindNonDefaultConstructorOrConstruct(context, this_function, constructor, |
| &found_default_base_ctor, |
| &found_something_else); |
| |
| BIND(&found_default_base_ctor); |
| { |
| // Create an object directly, without calling the default base ctor. |
| TNode<Object> instance = CallBuiltin(Builtin::kFastNewObject, context, |
| constructor.value(), new_target); |
| Return(TrueConstant(), instance); |
| } |
| |
| BIND(&found_something_else); |
| { |
| // Not a base ctor (or bailed out). |
| Return(FalseConstant(), constructor.value()); |
| } |
| } |
| |
| // Dispatcher for different implementations of the [[GetOwnProperty]] internal |
| // method, returning a PropertyDescriptorObject (a Struct representation of the |
| // spec PropertyDescriptor concept) |
| TF_BUILTIN(GetOwnPropertyDescriptor, CodeStubAssembler) { |
| auto context = Parameter<Context>(Descriptor::kContext); |
| auto receiver = Parameter<JSReceiver>(Descriptor::kReceiver); |
| auto key = Parameter<Name>(Descriptor::kKey); |
| |
| Label call_runtime(this); |
| |
| TNode<Map> map = LoadMap(receiver); |
| TNode<Uint16T> instance_type = LoadMapInstanceType(map); |
| |
| GotoIf(IsSpecialReceiverInstanceType(instance_type), &call_runtime); |
| TailCallBuiltin(Builtin::kOrdinaryGetOwnPropertyDescriptor, context, receiver, |
| key); |
| |
| BIND(&call_runtime); |
| TailCallRuntime(Runtime::kGetOwnPropertyDescriptorObject, context, receiver, |
| key); |
| } |
| |
| } // namespace internal |
| } // namespace v8 |