Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djs-operator.h241 class StoreGlobalParameters final {
243 StoreGlobalParameters(LanguageMode language_mode, in StoreGlobalParameters() function
258 bool operator==(StoreGlobalParameters const&, StoreGlobalParameters const&);
259 bool operator!=(StoreGlobalParameters const&, StoreGlobalParameters const&);
261 size_t hash_value(StoreGlobalParameters const&);
263 std::ostream& operator<<(std::ostream&, StoreGlobalParameters const&);
265 const StoreGlobalParameters& StoreGlobalParametersOf(const Operator* op);
Djs-operator.cc249 bool operator==(StoreGlobalParameters const& lhs, in operator ==()
250 StoreGlobalParameters const& rhs) { in operator ==()
257 bool operator!=(StoreGlobalParameters const& lhs, in operator !=()
258 StoreGlobalParameters const& rhs) { in operator !=()
263 size_t hash_value(StoreGlobalParameters const& p) { in hash_value()
269 std::ostream& operator<<(std::ostream& os, StoreGlobalParameters const& p) { in operator <<()
274 const StoreGlobalParameters& StoreGlobalParametersOf(const Operator* op) { in StoreGlobalParametersOf()
276 return OpParameter<StoreGlobalParameters>(op); in StoreGlobalParametersOf()
784 StoreGlobalParameters parameters(language_mode, feedback, name); in StoreGlobal()
785 return new (zone()) Operator1<StoreGlobalParameters>( // -- in StoreGlobal()
Djs-generic-lowering.cc285 const StoreGlobalParameters& p = StoreGlobalParametersOf(node->op()); in LowerJSStoreGlobal()