/art/compiler/utils/x86/ |
D | assembler_x86.h | 850 void LockCmpxchgb(const Address& address, Register reg) { in LockCmpxchgb() 855 void LockCmpxchgb(const Address& address, ByteRegister reg) { in LockCmpxchgb() 859 void LockCmpxchgw(const Address& address, Register reg) { in LockCmpxchgw() 870 void LockCmpxchgl(const Address& address, Register reg) { in LockCmpxchgl() 874 void LockCmpxchg8b(const Address& address) { in LockCmpxchg8b() 878 void LockXaddb(const Address& address, Register reg) { in LockXaddb() 883 void LockXaddb(const Address& address, ByteRegister reg) { in LockXaddb() 887 void LockXaddw(const Address& address, Register reg) { in LockXaddw() 898 void LockXaddl(const Address& address, Register reg) { in LockXaddl()
|
D | assembler_x86.cc | 76 void X86Assembler::call(const Address& address) { in call() 108 void X86Assembler::pushl(const Address& address) { in pushl() 133 void X86Assembler::popl(const Address& address) { in popl() 2890 void X86Assembler::xchgb(Register reg, const Address& address) { in xchgb() 2896 void X86Assembler::xchgb(ByteRegister reg, const Address& address) { in xchgb() 2903 void X86Assembler::xchgw(Register reg, const Address& address) { in xchgw() 2918 void X86Assembler::xchgl(Register reg, const Address& address) { in xchgl() 2925 void X86Assembler::cmpb(const Address& address, const Immediate& imm) { in cmpb() 2933 void X86Assembler::cmpw(const Address& address, const Immediate& imm) { in cmpw() 2953 void X86Assembler::cmpl(Register reg, const Address& address) { in cmpl() [all …]
|
/art/libartbase/base/ |
D | memory_region.h | 63 T* address = ComputeInternalPointer<T>(offset); in Load() local 73 T* address = ComputeInternalPointer<T>(offset); in Store() local 152 template<typename T> static constexpr bool IsWordAligned(const T* address) { in IsWordAligned()
|
D | hex_dump.h | 32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) in HexDump()
|
D | scoped_arena_containers.h | 180 pointer address(reference x) const { return &x; } in address() function 181 const_pointer address(const_reference x) const { return &x; } in address() function
|
D | arena_containers.h | 194 pointer address(reference x) const { return &x; } in address() function 195 const_pointer address(const_reference x) const { return &x; } in address() function
|
/art/runtime/native/ |
D | sun_misc_Unsafe.cc | 245 static void Unsafe_freeMemory(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_freeMemory() 249 static void Unsafe_setMemory(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jlong bytes, jby… in Unsafe_setMemory() 253 static jbyte Unsafe_getByteJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getByteJ() 257 static void Unsafe_putByteJB(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jbyte value) { in Unsafe_putByteJB() 261 static jshort Unsafe_getShortJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getShortJ() 265 static void Unsafe_putShortJS(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jshort value) { in Unsafe_putShortJS() 269 static jchar Unsafe_getCharJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getCharJ() 273 static void Unsafe_putCharJC(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jchar value) { in Unsafe_putCharJC() 277 static jint Unsafe_getIntJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getIntJ() 281 static void Unsafe_putIntJI(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jint value) { in Unsafe_putIntJI() [all …]
|
/art/compiler/debug/ |
D | elf_symtab_writer.h | 108 uint64_t address = info.code_address; in WriteDebugSymbols() local 153 uint64_t address = info.code_address; in WriteDebugSymbols() local
|
/art/openjdkjvmti/ |
D | jvmti_allocator.h | 110 pointer address(reference x) const { return &x; } in address() function 111 const_pointer address(const_reference x) const { return &x; } in address() function
|
/art/runtime/jit/ |
D | jit_memory_region.h | 118 void FillData(const T* address, size_t n, const T& t) REQUIRES(Locks::jit_lock_) { in FillData() 125 void WriteData(const T* address, const T& value) { in WriteData()
|
/art/libdexfile/dex/ |
D | dex_file_exception_helpers.cc | 24 CatchHandlerIterator::CatchHandlerIterator(const CodeItemDataAccessor& accessor, uint32_t address) { in CatchHandlerIterator()
|
D | code_item_accessors-inl.h | 222 inline bool CodeItemDebugInfoAccessor::GetLineNumForPc(const uint32_t address, in GetLineNumForPc()
|
/art/compiler/utils/ |
D | swap_space.h | 175 pointer address(reference x) const { return &x; } in address() function 176 const_pointer address(const_reference x) const { return &x; } in address() function
|
D | label.h | 49 uintptr_t address() const { in address() function
|
/art/compiler/optimizing/ |
D | instruction_simplifier_shared.cc | 261 HIntermediateAddress* address = new (allocator) HIntermediateAddress(array, offset, kNoDexPc); in TryExtractArrayAccessAddress() local 330 HIntermediateAddressIndex* address = in TryExtractVecArrayAccessAddress() local
|
/art/runtime/gc/accounting/ |
D | bitmap-inl.h | 137 uintptr_t* address = &bitmap_begin_[word_index]; in ModifyBit() local
|
D | card_table-inl.h | 33 static inline bool byte_cas(uint8_t old_value, uint8_t new_value, uint8_t* address) { in byte_cas()
|
/art/libdexfile/external/include/art_api/ |
D | dex_file_support.h | 96 static Error Create(const void* address, in Create()
|
/art/compiler/ |
D | cfi_test.h | 112 std::string address; in ReformatCfi() local
|
D | compiled_method.cc | 86 uintptr_t address = reinterpret_cast<uintptr_t>(code_pointer); in CodePointer() local
|
/art/runtime/gc/space/ |
D | large_object_space.h | 205 size_t GetSlotIndexForAddress(uintptr_t address) const { in GetSlotIndexForAddress()
|
/art/test/986-native-method-bind/ |
D | native_bind.cc | 60 void* address, in doJvmtiMethodBind()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 83 void X86_64Assembler::call(const Address& address) { in call() 106 void X86_64Assembler::pushq(const Address& address) { in pushq() 134 void X86_64Assembler::popq(const Address& address) { in popq() 3860 void X86_64Assembler::xchgl(CpuRegister reg, const Address& address) { in xchgl() 3868 void X86_64Assembler::cmpb(const Address& address, const Immediate& imm) { in cmpb() 3878 void X86_64Assembler::cmpw(const Address& address, const Immediate& imm) { in cmpw() 3903 void X86_64Assembler::cmpl(CpuRegister reg, const Address& address) { in cmpl() 3911 void X86_64Assembler::cmpl(const Address& address, CpuRegister reg) { in cmpl() 3919 void X86_64Assembler::cmpl(const Address& address, const Immediate& imm) { in cmpl() 3943 void X86_64Assembler::cmpq(CpuRegister reg, const Address& address) { in cmpq() [all …]
|
D | assembler_x86_64.h | 902 void LockCmpxchgl(const Address& address, CpuRegister reg) { in LockCmpxchgl() 906 void LockCmpxchgq(const Address& address, CpuRegister reg) { in LockCmpxchgq()
|
/art/runtime/ |
D | handle_scope.h | 154 uintptr_t address = reinterpret_cast<uintptr_t>(this) + ReferencesOffset(kRuntimePointerSize); in GetReferences() local
|