Home | History | Annotate | Download | only in optimizing

Lines Matching refs:HConstant

1088 class HConstant : public HExpression<0> {
1090 explicit HConstant(Primitive::Type type) : HExpression(type) {}
1095 DISALLOW_COPY_AND_ASSIGN(HConstant);
1100 class HIntConstant : public HConstant {
1102 explicit HIntConstant(int32_t value) : HConstant(Primitive::kPrimInt), value_(value) {}
1114 class HLongConstant : public HConstant {
1116 explicit HLongConstant(int64_t value) : HConstant(Primitive::kPrimLong), value_(value) {}