/art/runtime/ |
D | disassembler_x86.cc | 147 bool store = false; // stores to memory (ie rm is on the left) in DumpInstruction() local 161 case rm8_r8: opcode << #opname; store = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction() 162 case rm32_r32: opcode << #opname; store = true; has_modrm = true; break; \ in DumpInstruction() 221 case 0x88: opcode << "mov"; store = true; has_modrm = true; byte_operand = true; break; in DumpInstruction() 222 case 0x89: opcode << "mov"; store = true; has_modrm = true; break; in DumpInstruction() 245 store = !load; in DumpInstruction() 425 store = true; in DumpInstruction() 439 store = true; in DumpInstruction() 453 store = true; in DumpInstruction() 465 store = true; in DumpInstruction() [all …]
|
D | atomic_integer.h | 32 void store(int32_t desired) { in store() function 37 store(desired);
|
/art/test/019-wrong-array-type/ |
D | expected.txt | 1 Got correct array store exception
|
/art/compiler/dex/quick/arm/ |
D | utility_arm.cc | 709 LIR* store = NULL; in StoreBaseIndexed() local 741 store = NewLIR3(opcode, r_src, reg_ptr, 0); in StoreBaseIndexed() 743 return store; in StoreBaseIndexed() 759 store = NewLIR3(opcode, r_src, rBase, r_index); in StoreBaseIndexed() 761 store = NewLIR4(opcode, r_src, rBase, r_index, scale); in StoreBaseIndexed() 763 return store; in StoreBaseIndexed() 904 LIR* store = NULL; in StoreBaseDispBody() local 918 store = NewLIR4(kThumb2StrdI8, r_src, r_src_hi, rBase, displacement >> 2); in StoreBaseDispBody() 920 store = StoreBaseDispBody(rBase, displacement, r_src, -1, kWord); in StoreBaseDispBody() 989 store = NewLIR3(opcode, r_src, rBase, encoded_disp); in StoreBaseDispBody() [all …]
|
/art/test/069-field-type/ |
D | info.txt | 1 This tests to see if the VM allows you to store a reference to an
|
/art/compiler/dex/quick/x86/ |
D | utility_x86.cc | 466 LIR *store = NULL; in StoreBaseIndexedDisp() local 515 store = NewLIR3(opcode, rBase, displacement + LOWORD_OFFSET, r_src); in StoreBaseIndexedDisp() 517 store = NewLIR3(opcode, rBase, displacement + LOWORD_OFFSET, r_src); in StoreBaseIndexedDisp() 521 AnnotateDalvikRegAccess(store, (displacement + (pair ? LOWORD_OFFSET : 0)) >> 2, in StoreBaseIndexedDisp() 530 store = NewLIR5(opcode, rBase, r_index, scale, in StoreBaseIndexedDisp() 533 store = NewLIR5(opcode, rBase, r_index, scale, in StoreBaseIndexedDisp() 540 return store; in StoreBaseIndexedDisp()
|
/art/compiler/dex/quick/mips/ |
D | utility_mips.cc | 546 LIR *store = NULL; in StoreBaseDispBody() local 594 store = res = NewLIR3(opcode, r_src, displacement, rBase); in StoreBaseDispBody() 596 store = res = NewLIR3(opcode, r_src, displacement + LOWORD_OFFSET, in StoreBaseDispBody() 605 store = NewLIR3(opcode, r_src, 0, r_scratch); in StoreBaseDispBody() 607 store = NewLIR3(opcode, r_src, LOWORD_OFFSET, r_scratch); in StoreBaseDispBody() 614 AnnotateDalvikRegAccess(store, (displacement + (pair ? LOWORD_OFFSET : 0)) >> 2, in StoreBaseDispBody()
|
/art/runtime/arch/arm/ |
D | portable_entrypoints_arm.S | 54 str ip, [sp] @ store NULL for method* at bottom of frame 60 strd r0, [ip] @ store r0/r1 into result pointer
|
D | quick_entrypoints_arm.S | 281 str ip, [sp] @ store NULL for method* at bottom of frame 286 strd r0, [ip] @ store r0/r1 into result pointer
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 440 sw $zero, 0($sp) # store NULL for method* at bottom of frame 454 sw $v0, 0($t0) # store the result 456 sw $v1, 4($t0) # store the other half of the result 458 s.s $f0, 0($t0) # store floating point result 460 s.s $f1, 4($t0) # store other half of floating point result
|
/art/test/046-reflect/ |
D | expected.txt | 44 got expected illegal obj store exc
|