Lines Matching refs:Uint32T
1611 TNode<Uint32T> CodeStubAssembler::LoadMapBitField3(SloppyTNode<Map> map) { in LoadMapBitField3()
1613 return UncheckedCast<Uint32T>( in LoadMapBitField3()
1780 TNode<Uint32T> CodeStubAssembler::LoadNameHashField(SloppyTNode<Name> name) { in LoadNameHashField()
1782 return LoadObjectField<Uint32T>(name, Name::kHashFieldOffset); in LoadNameHashField()
1785 TNode<Uint32T> CodeStubAssembler::LoadNameHash(SloppyTNode<Name> name, in LoadNameHash()
1787 TNode<Uint32T> hash_field = LoadNameHashField(name); in LoadNameHash()
2571 TNode<Uint32T> const function_kind = in IsGeneratorFunction()
2840 TNode<Uint32T> details = LoadDetailsByKeyIndex( in EnsureArrayLengthWritable()
2859 TNode<Uint32T> kind = DecodeWord32<Map::ElementsKindBits>(bit_field2); in EnsureArrayPushable()
4923 SloppyTNode<Uint32T> value) { in ChangeUint32ToTagged()
5008 TNode<Uint32T> CodeStubAssembler::ChangeNumberToUint32(TNode<Number> value) { in ChangeNumberToUint32()
5009 TVARIABLE(Uint32T, var_result); in ChangeNumberToUint32()
5922 TNode<Uint32T> int_value = Unsigned(TruncateFloat64ToWord32(value)); in IsHeapNumberUint32()
6624 TNode<Uint32T> hash = LoadNameHashField(input); in StringToNumber()
7392 TNode<Uint32T> CodeStubAssembler::DecodeWord32(SloppyTNode<Word32T> word32, in DecodeWord32()
7394 return UncheckedCast<Uint32T>(Word32Shr( in DecodeWord32()
7554 TNode<Uint32T> CodeStubAssembler::LoadDetailsByKeyIndex( in LoadDetailsByKeyIndex()
7811 TNode<Uint32T> details = in BasicLoadNumberDictionaryElement()
7813 TNode<Uint32T> kind = DecodeWord32<PropertyDetails::KindField>(details); in BasicLoadNumberDictionaryElement()
7831 TNode<Uint32T> details = in BasicStoreNumberDictionaryElement()
7833 TNode<Uint32T> kind = DecodeWord32<PropertyDetails::KindField>(details); in BasicStoreNumberDictionaryElement()
7950 TNode<Uint32T> number_of_valid_entries, in LookupLinear()
7977 TNode<Uint32T> CodeStubAssembler::NumberOfEntries<DescriptorArray>( in NumberOfEntries()
7985 TNode<Uint32T> CodeStubAssembler::NumberOfEntries<TransitionArray>( in NumberOfEntries()
7988 return Select<Uint32T>( in NumberOfEntries()
8000 TNode<Uint32T> entry_index) { in EntryIndexToIndex()
8007 TNode<IntPtrT> CodeStubAssembler::ToKeyIndex(TNode<Uint32T> entry_index) { in ToKeyIndex()
8013 TNode<Uint32T>);
8015 TNode<Uint32T>);
8018 TNode<Uint32T> CodeStubAssembler::GetSortedKeyIndex<DescriptorArray>( in GetSortedKeyIndex()
8019 TNode<DescriptorArray> descriptors, TNode<Uint32T> descriptor_number) { in GetSortedKeyIndex()
8020 TNode<Uint32T> details = in GetSortedKeyIndex()
8026 TNode<Uint32T> CodeStubAssembler::GetSortedKeyIndex<TransitionArray>( in GetSortedKeyIndex()
8027 TNode<TransitionArray> transitions, TNode<Uint32T> transition_number) { in GetSortedKeyIndex()
8033 TNode<Uint32T> entry_index) { in GetKey()
8045 TNode<DescriptorArray>, TNode<Uint32T>);
8047 TNode<TransitionArray>, TNode<Uint32T>);
8049 TNode<Uint32T> CodeStubAssembler::DescriptorArrayGetDetails( in DescriptorArrayGetDetails()
8050 TNode<DescriptorArray> descriptors, TNode<Uint32T> descriptor_number) { in DescriptorArrayGetDetails()
8060 TNode<Uint32T> number_of_valid_entries, in LookupBinary()
8065 TVARIABLE(Uint32T, var_low, Unsigned(Int32Constant(0))); in LookupBinary()
8066 TNode<Uint32T> limit = in LookupBinary()
8068 TVARIABLE(Uint32T, var_high, limit); in LookupBinary()
8069 TNode<Uint32T> hash = LoadNameHashField(unique_name); in LookupBinary()
8080 TNode<Uint32T> mid = Unsigned( in LookupBinary()
8084 TNode<Uint32T> sorted_key_index = GetSortedKeyIndex<Array>(array, mid); in LookupBinary()
8087 TNode<Uint32T> mid_hash = LoadNameHashField(mid_name); in LookupBinary()
8111 TNode<Uint32T> sort_index = in LookupBinary()
8114 TNode<Uint32T> current_hash = LoadNameHashField(current_name); in LookupBinary()
8130 VariableList& variable_list, TNode<Uint32T> start_descriptor, in DescriptorArrayForEach()
8131 TNode<Uint32T> end_descriptor, const ForEachDescriptorBodyFunction& body) { in DescriptorArrayForEach()
8152 SloppyTNode<Uint32T> bitfield3, Label* if_found, in DescriptorLookup()
8155 TNode<Uint32T> nof = DecodeWord32<Map::NumberOfOwnDescriptorsBits>(bitfield3); in DescriptorLookup()
8164 TNode<Uint32T> number_of_valid_transitions = in TransitionLookup()
8172 TNode<Uint32T> number_of_valid_entries, in Lookup()
8215 TNode<Uint32T> bit_field3 = LoadMapBitField3(map); in TryLookupPropertyInSimpleObject()