simplified-lowering.cc | 67 // about what part of the input is used (we call this truncation) and what 76 UseInfo(MachineRepresentation preferred, Truncation truncation) 77 : preferred_(preferred), truncation_(truncation) {} 79 return UseInfo(MachineRepresentation::kWord32, Truncation::Word32()); 82 return UseInfo(MachineRepresentation::kWord64, Truncation::Word64()); 85 return UseInfo(MachineRepresentation::kBit, Truncation::Bool()); 88 return UseInfo(MachineRepresentation::kFloat32, Truncation::Float32()); 91 return UseInfo(MachineRepresentation::kFloat64, Truncation::Float64()); 97 return UseInfo(MachineRepresentation::kTagged, Truncation::Any()) 121 Truncation truncation() const { return truncation_; } function in class:v8::internal::compiler::__anon25056::UseInfo 320 Truncation truncation() const { return truncation_; } function in class:v8::internal::compiler::RepresentationSelector::NodeInfo [all...] |