RTEMS 6.1-rc4
Loading...
Searching...
No Matches
Files | Macros | Variables
AArch64 Assembler Support

AArch64 Assembler Support. More...

Files

file  asm.h
 This header file provides interfaces to address problems caused by incompatible flavor of assemblers and toolsets.
 

Macros

#define FUNCTION_ENTRY(name)
 
#define FUNCTION_END(name)    .size name, . - name
 
#define DEFINE_FUNCTION_AARCH64(name)    .align 8 ; .globl name ; name: ; .globl name ## _aarch64 ; name ## _aarch64:
 

Variables

macro GET_SELF_CPU_CONTROL REG ldr REG
 

Detailed Description

AArch64 Assembler Support.

Macro Definition Documentation

◆ FUNCTION_ENTRY

#define FUNCTION_ENTRY (   name)
Value:
.align 8; \
.globl name; \
.type name, %function; \
name: