Lines Matching defs:context
19 TNode<Object> BitwiseNot(TNode<Context> context, TNode<Object> value,
31 TaggedToWord32OrBigIntWithFeedback(context, value, &if_number, &var_word32,
50 CallRuntime(Runtime::kBigIntUnaryOp, context, var_bigint.value(),
58 TNode<Object> Decrement(TNode<Context> context, TNode<Object> value,
63 context, value, slot, maybe_feedback_vector, update_feedback_mode);
66 TNode<Object> Increment(TNode<Context> context, TNode<Object> value,
71 context, value, slot, maybe_feedback_vector, update_feedback_mode);
74 TNode<Object> Negate(TNode<Context> context, TNode<Object> value,
109 BigIntOperation bigint_op = [=](TNode<Context> context,
111 return CAST(CallRuntime(Runtime::kBigIntUnaryOp, context, bigint_value,
114 return UnaryOpWithFeedback(context, value, slot, maybe_feedback_vector,
126 TNode<Context> /* context */, TNode<HeapObject> /* bigint_value */)>;
128 TNode<Object> UnaryOpWithFeedback(TNode<Context> context, TNode<Object> value,
174 var_result = bigint_op(context, value_heap_object);
201 var_value = CallBuiltin(Builtin::kNonNumberToNumeric, context,
222 TNode<Object> IncrementOrDecrement(TNode<Context> context,
250 BigIntOperation bigint_op = [=](TNode<Context> context,
252 return CAST(CallRuntime(Runtime::kBigIntUnaryOp, context, bigint_value,
255 return UnaryOpWithFeedback(context, value, slot, maybe_feedback_vector,
264 TNode<Context> context, TNode<Object> value, TNode<UintPtrT> slot,
268 return a.BitwiseNot(context, value, slot, maybe_feedback_vector,
273 TNode<Context> context, TNode<Object> value, TNode<UintPtrT> slot,
277 return a.Decrement(context, value, slot, maybe_feedback_vector,
282 TNode<Context> context, TNode<Object> value, TNode<UintPtrT> slot,
286 return a.Increment(context, value, slot, maybe_feedback_vector,
291 TNode<Context> context, TNode<Object> value, TNode<UintPtrT> slot,
295 return a.Negate(context, value, slot, maybe_feedback_vector,