Searched refs:LoadGlobalParameters (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/compiler/ |
D | js-operator.h | 371 class LoadGlobalParameters final { 373 LoadGlobalParameters(const Handle<Name>& name, const VectorSlotPair& feedback, in LoadGlobalParameters() function 388 bool operator==(LoadGlobalParameters const&, LoadGlobalParameters const&); 389 bool operator!=(LoadGlobalParameters const&, LoadGlobalParameters const&); 391 size_t hash_value(LoadGlobalParameters const&); 393 std::ostream& operator<<(std::ostream&, LoadGlobalParameters const&); 395 const LoadGlobalParameters& LoadGlobalParametersOf(const Operator* op);
|
D | js-operator.cc | 296 bool operator==(LoadGlobalParameters const& lhs, in operator ==() 297 LoadGlobalParameters const& rhs) { in operator ==() 304 bool operator!=(LoadGlobalParameters const& lhs, in operator !=() 305 LoadGlobalParameters const& rhs) { in operator !=() 310 size_t hash_value(LoadGlobalParameters const& p) { in hash_value() 315 std::ostream& operator<<(std::ostream& os, LoadGlobalParameters const& p) { in operator <<() 320 const LoadGlobalParameters& LoadGlobalParametersOf(const Operator* op) { in LoadGlobalParametersOf() 322 return OpParameter<LoadGlobalParameters>(op); in LoadGlobalParametersOf() 1047 LoadGlobalParameters parameters(name, feedback, typeof_mode); in LoadGlobal() 1048 return new (zone()) Operator1<LoadGlobalParameters>( // -- in LoadGlobal()
|
D | js-generic-lowering.cc | 183 const LoadGlobalParameters& p = LoadGlobalParametersOf(node->op()); in LowerJSLoadGlobal()
|