Searched defs:MachineRepresentation (Results 1 - 2 of 2) sorted by relevance
/external/v8/src/ |
H A D | machine-type.h | 18 enum class MachineRepresentation : uint8_t { class in namespace:v8::internal 45 : representation_(MachineRepresentation::kNone), 47 MachineType(MachineRepresentation representation, MachineSemantic semantic) 58 MachineRepresentation representation() const { return representation_; } 70 static MachineRepresentation PointerRepresentation() { 71 return (kPointerSize == 4) ? MachineRepresentation::kWord32 72 : MachineRepresentation::kWord64; 81 return MachineType(MachineRepresentation::kFloat32, 85 return MachineType(MachineRepresentation::kFloat64, 89 return MachineType(MachineRepresentation [all...] |
/external/v8/test/unittests/compiler/ |
H A D | int64-lowering-unittest.cc | 33 machine_(zone(), MachineRepresentation::kWord32, 42 void LowerGraph(Node* node, Signature<MachineRepresentation>* signature) { 51 void LowerGraph(Node* node, MachineRepresentation return_type, argument 52 MachineRepresentation rep = MachineRepresentation::kWord32, 54 Signature<MachineRepresentation>::Builder sig_builder(zone(), 1, 100 MachineRepresentation::kWord32); 120 LowerGraph(Int64Constant(value(0)), MachineRepresentation::kWord64); 133 MachineRepresentation::kWord64); 175 Signature<MachineRepresentation> [all...] |
Completed in 96 milliseconds