Searched refs:LoadGlobalParameters (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/compiler/ |
D | js-operator.h | 249 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);
|
D | js-operator.cc | 252 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()
|
D | js-generic-lowering.cc | 209 const LoadGlobalParameters& p = LoadGlobalParametersOf(node->op()); in LowerJSLoadGlobal()
|