Searched refs:IsArithmeticZero (Results 1 - 4 of 4) sorted by path

/art/compiler/optimizing/
H A Dcode_generator_arm64.cc1933 DCHECK(instruction->InputAt(0)->AsConstant()->IsArithmeticZero());
1978 accumulator->AsConstant()->IsArithmeticZero()) {
2017 if (accum_instr->IsConstant() && accum_instr->AsConstant()->IsArithmeticZero()) {
2363 return (inst->IsFloatConstant() && (inst->AsFloatConstant()->IsArithmeticZero()))
2364 || (inst->IsDoubleConstant() && (inst->AsDoubleConstant()->IsArithmeticZero()));
H A Dconstant_folding.cc123 if (check_input->IsConstant() && !check_input->AsConstant()->IsArithmeticZero()) {
133 if (left->IsConstant() && left->AsConstant()->IsArithmeticZero()) {
145 instruction->GetLeft()->AsConstant()->IsArithmeticZero()) {
157 instruction->GetRight()->AsConstant()->IsArithmeticZero()) {
169 instruction->GetRight()->AsConstant()->IsArithmeticZero()) {
181 instruction->GetLeft()->AsConstant()->IsArithmeticZero()) {
227 (input_cst != nullptr) && input_cst->IsArithmeticZero()) {
267 instruction->GetLeft()->AsConstant()->IsArithmeticZero()) {
H A Dinstruction_simplifier.cc898 if ((input_cst != nullptr) && input_cst->IsArithmeticZero()) {
1374 if ((input_cst != nullptr) && input_cst->IsArithmeticZero()) {
H A Dnodes.h2485 virtual bool IsArithmeticZero() const { return false; } function in class:art::HConstant
2539 bool IsArithmeticZero() const OVERRIDE { return GetValue() == 0; }
2578 bool IsArithmeticZero() const OVERRIDE { return GetValue() == 0; }
2612 bool IsArithmeticZero() const OVERRIDE {
2616 return IsArithmeticZero() && !std::signbit(value_);
2619 return IsArithmeticZero() && std::signbit(value_);
2663 bool IsArithmeticZero() const OVERRIDE {
2667 return IsArithmeticZero() && !std::signbit(value_);
2670 return IsArithmeticZero() && std::signbit(value_);

Completed in 76 milliseconds