Lines Matching refs:ic
62 if (const IntConstant* ic = AsIntConstant()) { in GetU32() local
63 return ic->GetU32BitValue(); in GetU32()
74 if (const IntConstant* ic = AsIntConstant()) { in GetU64() local
75 return ic->GetU64BitValue(); in GetU64()
86 if (const IntConstant* ic = AsIntConstant()) { in GetS32() local
87 return ic->GetS32BitValue(); in GetS32()
98 if (const IntConstant* ic = AsIntConstant()) { in GetS64() local
99 return ic->GetS64BitValue(); in GetS64()
113 if (const IntConstant* ic = AsIntConstant()) { in GetZeroExtendedValue() local
115 value = ic->GetU32BitValue(); in GetZeroExtendedValue()
117 value = ic->GetU64BitValue(); in GetZeroExtendedValue()
132 if (const IntConstant* ic = AsIntConstant()) { in GetSignExtendedValue() local
135 value = int64_t(ic->GetS32BitValue()); in GetSignExtendedValue()
137 value = ic->GetS64BitValue(); in GetSignExtendedValue()
339 } else if (const IntConstant* ic = c->AsIntConstant()) { in CreateInstruction() local
344 ic->words())}); in CreateInstruction()