Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Dcommon-operator.h216 class RelocatablePtrConstantInfo final {
220 RelocatablePtrConstantInfo(int32_t value, RelocInfo::Mode rmode) in RelocatablePtrConstantInfo() function
222 RelocatablePtrConstantInfo(int64_t value, RelocInfo::Mode rmode) in RelocatablePtrConstantInfo() function
235 bool operator==(RelocatablePtrConstantInfo const& lhs,
236 RelocatablePtrConstantInfo const& rhs);
237 bool operator!=(RelocatablePtrConstantInfo const& lhs,
238 RelocatablePtrConstantInfo const& rhs);
240 std::ostream& operator<<(std::ostream&, RelocatablePtrConstantInfo const&);
242 size_t hash_value(RelocatablePtrConstantInfo const& p);
Dcommon-operator.cc243 bool operator==(RelocatablePtrConstantInfo const& lhs, in operator ==()
244 RelocatablePtrConstantInfo const& rhs) { in operator ==()
249 bool operator!=(RelocatablePtrConstantInfo const& lhs, in operator !=()
250 RelocatablePtrConstantInfo const& rhs) { in operator !=()
254 size_t hash_value(RelocatablePtrConstantInfo const& p) { in hash_value()
259 RelocatablePtrConstantInfo const& p) { in operator <<()
1263 return zone()->New<Operator1<RelocatablePtrConstantInfo>>( // -- in RelocatableInt32Constant()
1267 RelocatablePtrConstantInfo(value, rmode)); // parameter in RelocatableInt32Constant()
1272 return zone()->New<Operator1<RelocatablePtrConstantInfo>>( // -- in RelocatableInt64Constant()
1276 RelocatablePtrConstantInfo(value, rmode)); // parameter in RelocatableInt64Constant()
/external/v8/src/compiler/backend/
Dinstruction.cc511 Constant::Constant(RelocatablePtrConstantInfo info) { in Constant()
512 if (info.type() == RelocatablePtrConstantInfo::kInt32) { in Constant()
514 } else if (info.type() == RelocatablePtrConstantInfo::kInt64) { in Constant()
Dinstruction-selector-impl.h329 return Constant(OpParameter<RelocatablePtrConstantInfo>(node->op())); in ToConstant()
Dinstruction.h1083 explicit Constant(RelocatablePtrConstantInfo info);