Home
last modified time | relevance | path

Searched defs:address (Results 1 – 25 of 65) sorted by relevance

123

/art/compiler/utils/x86/
Dassembler_x86.h902 void cmpxchgb(const Address& address, Register reg) { in cmpxchgb()
907 void LockCmpxchgb(const Address& address, Register reg) { in LockCmpxchgb()
911 void LockCmpxchgb(const Address& address, ByteRegister reg) { in LockCmpxchgb()
915 void LockCmpxchgw(const Address& address, Register reg) { in LockCmpxchgw()
926 void LockCmpxchgl(const Address& address, Register reg) { in LockCmpxchgl()
930 void LockCmpxchg8b(const Address& address) { in LockCmpxchg8b()
935 void LockXaddb(const Address& address, Register reg) { in LockXaddb()
939 void LockXaddb(const Address& address, ByteRegister reg) { in LockXaddb()
943 void LockXaddw(const Address& address, Register reg) { in LockXaddw()
954 void LockXaddl(const Address& address, Register reg) { in LockXaddl()
Dassembler_x86.cc76 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()
2946 void X86Assembler::xchgb(ByteRegister reg, const Address& address) { in xchgb()
2958 void X86Assembler::xchgb(Register reg, const Address& address) { in xchgb()
2976 void X86Assembler::xchgw(Register reg, const Address& address) { in xchgw()
2996 void X86Assembler::xchgl(Register reg, const Address& address) { in xchgl()
3003 void X86Assembler::cmpb(const Address& address, const Immediate& imm) { in cmpb()
3011 void X86Assembler::cmpw(const Address& address, const Immediate& imm) { in cmpw()
3031 void X86Assembler::cmpl(Register reg, const Address& address) { in cmpl()
[all …]
/art/compiler/utils/x86_64/
Dassembler_x86_64.h996 void LockCmpxchgb(const Address& address, CpuRegister reg) { in LockCmpxchgb()
1000 void LockCmpxchgw(const Address& address, CpuRegister reg) { in LockCmpxchgw()
1012 void LockCmpxchgl(const Address& address, CpuRegister reg) { in LockCmpxchgl()
1016 void LockCmpxchgq(const Address& address, CpuRegister reg) { in LockCmpxchgq()
1020 void LockXaddb(const Address& address, CpuRegister reg) { in LockXaddb()
1024 void LockXaddw(const Address& address, CpuRegister reg) { in LockXaddw()
1036 void LockXaddl(const Address& address, CpuRegister reg) { in LockXaddl()
1040 void LockXaddq(const Address& address, CpuRegister reg) { in LockXaddq()
Dassembler_x86_64.cc83 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()
3881 void X86_64Assembler::xchgb(CpuRegister reg, const Address& address) { in xchgb()
3903 void X86_64Assembler::xchgw(CpuRegister reg, const Address& address) { in xchgw()
3925 void X86_64Assembler::xchgl(CpuRegister reg, const Address& address) { in xchgl()
3946 void X86_64Assembler::xchgq(CpuRegister reg, const Address& address) { in xchgq()
3963 void X86_64Assembler::xaddb(const Address& address, CpuRegister reg) { in xaddb()
3982 void X86_64Assembler::xaddw(const Address& address, CpuRegister reg) { in xaddw()
4001 void X86_64Assembler::xaddl(const Address& address, CpuRegister reg) { in xaddl()
[all …]
/art/libartbase/base/
Dmemory_region.h63 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()
Dhex_dump.h32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) in HexDump()
Dscoped_arena_containers.h184 pointer address(reference x) const { return &x; } in address() function
185 const_pointer address(const_reference x) const { return &x; } in address() function
Darena_containers.h198 pointer address(reference x) const { return &x; } in address() function
199 const_pointer address(const_reference x) const { return &x; } in address() function
/art/runtime/native/
Djdk_internal_misc_Unsafe.cc291 static void Unsafe_freeMemory(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_freeMemory()
295 static void Unsafe_setMemory(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jlong bytes, jby… in Unsafe_setMemory()
299 static jbyte Unsafe_getByteJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getByteJ()
303 static void Unsafe_putByteJB(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jbyte value) { in Unsafe_putByteJB()
307 static jshort Unsafe_getShortJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getShortJ()
311 static void Unsafe_putShortJS(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jshort value) { in Unsafe_putShortJS()
315 static jchar Unsafe_getCharJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getCharJ()
319 static void Unsafe_putCharJC(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jchar value) { in Unsafe_putCharJC()
323 static jint Unsafe_getIntJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getIntJ()
327 static void Unsafe_putIntJI(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jint value) { in Unsafe_putIntJI()
[all …]
Dsun_misc_Unsafe.cc245 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 …]
Dlibcore_io_Memory.cc34 static inline T get_unaligned(const T* address) { in get_unaligned()
43 static inline void put_unaligned(T* address, T v) { in put_unaligned()
52 static T cast(jlong address) { in cast()
/art/compiler/debug/
Delf_symtab_writer.h109 uint64_t address = info.code_address; in WriteDebugSymbols() local
154 uint64_t address = info.code_address; in WriteDebugSymbols() local
/art/openjdkjvmti/
Djvmti_allocator.h110 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/
Djit_memory_region.h118 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/
Ddex_file_exception_helpers.cc24 CatchHandlerIterator::CatchHandlerIterator(const CodeItemDataAccessor& accessor, uint32_t address) { in CatchHandlerIterator()
Dcode_item_accessors-inl.h222 inline bool CodeItemDebugInfoAccessor::GetLineNumForPc(const uint32_t address, in GetLineNumForPc()
/art/compiler/optimizing/
Dinstruction_simplifier_shared.cc261 HIntermediateAddress* address = new (allocator) HIntermediateAddress(array, offset, kNoDexPc); in TryExtractArrayAccessAddress() local
330 HIntermediateAddressIndex* address = in TryExtractVecArrayAccessAddress() local
/art/dex2oat/utils/
Dswap_space.h176 pointer address(reference x) const { return &x; } in address() function
177 const_pointer address(const_reference x) const { return &x; } in address() function
/art/compiler/utils/
Dlabel.h51 uintptr_t address() const { in address() function
/art/runtime/gc/accounting/
Dbitmap-inl.h137 uintptr_t* address = &bitmap_begin_[word_index]; in ModifyBit() local
/art/libdexfile/external/include/art_api/
Ddex_file_support.h94 static Error Create(const void* address, in Create()
/art/compiler/
Dcfi_test.h113 std::string address; in ReformatCfi() local
/art/runtime/gc/space/
Dlarge_object_space.h205 size_t GetSlotIndexForAddress(uintptr_t address) const { in GetSlotIndexForAddress()
/art/test/986-native-method-bind/
Dnative_bind.cc60 void* address, in doJvmtiMethodBind()
/art/runtime/
Dhandle_scope.h160 uintptr_t address = reinterpret_cast<uintptr_t>(this) + ReferencesOffset(kRuntimePointerSize); in GetReferences() local

123