Searched defs:MachineRepresentation (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/
H A Dmachine-type.h18 enum class MachineRepresentation { class in namespace:v8::internal
39 static_assert(static_cast<int>(MachineRepresentation::kLastRepresentation) <
41 "Bit masks of MachineRepresentation should fit in an int");
43 const char* MachineReprToString(MachineRepresentation);
59 : representation_(MachineRepresentation::kNone),
61 MachineType(MachineRepresentation representation, MachineSemantic semantic)
72 MachineRepresentation representation() const { return representation_; }
75 bool IsNone() { return representation() == MachineRepresentation::kNone; }
85 static MachineRepresentation PointerRepresentation() {
86 return (kPointerSize == 4) ? MachineRepresentation
[all...]

Completed in 85 milliseconds