HomeSort by relevance Sort by last modified time
    Searched refs:Representation (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/v8/src/
property-details.h 85 class Representation {
102 Representation() : kind_(kNone) { }
104 static Representation None() { return Representation(kNone); }
105 static Representation Tagged() { return Representation(kTagged); }
106 static Representation Integer8() { return Representation(kInteger8); }
107 static Representation UInteger8() { return Representation(kUInteger8);
312 Representation representation() const { function in class:v8::internal::BASE_EMBEDDED
    [all...]
map-updater.h 54 // with given |attributes| and |representation|/|field_type| and
59 Representation representation,
110 // of |old_map_| where every field has |Tagged| representation and |Any|
131 // type for the descriptor's value and |representation|. The |location|
135 Representation representation) const;
139 // type for the descriptor's value and |representation|.
143 PropertyLocation location, Representation representation);
    [all...]
property.h 33 Representation representation);
38 Representation representation,
54 Representation::Tagged(), 0);
79 PropertyConstness constness, Representation representation,
83 details_(kind, attributes, location, constness, representation,
property.cc 27 Representation representation) {
28 return DataField(key, field_index, attributes, kMutable, representation,
35 Representation representation,
38 PropertyDetails details(kData, attributes, kField, constness, representation,
49 Representation::Tagged(), any_type);
77 os << ":" << representation().Mnemonic();
  /external/v8/src/crankshaft/
hydrogen-representation-changes.h 25 Representation to);
hydrogen-instructions.h 189 Representation RepresentationFromMachineType(MachineType type);
255 bool AddAndCheckOverflow(const Representation& r, Range* other);
256 bool SubAndCheckOverflow(const Representation& r, Range* other);
257 bool MulAndCheckOverflow(const Representation& r, Range* other);
503 Representation representation() const { return representation_; }
504 void ChangeRepresentation(Representation r) {
514 virtual void AssumeRepresentation(Representation r);
516 virtual Representation KnownOptimalRepresentation() {
517 Representation r = representation()
5073 inline Representation representation() const { function in class:final::final
5595 Representation representation = access.representation(); local
    [all...]
hydrogen-instructions.cc 11 #include "src/crankshaft/hydrogen-infer-representation.h"
49 Representation RepresentationFromMachineType(MachineType type) {
51 return Representation::Integer32();
55 return Representation::Smi();
59 return Representation::External();
62 return Representation::Tagged();
71 void HValue::AssumeRepresentation(Representation r) {
74 // The representation of the value is dictated by type feedback and
83 Representation new_rep = RepresentationFromInputs();
87 if (representation().IsSmi() && HasNonSmiUse())
    [all...]