Home
last modified time | relevance | path

Searched defs:add (Results 1 – 17 of 17) sorted by relevance

/art/compiler/utils/
Dassembler_thumb_test.cc232 __ add(R0, R1, ShifterOperand(0)); in TEST_F() local
240 __ add(R0, R1, ShifterOperand(R2), AL, kCcKeep); in TEST_F() local
256 __ add(R0, R0, ShifterOperand(R1), AL, kCcKeep); in TEST_F() local
273 __ add(R1, R1, ShifterOperand(R8), AL, kCcKeep); in TEST_F() local
274 __ add(R9, R9, ShifterOperand(R0), AL, kCcKeep); in TEST_F() local
275 __ add(R8, R8, ShifterOperand(R9), AL, kCcKeep); in TEST_F() local
288 __ add(R0, R1, ShifterOperand(R8), AL, kCcKeep); in TEST_F() local
326 __ add(R0, R1, ShifterOperand(R2), arm::EQ, kCcKeep); in TEST_F() local
345 __ add(R0, R0, ShifterOperand(R1)); in TEST_F() local
346 __ add(R0, R1, ShifterOperand(R2)); in TEST_F() local
[all …]
/art/compiler/optimizing/
Dbounds_check_elimination_test.cc190 HInstruction* add = new (&allocator_) HAdd(Primitive::kPrimInt, parameter2, constant_max_int); in TEST_F() local
415 HInstruction* add = new (allocator) HAdd(Primitive::kPrimInt, phi, constant_increment); in BuildSSAGraph1() local
525 HInstruction* add = new (allocator) HAdd(Primitive::kPrimInt, phi, constant_minus_1); in BuildSSAGraph2() local
640 HInstruction* add = new (allocator) HAdd(Primitive::kPrimInt, phi, constant_increment); in BuildSSAGraph3() local
745 HInstruction* add = new (allocator) HAdd(Primitive::kPrimInt, phi, constant_1); in BuildSSAGraph4() local
819 HAdd* add = new (&allocator_) HAdd(Primitive::kPrimInt, array_length, constant_minus_1); in TEST_F() local
Dinduction_var_analysis_test.cc256 HInstruction *add = InsertInstruction( in TEST_F() local
288 HInstruction *add = InsertInstruction( in TEST_F() local
428 HInstruction *add = InsertInstruction( in TEST_F() local
523 HInstruction *add = InsertInstruction( in TEST_F() local
Dlive_ranges_test.cc350 HAdd* add = liveness.GetInstructionFromSsaIndex(2)->AsAdd(); in TEST_F() local
428 HAdd* add = liveness.GetInstructionFromSsaIndex(2)->AsAdd(); in TEST_F() local
Dintrinsics_arm.cc307 __ add(out_reg, in_reg, ShifterOperand(mask)); in GenAbsInteger() local
551 __ add(IP, base, ShifterOperand(offset)); in GenUnsafeGet() local
710 __ add(IP, base, ShifterOperand(offset)); in GenUnsafePut() local
718 __ add(IP, base, ShifterOperand(offset)); in GenUnsafePut() local
860 __ add(tmp_ptr, base, ShifterOperand(offset)); in GenCas() local
979 __ add(array_temp, obj, ShifterOperand(value_offset.Int32Value())); // array_temp := str.value. in VisitStringCharAt() local
1096 __ add(temp1, temp1, ShifterOperand(sizeof(uint32_t))); in VisitStringEquals() local
1561 __ add(temp1, src, ShifterOperand(src_pos.AsRegister<Register>(), LSL, 2)); in VisitSystemArrayCopy() local
1569 __ add(temp2, dest, ShifterOperand(dest_pos.AsRegister<Register>(), LSL, 2)); in VisitSystemArrayCopy() local
1577 __ add(temp3, temp1, ShifterOperand(length.AsRegister<Register>(), LSL, 2)); in VisitSystemArrayCopy() local
[all …]
Dcode_generator_arm.cc2454 void LocationsBuilderARM::VisitAdd(HAdd* add) { in VisitAdd()
2485 void InstructionCodeGeneratorARM::VisitAdd(HAdd* add) { in VisitAdd()
2493 __ add(out.AsRegister<Register>(), in VisitAdd() local
2674 __ add(out_hi, out_hi, ShifterOperand(IP)); in VisitMul() local
2742 __ add(out, temp, ShifterOperand(dividend)); in DivRemByPowerOfTwo() local
2777 __ add(temp1, temp1, ShifterOperand(dividend)); in GenerateDivRemWithAnyConstant() local
3198 __ add(out_reg_hi, out_reg_hi, ShifterOperand(out_reg_lo)); in HandleLongRotate() local
3201 __ add(out_reg_lo, out_reg_lo, ShifterOperand(shift_left)); in HandleLongRotate() local
3209 __ add(out_reg_hi, out_reg_hi, ShifterOperand(out_reg_lo)); in HandleLongRotate() local
3212 __ add(out_reg_lo, out_reg_lo, ShifterOperand(shift_right)); in HandleLongRotate() local
[all …]
Dpc_relative_fixups_x86.cc44 void VisitAdd(HAdd* add) OVERRIDE { in VisitAdd()
Dinstruction_simplifier.cc1236 HAdd* add = new (allocator) HAdd(type, input_other, shl); in VisitMul() local
1420 HAdd* add = new(GetGraph()->GetArena()) HAdd(type, left, right->AsNeg()->GetInput()); in VisitSub() local
1436 HAdd* add = new(GetGraph()->GetArena()) HAdd(type, left->AsNeg()->GetInput(), right); in VisitSub() local
Dbounds_check_elimination.cc968 void VisitAdd(HAdd* add) OVERRIDE { in VisitAdd()
Dcode_generator_arm64.cc4064 __ add(out.X(), out.X(), Operand(/* offset placeholder */ 0)); in VisitLoadString() local
4948 __ add(root_reg.X(), obj.X(), offset); in GenerateGcRootFieldLoad() local
Dcode_generator_x86_64.cc2864 void LocationsBuilderX86_64::VisitAdd(HAdd* add) { in VisitAdd()
2896 void InstructionCodeGeneratorX86_64::VisitAdd(HAdd* add) { in VisitAdd()
Dcode_generator_x86.cc2717 void LocationsBuilderX86::VisitAdd(HAdd* add) { in VisitAdd()
2755 void InstructionCodeGeneratorX86::VisitAdd(HAdd* add) { in VisitAdd()
/art/tools/ahat/src/
DSite.java95 public Site add(int stackId, int stackDepth, Iterator<StackFrame> path, Instance inst) { in add() method in Site
/art/test/530-checker-loops2/src/
DMain.java441 private static int[] add() { in add() method in Main
/art/compiler/utils/arm/
Dassembler_thumb2_test.cc252 TEST_F(AssemblerThumb2Test, add) { in TEST_F() argument
254 __ add(arm::R1, arm::R0, arm::ShifterOperand(42)); in TEST_F() local
256 __ add(arm::R1, arm::R0, arm::ShifterOperand(arm::R2, arm::ASR, 31)); in TEST_F() local
Dassembler_arm32.cc87 void Arm32Assembler::add(Register rd, Register rn, const ShifterOperand& so, in add() function in art::arm::Arm32Assembler
Dassembler_thumb2.cc566 void Thumb2Assembler::add(Register rd, Register rn, const ShifterOperand& so, in add() function in art::arm::Thumb2Assembler