Home
last modified time | relevance | path

Searched refs:RelocatablePtrConstantInfo (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/compiler/
Dcommon-operator.h210 class RelocatablePtrConstantInfo final {
214 RelocatablePtrConstantInfo(int32_t value, RelocInfo::Mode rmode) in RelocatablePtrConstantInfo() function
216 RelocatablePtrConstantInfo(int64_t value, RelocInfo::Mode rmode) in RelocatablePtrConstantInfo() function
229 bool operator==(RelocatablePtrConstantInfo const& lhs,
230 RelocatablePtrConstantInfo const& rhs);
231 bool operator!=(RelocatablePtrConstantInfo const& lhs,
232 RelocatablePtrConstantInfo const& rhs);
234 std::ostream& operator<<(std::ostream&, RelocatablePtrConstantInfo const&);
236 size_t hash_value(RelocatablePtrConstantInfo const& p);
Dcommon-operator.cc231 bool operator==(RelocatablePtrConstantInfo const& lhs, in operator ==()
232 RelocatablePtrConstantInfo const& rhs) { in operator ==()
237 bool operator!=(RelocatablePtrConstantInfo const& lhs, in operator !=()
238 RelocatablePtrConstantInfo const& rhs) { in operator !=()
242 size_t hash_value(RelocatablePtrConstantInfo const& p) { in hash_value()
247 RelocatablePtrConstantInfo const& p) { in operator <<()
1199 return new (zone()) Operator1<RelocatablePtrConstantInfo>( // -- in RelocatableInt32Constant()
1203 RelocatablePtrConstantInfo(value, rmode)); // parameter in RelocatableInt32Constant()
1208 return new (zone()) Operator1<RelocatablePtrConstantInfo>( // -- in RelocatableInt64Constant()
1212 RelocatablePtrConstantInfo(value, rmode)); // parameter in RelocatableInt64Constant()
Dinstruction.cc571 Constant::Constant(RelocatablePtrConstantInfo info) { in Constant()
572 if (info.type() == RelocatablePtrConstantInfo::kInt32) { in Constant()
574 } else if (info.type() == RelocatablePtrConstantInfo::kInt64) { in Constant()
Dinstruction-selector-impl.h306 return Constant(OpParameter<RelocatablePtrConstantInfo>(node->op())); in ToConstant()
Dinstruction.h1054 explicit Constant(RelocatablePtrConstantInfo info);