Searched refs:pointer (Results 1 - 16 of 16) sorted by relevance

/art/runtime/
H A Dmemory_region.cc28 CHECK(from.pointer() != nullptr);
33 from.pointer(), from.size());
H A Dmemory_region.h41 void* pointer() const { return pointer_; } function in class:art::FINAL
159 pointer_ = region.pointer();
171 // Locate the bit with the given offset. Returns a pointer to the byte
H A Dstack_map.h688 bool IsValid() const { return region_.pointer() != nullptr; }
728 return region_.pointer() == other.region_.pointer()
/art/runtime/arch/arm/
H A Djni_entrypoints_arm.S31 sub sp, #12 @ pad stack pointer to align frame
35 add sp, #12 @ restore stack pointer
H A Dquick_entrypoints_arm.S361 * r0 = method pointer
364 * r3 = (managed) thread pointer
398 mov r11, sp @ save the stack pointer
401 mov r9, r3 @ move managed thread pointer into r9
403 add r4, r2, #4 @ create space for method pointer in frame
409 add r0, sp, #4 @ pass stack pointer + method ptr as dest for memcpy
414 ldr ip, [r11, #48] @ load fp register argument array pointer
417 ldr ip, [r11, #44] @ load core register argument array pointer
426 ldr ip, [r0, #ART_METHOD_QUICK_CODE_OFFSET_32] @ get pointer to the code
429 mov sp, r11 @ restore the stack pointer
[all...]
/art/runtime/base/
H A Diteration_range.h32 typedef typename std::iterator_traits<Iter>::pointer pointer; typedef in class:art::IterationRange
H A Darena_containers.h92 typedef void* pointer; typedef in class:art::ArenaAllocatorAdapter
125 typedef T* pointer; typedef in class:art::ArenaAllocatorAdapter
154 pointer address(reference x) const { return &x; }
157 pointer allocate(size_type n, ArenaAllocatorAdapter<void>::pointer hint = nullptr) {
162 void deallocate(pointer p, size_type n) {
166 void construct(pointer p, const_reference val) {
169 void destroy(pointer p) {
H A Dscoped_arena_containers.h72 typedef void* pointer; typedef in class:art::ScopedArenaAllocatorAdapter
111 typedef T* pointer; typedef in class:art::ScopedArenaAllocatorAdapter
145 pointer address(reference x) const { return &x; }
148 pointer allocate(size_type n, ScopedArenaAllocatorAdapter<void>::pointer hint = nullptr) {
155 void deallocate(pointer p, size_type n) {
161 void construct(pointer p, const_reference val) {
165 void destroy(pointer p) {
H A Dallocator.h110 typedef typename std::allocator<T>::pointer pointer; typedef in class:art::TrackingAllocatorImpl
133 pointer allocate(size_type n, const_pointer hint = 0) {
137 return reinterpret_cast<pointer>(malloc(size));
H A Dstringpiece.h36 typedef const char* pointer; typedef in class:art::StringPiece
57 // data() may return a pointer to a buffer with embedded NULs, and the
/art/compiler/utils/
H A Dswap_space.h107 typedef void* pointer; typedef in class:art::SwapAllocator
135 typedef T* pointer; typedef in class:art::SwapAllocator
160 pointer address(reference x) const { return &x; }
163 pointer allocate(size_type n, SwapAllocator<void>::pointer hint ATTRIBUTE_UNUSED = nullptr) {
171 void deallocate(pointer p, size_type n) {
179 void construct(pointer p, const_reference val) {
186 void destroy(pointer p) {
H A Darray_ref.h49 typedef T* pointer; typedef in class:art::ArrayRef
/art/build/
H A DAndroid.common_build.mk123 art_clang_cflags += -Wint-to-void-pointer-cast
149 # -Wzero-as-null-pointer-constant \
155 # Bug: 15446488. We don't omit the frame pointer to work around
157 ART_HOST_CFLAGS += $(art_clang_cflags) -fno-omit-frame-pointer
291 # ART_TARGET_CFLAGS += -fno-omit-frame-pointer -marm -mapcs
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S494 * a0 = method pointer
497 * a3 = (managed) thread pointer
515 move $s1, $a3 # move managed thread pointer into s1
517 addiu $t0, $a2, 4 # create space for method pointer in frame.
521 addiu $a0, $sp, 4 # pass stack pointer + method ptr as dest for memcpy
529 lw $t9, ART_METHOD_QUICK_CODE_OFFSET_32($a0) # get pointer to the code
543 lw $t0, 16($sp) # get result pointer
1123 move $t9, $v0 # code pointer must be in $t9 to generate the global pointer
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S617 * a0 = method pointer
620 * a3 = (managed) thread pointer
642 move $s1, $a3 # move managed thread pointer into s1 (rSELF)
676 ld $t9, ART_METHOD_QUICK_CODE_OFFSET_64($a0) # get pointer to the code
719 * a0 = method pointer
722 * a3 = (managed) thread pointer
745 move $s1, $a3 # move managed thread pointer into s1 (rSELF)
778 ld $t9, ART_METHOD_QUICK_CODE_OFFSET_64($a0) # get pointer to the code
1389 move $t9, $v0 # code pointer must be in $t9 to generate the global pointer
[all...]
/art/compiler/dex/quick/
H A Dmir_to_lir.h275 * an aliased group is used. In our case, it would be d2's. The master_storage pointer
594 uint32_t WrapPointer(const T* pointer) { argument
596 pointer_storage_.push_back(pointer);
1226 * @brief Portable way of getting a special register for storing a pointer.
1851 // a PC of an instruction (or another PC-relative address such as a pointer to

Completed in 544 milliseconds