Searched defs:fixed_right_arg (Results 1 - 5 of 5) sorted by relevance
/external/chromium_org/v8/src/ |
H A D | type-info.cc | 299 Maybe<int>* fixed_right_arg, 308 *fixed_right_arg = Maybe<int>(); 319 *fixed_right_arg = state.fixed_right_arg(); 295 BinaryType(TypeFeedbackId id, Handle<Type>* left, Handle<Type>* right, Handle<Type>* result, Maybe<int>* fixed_right_arg, Token::Value op) argument
|
H A D | typing.cc | 571 Maybe<int> fixed_right_arg; local 573 &left_type, &right_type, &type, &fixed_right_arg, expr->op()); 577 expr->set_fixed_right_arg(fixed_right_arg);
|
H A D | ic.h | 869 Maybe<int> fixed_right_arg() const { return fixed_right_arg_; } function in class:v8::internal::BinaryOpIC::BASE_EMBEDDED
|
H A D | ast.h | 1953 Maybe<int> fixed_right_arg() const { return fixed_right_arg_; } function in class:v8::internal::V8_FINAL
|
H A D | hydrogen.cc | 8735 Maybe<int> fixed_right_arg = expr->fixed_right_arg(); local 8739 result_type, fixed_right_arg); 8759 Maybe<int> fixed_right_arg) { 8859 if (fixed_right_arg.has_value) { 8863 ASSERT_EQ(fixed_right_arg.value, c_right->Integer32Value()); 8867 static_cast<int>(fixed_right_arg.value)); 8752 BuildBinaryOperation( Token::Value op, HValue* left, HValue* right, Handle<Type> left_type, Handle<Type> right_type, Handle<Type> result_type, Maybe<int> fixed_right_arg) argument
|
Completed in 724 milliseconds