/art/compiler/utils/arm/ |
D | assembler_thumb2.cc | 99 buffer_.Store<int16_t>(fixup_location, 0); in BindLabel() 134 buffer_.Store<int16_t>(dependent->GetLocation(), 1); in AdjustFixupIfNeeded() 162 buffer_.Store<int16_t>(fixup->GetLocation(), 0); in AdjustFixups() 2129 buffer->Store<int16_t>(location_, encoding); in Emit() 2144 buffer->Store<int16_t>(location_, encoding >> 16); in Emit() 2145 buffer->Store<int16_t>(location_ + 2u, static_cast<int16_t>(encoding & 0xffff)); in Emit() 2152 buffer->Store<int16_t>(location_, encoding); in Emit() 2160 buffer->Store<int16_t>(location_, cmp_encoding); in Emit() 2161 buffer->Store<int16_t>(location_ + 2, b_encoding); in Emit() 2169 buffer->Store<int16_t>(location_, cmp_encoding); in Emit() [all …]
|
D | assembler_arm.cc | 489 void ArmAssembler::Store(FrameOffset dest, ManagedRegister msrc, size_t size) { in Store() function in art::arm::ArmAssembler
|
D | assembler_arm.h | 922 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
|
D | assembler_arm32.cc | 1336 buffer_.Store<int32_t>(position, encoded); in Bind()
|
/art/runtime/ |
D | stack_map.h | 695 ALWAYS_INLINE void Store(MemoryRegion region, int32_t value) const { in Store() function 803 encoding.GetDexPcEncoding().Store(region_, dex_pc); in SetDexPc() 811 encoding.GetNativePcEncoding().Store(region_, native_pc_offset); in SetNativePcOffset() 819 encoding.GetDexRegisterMapEncoding().Store(region_, offset); in SetDexRegisterMapOffset() 827 encoding.GetInlineInfoEncoding().Store(region_, offset); in SetInlineDescriptorOffset() 835 encoding.GetRegisterMaskEncoding().Store(region_, mask); in SetRegisterMask() 964 encoding.GetMethodIndexEncoding().Store(GetRegionAtDepth(encoding, depth), index); in SetMethodIndexAtDepth() 975 encoding.GetDexPcEncoding().Store(GetRegionAtDepth(encoding, depth), dex_pc); in SetDexPcAtDepth() 986 encoding.GetInvokeTypeEncoding().Store(GetRegionAtDepth(encoding, depth), invoke_type); in SetInvokeTypeAtDepth() 997 encoding.GetDexRegisterMapEncoding().Store(GetRegionAtDepth(encoding, depth), offset); in SetDexRegisterMapOffsetAtDepth()
|
D | memory_region.h | 65 ALWAYS_INLINE void Store(uintptr_t offset, T value) const { in Store() function
|
/art/compiler/jni/quick/ |
D | jni_compiler.cc | 292 __ Store(saved_cookie_offset, main_jni_conv->IntReturnRegister(), 4); in ArtJniCompileMethodInternal() local 393 …__ Store(return_save_location, main_jni_conv->ReturnRegister(), main_jni_conv->SizeOfReturnValue()… in ArtJniCompileMethodInternal() local 582 __ Store(out_off, in_reg, param_size); in CopyParameter() local
|
/art/compiler/utils/ |
D | assembler.h | 109 template<typename T> void Store(size_t position, T value) { in Store() function 388 virtual void Store(FrameOffset offs, ManagedRegister src, size_t size) = 0;
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 1794 buffer_.Store<int32_t>(position, bound - (position + 4)); in Bind() 1809 buffer_.Store<int8_t>(position, offset); in Bind() 2000 void X86Assembler::Store(FrameOffset offs, ManagedRegister msrc, size_t size) { in Store() function in art::x86::X86Assembler 2214 Store(fr_offs, scratch, 4); in CopyRawPtrFromThread32() 2232 Store(dest, scratch, 4); in Copy() 2234 Store(FrameOffset(dest.Int32Value() + 4), scratch, 4); in Copy() 2237 Store(dest, scratch, size); in Copy() 2324 Store(out_off, scratch, 4); in CreateHandleScopeEntry()
|
D | assembler_x86.h | 647 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
|
/art/compiler/utils/arm64/ |
D | assembler_arm64.h | 124 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
|
D | assembler_arm64.cc | 127 void Arm64Assembler::Store(FrameOffset offs, ManagedRegister m_src, size_t size) { in Store() function in art::arm64::Arm64Assembler
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 178 str r0, [sp, #0] @ Store ArtMethod* to bottom of stack. 484 str ip, [sp] @ Store null for ArtMethod* at bottom of frame 499 strd r0, [r10] @ Store r0/r1 into result pointer 502 vstr d0, [r10] @ Store s0-s1/d0 into result pointer 507 str lr, [sp, r10] @ Store link register per the compiler ABI
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 2355 buffer_.Store<int32_t>(position, bound - (position + 4)); in Bind() 2370 buffer_.Store<int8_t>(position, offset); in Bind() 2746 void X86_64Assembler::Store(FrameOffset offs, ManagedRegister msrc, size_t size) { in Store() function in art::x86_64::X86_64Assembler 2967 Store(fr_offs, scratch, 8); in CopyRawPtrFromThread64() 2984 Store(dest, scratch, 4); in Copy() 2986 Store(FrameOffset(dest.Int32Value() + 4), scratch, 4); in Copy() 2989 Store(dest, scratch, size); in Copy() 3082 Store(out_off, scratch, 8); in CreateHandleScopeEntry()
|
D | assembler_x86_64.h | 718 void Store(FrameOffset offs, ManagedRegister src, size_t size) OVERRIDE;
|
/art/compiler/optimizing/ |
D | code_generator_arm64.h | 434 void Store(Primitive::Type type, vixl::CPURegister src, const vixl::MemOperand& dst);
|
D | code_generator_arm64.cc | 1386 void CodeGeneratorARM64::Store(Primitive::Type type, in Store() function in art::arm64::CodeGeneratorARM64 1712 codegen_->Store(field_type, source, HeapOperand(obj, offset)); in HandleFieldSet() 2191 codegen_->Store(value_type, value, destination); in VisitArraySet()
|
D | intrinsics_arm64.cc | 931 codegen->Store(type, source, mem_op); in GenUnsafePut()
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 409 sd $zero, 0($sp) # Store null for ArtMethod* at bottom of frame 1586 # Store the class pointer in the header. This also overwrites the first pointer. The offsets are
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 368 sw $zero, 0($sp) # Store null for ArtMethod* at bottom of frame 423 sw $ra, 0($t0) # Store RA per the compiler ABI
|
/art/compiler/utils/mips64/ |
D | assembler_mips64.h | 380 void Store(FrameOffset offs, ManagedRegister msrc, size_t size) OVERRIDE;
|
D | assembler_mips64.cc | 82 buffer_.Store<uint32_t>(overwrite_location_, value); in Emit() 2067 void Mips64Assembler::Store(FrameOffset dest, ManagedRegister msrc, size_t size) { in Store() function in art::mips64::Mips64Assembler
|
/art/compiler/utils/mips/ |
D | assembler_mips.h | 428 void Store(FrameOffset offs, ManagedRegister msrc, size_t size) OVERRIDE;
|
D | assembler_mips.cc | 116 buffer_.Store<uint32_t>(overwrite_location_, value); in Emit() 2531 void MipsAssembler::Store(FrameOffset dest, ManagedRegister msrc, size_t size) { in Store() function in art::mips::MipsAssembler
|