ARM
文章平均质量分 95
maimang09
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Using the Stack in AArch64: Implementing Push and Pop
Using the Stack in AArch64: Implementing Push and Pop - Architectures and Processors blog - Arm Community blogs - Arm CommunityUsers of ARM processors can be all over the planet, and now they have a place to come together. The processors community is the p转载 2022-06-28 15:08:36 · 217 阅读 · 0 评论 -
Using the Stack in AArch32 and AArch64
Jacob BramleyNovember 19, 2015When reading assembly-level code for any of the AArch32 or AArch64 instruction sets, you may have noticed that the stack pointer has various alignment and usage restrictions. These restrictions are part of the procedure-call s转载 2022-06-28 15:05:31 · 332 阅读 · 0 评论 -
ARM64 Assembly Language Notes
ARM64 Assembly Language Noteshttps://cit.dixie.edu/cs/2810/arm64-assembly.htmlThis document is a quick reference for material that we talk about in class.There are 32 main registers, x0–x30 (64-bit versions) or w0–w30 (32-bit versions). x31 is a special ca转载 2022-06-28 14:56:43 · 942 阅读 · 0 评论 -
A Guide to ARM64 / AArch64 Assembly on Linux with Shellcodes and Cryptography
Posted on October 30, 2018 by odzhanThe Cortex-A76 codenamed “Enyo” will be the first of three CPU cores from ARM designed to target the laptop market between 2018-2020. ARM already has a monopoly on handheld devices, and are now projected to take a share转载 2022-06-28 14:37:21 · 1741 阅读 · 0 评论 -
编译报错“field has incomplete type“
armcc 头文件相互包含可能会报这个错误原创 2020-07-09 15:16:14 · 1019 阅读 · 0 评论 -
armclang 使用 instrument function 分析函数执行流程
1、添加编译选项 armcc 编译选项添加 --gnu_instrument (比如 CFLAGS +=--gnu_instrument) armclang 编译选项添加 -finstrument-functions (比如 CFLAGS += -finstrument-functions) 2、申明 instrument 函数 void __cyg_profile_func_enter(void *this, void *callsite)__attribute__((no_instr...原创 2020-07-02 09:38:38 · 1030 阅读 · 0 评论
分享