Home | History | Annotate | Download | only in src

Lines Matching full:c_left

2105     HConstant* c_left = HConstant::cast(left);                                 \
2107 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { \
2108 double double_res = c_left->DoubleValue() op c_right->DoubleValue(); \
2131 HConstant* c_left = HConstant::cast(left);
2133 if (c_left->HasInteger32Value() && c_right->HasInteger32Value()) {
2134 int32_t dividend = c_left->Integer32Value();
2155 HConstant* c_left = HConstant::cast(left);
2157 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) {
2159 double double_res = c_left->DoubleValue() / c_right->DoubleValue();
2177 HConstant* c_left = HConstant::cast(left);
2179 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) {
2181 int32_t v_left = c_left->NumberValueAsInteger32();
2210 HConstant* c_left = HConstant::cast(left); \
2212 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) { \
2221 c_left->NumberValueAsInteger32() >> (c_right->NumberValueAsInteger32() & 0x1f))
2223 c_left->NumberValueAsInteger32() << (c_right->NumberValueAsInteger32() & 0x1f))
2233 HConstant* c_left = HConstant::cast(left);
2235 if ((c_left->HasNumberValue() && c_right->HasNumberValue())) {
2236 int32_t left_val = c_left->NumberValueAsInteger32();