Home | History | Annotate | Download | only in src

Lines Matching refs:HArithmeticBinaryOperation

4179 class HArithmeticBinaryOperation : public HBinaryOperation {
4181 HArithmeticBinaryOperation(HValue* context, HValue* left, HValue* right)
4773 class HAdd V8_FINAL : public HArithmeticBinaryOperation {
4830 : HArithmeticBinaryOperation(context, left, right) {
4836 class HSub V8_FINAL : public HArithmeticBinaryOperation {
4863 : HArithmeticBinaryOperation(context, left, right) {
4869 class HMul V8_FINAL : public HArithmeticBinaryOperation {
4899 HArithmeticBinaryOperation::UpdateRepresentation(new_rep, h_infer, reason);
4913 : HArithmeticBinaryOperation(context, left, right) {
4919 class HMod V8_FINAL : public HArithmeticBinaryOperation {
4932 HArithmeticBinaryOperation::UpdateRepresentation(new_rep, h_infer, reason);
4945 HValue* right) : HArithmeticBinaryOperation(context, left, right) {
4953 class HDiv V8_FINAL : public HArithmeticBinaryOperation {
4966 HArithmeticBinaryOperation::UpdateRepresentation(new_rep, h_infer, reason);
4978 : HArithmeticBinaryOperation(context, left, right) {
4985 class HMathMinMax V8_FINAL : public HArithmeticBinaryOperation {
5028 : HArithmeticBinaryOperation(context, left, right),