Home
last modified time | relevance | path

Searched refs:LoadGlobalParameters (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/compiler/
Djs-operator.h249 class LoadGlobalParameters final {
251 LoadGlobalParameters(const Handle<Name>& name, const VectorSlotPair& feedback, in LoadGlobalParameters() function
266 bool operator==(LoadGlobalParameters const&, LoadGlobalParameters const&);
267 bool operator!=(LoadGlobalParameters const&, LoadGlobalParameters const&);
269 size_t hash_value(LoadGlobalParameters const&);
271 std::ostream& operator<<(std::ostream&, LoadGlobalParameters const&);
273 const LoadGlobalParameters& LoadGlobalParametersOf(const Operator* op);
Djs-operator.cc252 bool operator==(LoadGlobalParameters const& lhs, in operator ==()
253 LoadGlobalParameters const& rhs) { in operator ==()
260 bool operator!=(LoadGlobalParameters const& lhs, in operator !=()
261 LoadGlobalParameters const& rhs) { in operator !=()
266 size_t hash_value(LoadGlobalParameters const& p) { in hash_value()
271 std::ostream& operator<<(std::ostream& os, LoadGlobalParameters const& p) { in operator <<()
276 const LoadGlobalParameters& LoadGlobalParametersOf(const Operator* op) { in LoadGlobalParametersOf()
278 return OpParameter<LoadGlobalParameters>(op); in LoadGlobalParametersOf()
727 LoadGlobalParameters parameters(name, feedback, typeof_mode); in LoadGlobal()
728 return new (zone()) Operator1<LoadGlobalParameters>( // -- in LoadGlobal()
Djs-generic-lowering.cc209 const LoadGlobalParameters& p = LoadGlobalParametersOf(node->op()); in LowerJSLoadGlobal()