Searched defs:second (Results 1 - 11 of 11) sorted by relevance

/art/compiler/optimizing/
H A Dregister_allocator_test.cc767 HInstruction* second = new (allocator) HParameterValue( local
770 entry->AddInstruction(second);
776 *div = new (allocator) HDiv(Primitive::kPrimInt, first, second, 0); // don't care about dex_pc.
861 LiveInterval* second = BuildInterval(ranges2, arraysize(ranges2), &allocator, -1, two); local
862 locations = new (&allocator) LocationSummary(second->GetDefinedBy(), LocationSummary::kNoCall);
898 register_allocator.unhandled_core_intervals_.push_back(second);
911 intervals.push_back(second);
H A Dinstruction_builder.cc475 HInstruction* second = LoadLocal(instruction.VRegB(), Primitive::kPrimInt); local
476 T* comparison = new (arena_) T(first, second, dex_pc);
514 HInstruction* second = LoadLocal(instruction.VRegC(), type); local
515 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
524 HInstruction* second = LoadLocal(instruction.VRegC(), Primitive::kPrimInt); local
525 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
534 HInstruction* second = LoadLocal(instruction.VRegC(), type); local
535 AppendInstruction(new (arena_) HCompare(type, first, second, bias, dex_pc));
544 HInstruction* second = LoadLocal(instruction.VRegB(), Primitive::kPrimInt); local
545 AppendInstruction(new (arena_) T(type, first, second, dex_p
554 HInstruction* second = LoadLocal(instruction.VRegB(), type); local
562 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22s(), dex_pc); local
573 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22b(), dex_pc); local
1427 HInstruction* second = nullptr; local
[all...]
H A Dcode_generator_mips64.cc448 it.second.start = __ GetAdjustedPosition(it.second.start);
449 it.second.end = __ GetAdjustedPosition(it.second.end);
1851 Location second = locations->InAt(1); local
1852 DCHECK(second.IsConstant());
1856 int64_t imm = Int64FromConstant(second.GetConstant());
1880 Location second = locations->InAt(1); local
1881 DCHECK(second.IsConstant());
1885 int64_t imm = Int64FromConstant(second
1983 Location second = locations->InAt(1); local
2060 Location second = locations->InAt(1); local
[all...]
H A Dcode_generator_arm64.cc2249 // However, the second read barrier may trash `temp`, as it
2521 Location second = locations->InAt(1); local
2522 DCHECK(second.IsConstant());
2526 int64_t imm = Int64FromConstant(second.GetConstant());
2544 Location second = locations->InAt(1); local
2545 DCHECK(second.IsConstant());
2549 int64_t imm = Int64FromConstant(second.GetConstant());
2579 Location second = locations->InAt(1); local
2580 DCHECK(second.IsConstant());
2584 int64_t imm = Int64FromConstant(second
2633 Location second = locations->InAt(1); local
[all...]
H A Dcode_generator_mips.cc502 it.second.start = __ GetAdjustedPosition(it.second.start);
503 it.second.end = __ GetAdjustedPosition(it.second.end);
2267 Location second = locations->InAt(1); local
2268 DCHECK(second.IsConstant());
2272 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
2291 Location second = locations->InAt(1); local
2292 DCHECK(second.IsConstant());
2296 int32_t imm = second
2340 Location second = locations->InAt(1); local
2392 Location second = locations->InAt(1); local
[all...]
H A Dcode_generator_arm.cc815 it.second.start = __ GetAdjustedPosition(it.second.start);
816 it.second.end = __ GetAdjustedPosition(it.second.end);
2489 Location second = locations->InAt(1); local
2492 if (second.IsRegister()) {
2495 ShifterOperand(second.AsRegister<Register>()));
2499 second.GetConstant()->AsIntConstant()->GetValue());
2504 DCHECK(second.IsRegisterPair());
2507 ShifterOperand(second
2564 Location second = locations->InAt(1); local
2639 Location second = locations->InAt(1); local
2702 Location second = locations->InAt(1); local
2726 Location second = locations->InAt(1); local
2760 Location second = locations->InAt(1); local
2801 Location second = locations->InAt(1); local
2887 Location second = locations->InAt(1); local
3025 Location second = locations->InAt(1); local
3308 Location second = locations->InAt(1); local
5038 DRegister second = FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()); local
5786 Location second = locations->InAt(1); local
5892 Location second = locations->InAt(1); local
[all...]
H A Dcode_generator_x86.cc2758 Location second = locations->InAt(1); local
2763 if (second.IsRegister()) {
2765 __ addl(out.AsRegister<Register>(), second.AsRegister<Register>());
2766 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
2770 first.AsRegister<Register>(), second.AsRegister<Register>(), TIMES_1, 0));
2772 } else if (second.IsConstant()) {
2773 int32_t value = second.GetConstant()->AsIntConstant()->GetValue();
2781 __ addl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
2787 if (second.IsRegisterPair()) {
2788 __ addl(first.AsRegisterPairLow<Register>(), second
2875 Location second = locations->InAt(1); local
2991 Location second = locations->InAt(1); local
3181 Location second = locations->InAt(1); local
3363 Location second = locations->InAt(1); local
3489 Location second = locations->InAt(1); local
3701 Location second = locations->InAt(1); local
3896 Location second = locations->InAt(1); local
6612 Location second = locations->InAt(1); local
[all...]
H A Dcode_generator_x86_64.cc2899 Location second = locations->InAt(1); local
2904 if (second.IsRegister()) {
2906 __ addl(out.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
2907 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
2911 first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>(), TIMES_1, 0));
2913 } else if (second.IsConstant()) {
2916 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
2919 first.AsRegister<CpuRegister>(), second.GetConstant()->AsIntConstant()->GetValue()));
2923 __ addl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
2929 if (second
3019 Location second = locations->InAt(1); local
3122 Location second = locations->InAt(1); local
3231 Location second = locations->InAt(1); local
3282 Location second = locations->InAt(1); local
3323 Location second = locations->InAt(1); local
3369 Location second = locations->InAt(1); local
3496 Location second = locations->InAt(1); local
3579 Location second = locations->InAt(1); local
3762 Location second = locations->InAt(1); local
3837 Location second = locations->InAt(1); local
6093 Location second = locations->InAt(1); local
[all...]
H A Dnodes.h533 constant = cached_constant->second;
1418 * second line indicates the type of the access (in the order of the
3038 HCondition(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3039 : HBinaryOperation(Primitive::kPrimBoolean, first, second, SideEffects::None(), dex_pc) {
3119 HEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3120 : HCondition(first, second, dex_pc) {}
3163 HNotEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3164 : HCondition(first, second, dex_pc) {}
3206 HLessThan(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3207 : HCondition(first, second, dex_p
3243 HLessThanOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3280 HGreaterThan(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3317 HGreaterThanOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3354 HBelow(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3394 HBelowOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3434 HAbove(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3474 HAboveOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3519 HCompare(Primitive::Type comparison_type, HInstruction* first, HInstruction* second, ComparisonBias bias, uint32_t dex_pc) argument
[all...]
/art/runtime/
H A Dutf.cc188 const uint16_t second = GetTrailingUtf16Char(pair); local
189 if (second != 0) {
190 hash = hash * 31 + second;
H A Dutf_test.cc180 const std::vector<uint8_t>& prefix_out = prefix.second;
183 const std::vector<uint8_t>& test_out = test.second;
186 const std::vector<uint8_t>& suffix_out = suffix.second;
309 static void codePointToSurrogatePair(uint32_t code_point, uint16_t &first, uint16_t &second) { argument
311 second = (code_point & 0x03ff) + 0xdc00;

Completed in 111 milliseconds