Searched refs:LoadGlobalParameters (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/compiler/ |
D | js-operator.h | 278 class LoadGlobalParameters final { 280 LoadGlobalParameters(const Handle<Name>& name, const VectorSlotPair& feedback, in LoadGlobalParameters() function 295 bool operator==(LoadGlobalParameters const&, LoadGlobalParameters const&); 296 bool operator!=(LoadGlobalParameters const&, LoadGlobalParameters const&); 298 size_t hash_value(LoadGlobalParameters const&); 300 std::ostream& operator<<(std::ostream&, LoadGlobalParameters const&); 302 const LoadGlobalParameters& LoadGlobalParametersOf(const Operator* op);
|
D | js-operator.cc | 309 bool operator==(LoadGlobalParameters const& lhs, in operator ==() 310 LoadGlobalParameters const& rhs) { in operator ==() 317 bool operator!=(LoadGlobalParameters const& lhs, in operator !=() 318 LoadGlobalParameters const& rhs) { in operator !=() 323 size_t hash_value(LoadGlobalParameters const& p) { in hash_value() 328 std::ostream& operator<<(std::ostream& os, LoadGlobalParameters const& p) { in operator <<() 333 const LoadGlobalParameters& LoadGlobalParametersOf(const Operator* op) { in LoadGlobalParametersOf() 335 return OpParameter<LoadGlobalParameters>(op); in LoadGlobalParametersOf() 841 LoadGlobalParameters parameters(name, feedback, typeof_mode); in LoadGlobal() 842 return new (zone()) Operator1<LoadGlobalParameters>( // -- in LoadGlobal()
|
D | js-generic-lowering.cc | 306 const LoadGlobalParameters& p = LoadGlobalParametersOf(node->op()); in LowerJSLoadGlobal()
|