/art/runtime/arch/x86/ |
D | memcmp16_x86.S | 52 cmp $48, %ecx 95 cmp $0, %edx 97 cmp $2, %edx 99 cmp $4, %edx 101 cmp $6, %edx 103 cmp $8, %edx 105 cmp $10, %edx 107 cmp $12, %edx 113 cmp $80, %ecx 160 cmp $0, %ecx [all …]
|
/art/test/069-field-type/src/ |
D | Main.java | 29 Comparable cmp = (Comparable) holder.mValue; in main() local 30 cmp.compareTo(cmp); in main()
|
/art/runtime/arch/x86_64/ |
D | memcmp16_x86_64.S | 48 cmp $79, %rdx 71 cmp $128, %rdx 95 cmp $32, %rdx 118 cmp $512, %rdx 120 cmp $256, %rdx 168 cmp $64, %rdx 171 cmp $32, %rdx 276 cmp $128, %rdx 279 cmp $64, %rdx 282 cmp $32, %rdx [all …]
|
/art/runtime/arch/arm64/ |
D | quick_entrypoints_arm64.S | 533 cmp w2, #0 567 cmp w10, #'V' 570 cmp w10, #'D' 576 cmp w10, #'F' 662 cmp w17, #'F' // is this a float? 665 cmp x15, # 8*12 // Skip this load if all registers full. 672 cmp w17, #'D' // is this a double? 675 cmp x15, # 8*12 // Skip this load if all registers full. 682 cmp w17, #'J' // is this a long? 685 cmp x8, # 6*12 // Skip this load if all registers full. [all …]
|
/art/compiler/dex/ |
D | local_value_numbering.cc | 416 const LocalValueNumbering* cmp = gvn_->merge_lvns_[0]; in MergeMemoryVersions() local 421 if (lvn->global_memory_version_ != cmp->global_memory_version_) { in MergeMemoryVersions() 434 global_memory_version_ = cmp->global_memory_version_; in MergeMemoryVersions() 435 std::copy_n(cmp->unresolved_ifield_version_, kFieldTypeCount, unresolved_ifield_version_); in MergeMemoryVersions() 436 std::copy_n(cmp->unresolved_sfield_version_, kFieldTypeCount, unresolved_sfield_version_); in MergeMemoryVersions() 438 if (lvn == cmp) { in MergeMemoryVersions() 442 if (lvn->unresolved_ifield_version_[i] != cmp->unresolved_ifield_version_[i]) { in MergeMemoryVersions() 445 if (lvn->unresolved_sfield_version_[i] != cmp->unresolved_sfield_version_[i]) { in MergeMemoryVersions() 554 auto cmp = work_map->value_comp(); in InPlaceIntersectMaps() local 557 (cmp(*work_it, entry) || in InPlaceIntersectMaps() [all …]
|
D | global_value_numbering.cc | 169 auto cmp = array_location_map_.key_comp(); in GetArrayLocation() local 172 if (lb != array_location_map_.end() && !cmp(key, lb->first)) { in GetArrayLocation()
|
/art/runtime/arch/arm/ |
D | memcmp16_arm.S | 36 cmp r0, r1 51 cmp r2, #12
|
D | quick_entrypoints_arm.S | 423 cmp r1, #65536 490 cmp r3, r1 503 cmp r3, ip @ value's type == array's component type - trivial assignability 1299 cmp r2, #0 1302 cmp r2, r3 1337 cmp r3, r1 1339 cmp r4, r1 1341 cmp r10, r1 1343 cmp r11, r1 1354 cmp r3, r1 [all …]
|
D | portable_entrypoints_arm.S | 121 cmp r0, #0 @ is code pointer null?
|
/art/runtime/ |
D | safe_map.h | 47 explicit SafeMap(const key_compare& cmp, const allocator_type& allocator = allocator_type()) 48 : map_(cmp, allocator) { in map_() argument
|
/art/compiler/optimizing/ |
D | code_generator_arm.cc | 275 __ cmp(SP, ShifterOperand(IP)); in GenerateFrameEntry() local 565 __ cmp(if_instr->GetLocations()->InAt(0).AsArm().AsCoreRegister(), in VisitIf() local 573 __ cmp(locations->InAt(0).AsArm().AsCoreRegister(), in VisitIf() local 580 __ cmp(locations->InAt(0).AsArm().AsCoreRegister(), ShifterOperand(value)); in VisitIf() local 584 __ cmp(locations->InAt(0).AsArm().AsCoreRegister(), ShifterOperand(temp)); in VisitIf() local 612 __ cmp(locations->InAt(0).AsArm().AsCoreRegister(), in VisitCondition() local 619 __ cmp(locations->InAt(0).AsArm().AsCoreRegister(), ShifterOperand(value)); in VisitCondition() local 623 __ cmp(locations->InAt(0).AsArm().AsCoreRegister(), ShifterOperand(temp)); in VisitCondition() local 1056 __ cmp(left.AsRegisterPairHigh(), in VisitCompare() local 1063 __ cmp(left.AsRegisterPairLow(), in VisitCompare() local [all …]
|
/art/compiler/llvm/ |
D | ir_builder.h | 92 CreateAtomicCmpXchgInst(::llvm::Value* ptr, ::llvm::Value* cmp, ::llvm::Value* val, in CreateAtomicCmpXchgInst() argument 95 LLVMIRBuilder::CreateAtomicCmpXchg(ptr, cmp, val, ::llvm::Acquire); in CreateAtomicCmpXchgInst()
|
D | gbc_expander.cc | 2644 llvm::Value* cmp = irb_.CreateICmpUGE(index, array_len); in EmitGuard_ArrayIndexOutOfBoundsException() local 2652 irb_.CreateCondBr(cmp, block_exception, block_continue, kUnlikely); in EmitGuard_ArrayIndexOutOfBoundsException()
|
/art/compiler/utils/arm/ |
D | assembler_arm.cc | 716 cmp(in_reg.AsCoreRegister(), ShifterOperand(0)); in CreateHandleScopeEntry() 741 cmp(scratch.AsCoreRegister(), ShifterOperand(0)); in CreateHandleScopeEntry() 760 cmp(in_reg.AsCoreRegister(), ShifterOperand(0)); in LoadReferenceFromHandleScope() 818 cmp(scratch.AsCoreRegister(), ShifterOperand(0)); in ExceptionPoll()
|
D | assembler_thumb2.cc | 106 void Thumb2Assembler::cmp(Register rn, const ShifterOperand& so, Condition cond) { in cmp() function in art::arm::Thumb2Assembler 2110 int16_t cmp = B13 | B11 | static_cast<int16_t>(branch->GetRegister()) << 8; in Bind() local 2111 buffer_.Store<int16_t>(branch_location, cmp); in Bind() 2531 cmp(r, ShifterOperand(0)); in CompareAndBranchIfZero() 2541 cmp(r, ShifterOperand(0)); in CompareAndBranchIfNonZero()
|
D | assembler_arm32.cc | 104 void Arm32Assembler::cmp(Register rn, const ShifterOperand& so, Condition cond) { in cmp() function in art::arm::Arm32Assembler 1490 cmp(r, ShifterOperand(0)); in CompareAndBranchIfZero() 1496 cmp(r, ShifterOperand(0)); in CompareAndBranchIfNonZero()
|
D | assembler_arm32.h | 67 void cmp(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
|
D | assembler_thumb2.h | 89 void cmp(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE;
|
D | assembler_arm.h | 387 virtual void cmp(Register rn, const ShifterOperand& so, Condition cond = AL) = 0;
|
/art/compiler/utils/ |
D | assembler_thumb_test.cc | 309 __ cmp(R0, ShifterOperand(R1)); in TEST() local 343 __ cmp(R0, ShifterOperand(0x55)); in TEST() local 377 __ cmp(R0, ShifterOperand(0x550055)); in TEST() local
|
D | assembler_thumb_test_expected.cc.inc | 42 " 3c: 4288 cmp r0, r1\n", 63 " 32: 2855 cmp r0, #85 ; 0x55\n", 85 " 34: f1b0 1f55 cmp.w r0, #5570645 ; 0x550055\n", 2617 " 0: 2c00 cmp r4, #0\n", 2688 " 0: 2c00 cmp r4, #0\n",
|
/art/disassembler/ |
D | disassembler_x86.cc | 254 DISASSEMBLER_ENTRY(cmp, in DumpInstruction()
|