/third_party/node/deps/v8/src/codegen/ |
H A D | machine-type.h | 27 // kMapWord is the representation of a map word, i.e. a map in the header 36 // In either case, the kMapWord representation is not used after memory 100 constexpr MachineType(MachineRepresentation representation, in MachineType() argument 102 : representation_(representation), semantic_(semantic) {} in MachineType() 105 return representation() == other.representation() && in operator ==() 113 constexpr MachineRepresentation representation() const { in representation() function in v8::internal::MachineRepresentation::MachineType 119 return representation() == MachineRepresentation::kNone; in IsNone() 123 return representation() == MachineRepresentation::kMapWord; in IsMapWord() 135 return representation() in IsTagged() [all...] |
H A D | machine-type.cc | 91 } else if (type.representation() == MachineRepresentation::kNone) { in operator <<() 94 return os << type.representation(); in operator <<() 96 return os << type.representation() << "|" << type.semantic(); in operator <<()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | load-elimination.h | 56 MachineRepresentation representation, Zone* zone) in AbstractElements() 58 elements_[next_index_++] = Element(object, index, value, representation); in AbstractElements() 62 MachineRepresentation representation, in Extend() 66 Element(object, index, value, representation); in Extend() 71 MachineRepresentation representation) const; 83 MachineRepresentation representation) in Element() 87 representation(representation) {} in Element() 92 MachineRepresentation representation = MachineRepresentation::kNone; member 106 FieldInfo(Node* value, MachineRepresentation representation, in FieldInfo() 55 AbstractElements(Node* object, Node* index, Node* value, MachineRepresentation representation, Zone* zone) AbstractElements() argument 61 Extend(Node* object, Node* index, Node* value, MachineRepresentation representation, Zone* zone) const Extend() argument 122 MachineRepresentation representation = MachineRepresentation::kNone; global() member [all...] |
H A D | csa-load-elimination.cc | 262 if (info.second.representation != MachineRepresentation::kNone && in KillOffset() 263 ElementSizeInBytes(info.second.representation) > in KillOffset() 282 if (info.representation != MachineRepresentation::kNone && in KillOffsetInFresh() 283 ElementSizeInBytes(info.representation) > in KillOffsetInFresh() 301 MachineReprToString(info.representation)); in Print() 317 MachineReprToString(info.representation)); in Print() 348 MachineRepresentation representation = access.machine_type.representation(); in ReduceLoadFromObject() local 352 // representation or resurrect dead {replacement} nodes. in ReduceLoadFromObject() 353 MachineRepresentation from = lookup_result.representation; in ReduceLoadFromObject() [all...] |
H A D | csa-load-elimination.h | 49 FieldInfo(Node* value, MachineRepresentation representation) in FieldInfo() 50 : value(value), representation(representation) {} in FieldInfo() 53 return value == other.value && representation == other.representation; in operator ==() 61 MachineRepresentation representation = MachineRepresentation::kNone; member
|
H A D | c-linkage.cc | 165 if (IsFloatingPoint(type.representation())) { in BuildParameterLocations() 196 bool spill = IsFloatingPoint(type.representation()) 204 if (IsFloatingPoint(type.representation())) { 237 CHECK(!IsFloatingPoint(type.representation())); in GetSimplifiedCDescriptor() 243 CHECK(!IsFloatingPoint(type.representation())); in GetSimplifiedCDescriptor() 251 auto reg = IsFloatingPoint(msig->GetReturn(0).representation()) in GetSimplifiedCDescriptor() 264 DCHECK(!IsFloatingPoint(msig->GetReturn(0).representation())); in GetSimplifiedCDescriptor()
|
H A D | machine-graph-verifier.cc | 65 return call_descriptor->GetReturnType(index).representation(); in GetProjectionType() 89 // A sandboxed pointer is a Word64 that uses an encoded representation in PromoteRepresentation() 113 .representation(); in Run() 117 linkage_->GetReturnType().representation()); in Run() 130 .representation() in Run() 131 .representation()); in Run() 137 LoadRepresentationOf(node->op()).representation()); in Run() 146 LoadRepresentationOf(node->op()).representation()); in Run() 156 call_descriptor->GetReturnType(0).representation(); in Run() 166 AtomicStoreParametersOf(node->op()).representation()); in Run() 738 CheckValueInputRepresentationIs(Node const* node, int index, MachineRepresentation representation) CheckValueInputRepresentationIs() argument 747 << input_representation << " which doesn't have a " << representation CheckValueInputRepresentationIs() local [all...] |
H A D | load-elimination.cc | 151 Node* object, Node* index, MachineRepresentation representation) const { in Lookup() 157 IsCompatible(representation, element.representation)) { in Lookup() 332 MachineReprToString(pair.second.representation)); in Print() 513 Node* object, Node* index, MachineRepresentation representation) const { in LookupElement() 515 return this->elements_->Lookup(object, index, representation); in LookupElement() 523 MachineRepresentation representation, in AddElement() 528 that->elements_->Extend(object, index, value, representation, zone); in AddElement() 531 zone->New<AbstractElements>(object, index, value, representation, zone); in AddElement() 915 DCHECK(IsAnyTagged(access.machine_type.representation())); in ReduceLoadField() 521 AddElement(Node* object, Node* index, Node* value, MachineRepresentation representation, Zone* zone) const AddElement() argument 926 MachineRepresentation representation = ReduceLoadField() local 993 MachineRepresentation representation = ReduceStoreField() local [all...] |
H A D | decompression-optimizer.cc | 25 CanBeTaggedPointer(LoadRepresentationOf(node->op()).representation()); in IsTaggedMachineLoad() 107 MachineRepresentation representation = in MarkNodeInputs() local 110 : StoreRepresentationOf(node->op()).representation(); in MarkNodeInputs() 112 IsAnyTagged(representation) in MarkNodeInputs()
|
H A D | memory-lowering.cc | 388 MachineRepresentation rep = machine_type.representation(); in ReduceLoadFromObject() 391 !machine()->UnalignedLoadSupported(machine_type.representation()) in ReduceLoadFromObject() 512 MachineRepresentation rep = access.machine_type.representation(); in ReduceStoreToObject() 534 access.machine_type.representation(), write_barrier_kind))); in ReduceStoreElement() 568 node, machine()->Store(StoreRepresentation(machine_type.representation(), in ReduceStoreField() 576 StoreRepresentation representation = StoreRepresentationOf(node->op()); in ReduceStore() local 580 node, object, value, state, representation.write_barrier_kind()); in ReduceStore() 581 if (write_barrier_kind != representation.write_barrier_kind()) { in ReduceStore() 584 representation.representation(), write_barrier_kin in ReduceStore() [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | property.cc | 18 const Representation& representation) { in operator <<() 19 switch (representation.kind()) { in operator <<() 63 Representation representation, int field_index) in Descriptor() 66 details_(kind, attributes, location, constness, representation, in Descriptor() 81 Representation representation) { in DataField() 83 representation, MaybeObjectHandle(FieldType::Any(isolate))); in DataField() 89 Representation representation, in DataField() 93 PropertyLocation::kField, constness, representation, in DataField() 145 os << ":" << representation().Mnemonic(); in PrintAsFastTo() 17 operator <<(std::ostream& os, const Representation& representation) operator <<() argument 60 Descriptor(Handle<Name> key, const MaybeObjectHandle& value, PropertyKind kind, PropertyAttributes attributes, PropertyLocation location, PropertyConstness constness, Representation representation, int field_index) Descriptor() argument 79 DataField(Isolate* isolate, Handle<Name> key, int field_index, PropertyAttributes attributes, Representation representation) DataField() argument 86 DataField(Handle<Name> key, int field_index, PropertyAttributes attributes, PropertyConstness constness, Representation representation, const MaybeObjectHandle& wrapped_field_type) DataField() argument
|
H A D | map-updater.cc | 152 Representation representation) const { in GetOrComputeFieldType() 159 return GetValue(descriptor).OptimalType(isolate_, representation); in GetOrComputeFieldType() 165 PropertyLocation location, Representation representation) { in GetOrComputeFieldType() 172 .OptimalType(isolate_, representation); in GetOrComputeFieldType() 179 Representation representation, in ReconfigureToDataField() 197 // representation/field type from the old descriptor. in ReconfigureToDataField() 201 Representation old_representation = old_details.representation(); in ReconfigureToDataField() 202 new_representation_ = representation.generalize(old_representation); in ReconfigureToDataField() 216 new_representation_ = representation; in ReconfigureToDataField() 482 Representation old_representation = old_details.representation(); in TryReconfigureToDataFieldInplace() 163 GetOrComputeFieldType( Handle<DescriptorArray> descriptors, InternalIndex descriptor, PropertyLocation location, Representation representation) GetOrComputeFieldType() argument 176 ReconfigureToDataField(InternalIndex descriptor, PropertyAttributes attributes, PropertyConstness constness, Representation representation, Handle<FieldType> field_type) ReconfigureToDataField() argument [all...] |
H A D | property-details.h | 105 // This representation is used for WasmObject fields and basically means 141 // Returns true if a change from this representation to a more general one 144 // HeapObject to tagged representation change can be done in-place. in MightCauseMapDeprecation() 147 // representation it fits into is WasmValue), so for the sake of predicate in MightCauseMapDeprecation() 152 // None to double and smi to double representation changes require in MightCauseMapDeprecation() 162 // If it's just a representation generalization case (i.e. property kind and in CanBeInPlaceChangedTo() 165 // uninitialized value for representation None can be overwritten by both in CanBeInPlaceChangedTo() 173 // Return the most generic representation that this representation can be 174 // changed to in-place. If an in-place representation chang 293 PropertyDetails(PropertyKind kind, PropertyAttributes attributes, PropertyLocation location, PropertyConstness constness, Representation representation, int field_index = 0) PropertyDetails() argument 351 EncodeRepresentation(Representation representation) EncodeRepresentation() argument 376 Representation representation() const { representation() function in v8::internal::PropertyKind::PropertyLocation::PropertyConstness::PropertyDetails [all...] |
H A D | field-index.h | 30 Representation representation = Representation::Tagged()); 90 static Encoding FieldEncoding(Representation representation) { in FieldEncoding() argument 91 switch (representation.kind()) { in FieldEncoding() 102 PrintF("%s\n", representation.Mnemonic()); in FieldEncoding()
|
H A D | field-index-inl.h | 24 Representation representation) { in ForPropertyIndex() 38 Encoding encoding = FieldEncoding(representation); in ForPropertyIndex() 74 return ForPropertyIndex(map, field_index, details.representation()); 23 ForPropertyIndex(Map map, int property_index, Representation representation) ForPropertyIndex() argument
|
H A D | property.h | 37 Representation representation); 42 Representation representation, 67 Representation representation, int field_index);
|
H A D | map-updater.h | 55 // with given |attributes| and |representation|/|field_type| and 60 Representation representation, 179 // type for the descriptor's value and |representation|. The |location| 183 Representation representation) const; 187 // type for the descriptor's value and |representation|. 191 PropertyLocation location, Representation representation); 193 // Update field type of the given descriptor to new representation and new
|
/third_party/ffmpeg/libavformat/ |
H A D | dashdec.c | 76 struct representation { struct 88 AVStream *assoc_stream; /* demuxer stream associated with this representation */ 125 struct representation **videos; 127 struct representation **audios; 129 struct representation **subtitles; 252 static int64_t get_segment_start_time_based_on_timeline(struct representation *pls, int64_t cur_seq_no) in get_segment_start_time_based_on_timeline() 287 static int64_t calc_next_seg_no_from_timelines(struct representation *pls, int64_t cur_time) in calc_next_seg_no_from_timelines() 326 static void free_fragment_list(struct representation *pls) in free_fragment_list() 337 static void free_timelines_list(struct representation *pls) in free_timelines_list() 348 static void free_representation(struct representation *pl [all...] |
/third_party/skia/third_party/externals/oboe/src/opensles/ |
H A D | OpenSLESUtilities.cpp | 67 SLDataFormat_PCM format, SLuint32 representation) { in OpenSLES_createExtendedFormat() 76 format_pcm_ex.representation = representation; in OpenSLES_createExtendedFormat() 66 OpenSLES_createExtendedFormat( SLDataFormat_PCM format, SLuint32 representation) OpenSLES_createExtendedFormat() argument
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | gap-resolver.cc | 30 MachineRepresentation dst_rep = dst_loc.representation(); in Split() 83 return IsFloatingPoint(loc_op.representation()) ? kFpReg : kGpReg; in GetKind() 110 LocationOperand::cast(move->destination()).representation()); in Resolve() 182 LocationOperand::cast(other->source()).representation() > in PerformMove() 245 if (LocationOperand::cast(other->source()).representation() > in PerformMove() 252 if (LocationOperand::cast(other->source()).representation() > in PerformMove()
|
H A D | code-generator.cc | 1157 if (type.representation() == MachineRepresentation::kBit) { in AddTranslationForOperand() 1169 CHECK(MachineRepresentation::kTagged == type.representation() || in AddTranslationForOperand() 1170 MachineRepresentation::kCompressed == type.representation()); in AddTranslationForOperand() 1172 CHECK(MachineRepresentation::kTagged == type.representation()); in AddTranslationForOperand() 1177 if (type.representation() == MachineRepresentation::kFloat64) { in AddTranslationForOperand() 1180 CHECK_EQ(MachineRepresentation::kFloat32, type.representation()); in AddTranslationForOperand() 1185 if (type.representation() == MachineRepresentation::kBit) { in AddTranslationForOperand() 1197 CHECK(MachineRepresentation::kTagged == type.representation() || in AddTranslationForOperand() 1198 MachineRepresentation::kCompressed == type.representation()); in AddTranslationForOperand() 1200 CHECK(MachineRepresentation::kTagged == type.representation()); in AddTranslationForOperand() [all...] |
/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
H A D | test-bignum-dtoa.cc | 45 static void TrimRepresentation(Vector<char> representation) { in TrimRepresentation() argument 46 int len = static_cast<int>(strlen(representation.start())); in TrimRepresentation() 49 if (representation[i] != '0') break; in TrimRepresentation() 51 representation[i + 1] = '\0'; in TrimRepresentation() 337 CHECK_EQ(current_test.representation, buffer.start()); in TEST() 355 CHECK_EQ(current_test.representation, buffer.start()); in TEST() 376 CHECK_EQ(current_test.representation, buffer.start()); in TEST() 398 CHECK_EQ(current_test.representation, buffer.start()); in TEST()
|
H A D | test-fast-dtoa.cc | 45 static void TrimRepresentation(Vector<char> representation) { in TrimRepresentation() argument 46 int len = static_cast<int>(strlen(representation.start())); in TrimRepresentation() 49 if (representation[i] != '0') break; in TrimRepresentation() 51 representation[i + 1] = '\0'; in TrimRepresentation() 324 CHECK_EQ(current_test.representation, buffer.start()); in TEST() 353 CHECK_EQ(current_test.representation, buffer.start()); in TEST() 388 CHECK_EQ(current_test.representation, buffer.start()); in TEST() 392 // success rate than for the shortest representation. in TEST()
|
H A D | test-dtoa.cc | 68 static void TrimRepresentation(Vector<char> representation) { in TrimRepresentation() argument 69 int len = static_cast<int>(strlen(representation.start())); in TrimRepresentation() 72 if (representation[i] != '0') break; in TrimRepresentation() 74 representation[i + 1] = '\0'; in TrimRepresentation() 438 CHECK_EQ(current_test.representation, buffer.start()); in TEST() 458 CHECK_EQ(current_test.representation, buffer.start()); in TEST() 481 CHECK_EQ(current_test.representation, buffer.start()); in TEST() 505 CHECK_EQ(current_test.representation, buffer.start()); in TEST()
|
/third_party/node/deps/v8/src/ic/ |
H A D | handler-configuration-inl.h | 226 Representation representation) { in StoreField() 227 DCHECK(!representation.IsNone()); in StoreField() 233 RepresentationBits::encode(representation.kind()) | in StoreField() 242 Representation representation) { in StoreField() 245 return StoreField(isolate, kind, descriptor, field_index, representation); in StoreField() 250 Representation representation) { in StoreSharedStructField() 251 DCHECK(representation.Equals(Representation::Tagged())); in StoreSharedStructField() 253 representation); in StoreSharedStructField() 224 StoreField(Isolate* isolate, Kind kind, int descriptor, FieldIndex field_index, Representation representation) StoreField() argument 239 StoreField(Isolate* isolate, int descriptor, FieldIndex field_index, PropertyConstness constness, Representation representation) StoreField() argument 248 StoreSharedStructField( Isolate* isolate, int descriptor, FieldIndex field_index, Representation representation) StoreSharedStructField() argument
|