Searched refs:CallParameters (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/compiler/ |
D | js-operator.h | 161 class CallParameters final { 163 CallParameters(size_t arity, CallFrequency const& frequency, in CallParameters() function 184 bool operator==(CallParameters const& that) const { 189 bool operator!=(CallParameters const& that) const { return !(*this == that); } 192 friend size_t hash_value(CallParameters const& p) { in hash_value() 205 size_t hash_value(CallParameters const&); 207 std::ostream& operator<<(std::ostream&, CallParameters const&); 209 const CallParameters& CallParametersOf(const Operator* op);
|
D | js-call-reducer.cc | 35 CallParameters const& p = CallParametersOf(node->op()); in ReduceMathUnary() 59 CallParameters const& p = CallParametersOf(node->op()); in ReduceMathBinary() 90 CallParameters const& p = CallParametersOf(node->op()); in ReduceMathImul() 123 CallParameters const& p = CallParametersOf(node->op()); in ReduceMathClz32() 150 CallParameters const& p = CallParametersOf(node->op()); in ReduceMathMinMax() 219 CallParameters const& p = CallParametersOf(node->op()); in ReduceArrayConstructor() 234 CallParameters const& p = CallParametersOf(node->op()); in ReduceBooleanConstructor() 248 CallParameters const& p = CallParametersOf(node->op()); in ReduceObjectConstructor() 273 CallParameters const& p = CallParametersOf(node->op()); in ReduceFunctionPrototypeApply() 492 CallParameters const& p = CallParametersOf(node->op()); in ReduceFunctionPrototypeCall() [all …]
|
D | js-operator.cc | 68 std::ostream& operator<<(std::ostream& os, CallParameters const& p) { in operator <<() 72 const CallParameters& CallParametersOf(const Operator* op) { in CallParametersOf() 75 return OpParameter<CallParameters>(op); in CallParametersOf() 830 CallParameters parameters(arity, frequency, feedback, convert_mode, in Call() 832 return new (zone()) Operator1<CallParameters>( // -- in Call() 852 CallParameters parameters(arity, frequency, feedback, in CallWithSpread() 854 return new (zone()) Operator1<CallParameters>( // -- in CallWithSpread()
|
D | js-generic-lowering.cc | 680 CallParameters const& p = CallParametersOf(node->op()); in LowerJSCall() 709 CallParameters const& p = CallParametersOf(node->op()); in LowerJSCallWithSpread()
|
D | js-inlining.cc | 610 CallParameters const& p = CallParametersOf(node->op()); in ReduceJSCall()
|
D | js-inlining-heuristic.cc | 145 CallParameters const p = CallParametersOf(node->op()); in Reduce()
|
D | js-typed-lowering.cc | 1653 CallParameters const& p = CallParametersOf(node->op()); in ReduceJSCall()
|