Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djs-operator.h307 class StoreGlobalParameters final {
309 StoreGlobalParameters(LanguageMode language_mode, in StoreGlobalParameters() function
324 bool operator==(StoreGlobalParameters const&, StoreGlobalParameters const&);
325 bool operator!=(StoreGlobalParameters const&, StoreGlobalParameters const&);
327 size_t hash_value(StoreGlobalParameters const&);
329 std::ostream& operator<<(std::ostream&, StoreGlobalParameters const&);
331 const StoreGlobalParameters& StoreGlobalParametersOf(const Operator* op);
Djs-operator.cc339 bool operator==(StoreGlobalParameters const& lhs, in operator ==()
340 StoreGlobalParameters const& rhs) { in operator ==()
347 bool operator!=(StoreGlobalParameters const& lhs, in operator !=()
348 StoreGlobalParameters const& rhs) { in operator !=()
353 size_t hash_value(StoreGlobalParameters const& p) { in hash_value()
359 std::ostream& operator<<(std::ostream& os, StoreGlobalParameters const& p) { in operator <<()
364 const StoreGlobalParameters& StoreGlobalParametersOf(const Operator* op) { in StoreGlobalParametersOf()
366 return OpParameter<StoreGlobalParameters>(op); in StoreGlobalParametersOf()
853 StoreGlobalParameters parameters(language_mode, feedback, name); in StoreGlobal()
854 return new (zone()) Operator1<StoreGlobalParameters>( // -- in StoreGlobal()
Djs-generic-lowering.cc356 const StoreGlobalParameters& p = StoreGlobalParametersOf(node->op()); in LowerJSStoreGlobal()