aboutsummaryrefslogtreecommitdiffstats
path: root/lib/hipe/arm/hipe_arm.hrl
blob: 558174e3fc6f5b2e2b9d30126508ba18d95bfc8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
%% -*- erlang-indent-level: 2 -*-
%%
%% %CopyrightBegin%
%% 
%% Copyright Ericsson AB 2005-2016. All Rights Reserved.
%% 
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%%     http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.
%% 
%% %CopyrightEnd%
%%

%%%--------------------------------------------------------------------
%%% Basic Values:
%%%
%%% temp	::= #arm_temp{reg, type, allocatable}
%%% reg		::= <token from hipe_arm_registers>
%%% type	::= tagged | untagged
%%% allocatable	::= true | false
%%%
%%% sdesc	::= #arm_sdesc{exnlab, fsize, arity, live}
%%% exnlab	::= [] | label
%%% fsize	::= int32		(frame size in words)
%%% live	::= <tuple of int32>	(word offsets)
%%% arity	::= uint8
%%%
%%% mfa		::= #arm_mfa{atom, atom, arity}
%%% prim	::= #arm_prim{atom}

-record(arm_mfa, {m::atom(), f::atom(), a::arity()}).
-record(arm_prim, {prim}).
-record(arm_sdesc, {exnlab, fsize, arity::arity(), live}).
-record(arm_temp, {reg, type, allocatable}).

%%% Instruction Operands:
%%%
%%% aluop	::= adc | add | and | bic | eor | orr | rsb | rsc | sbc | sub
%%% cmpop	::= cmn | cmp | tst | teq	(alu with s flag and no dst)
%%% cond	::= eq | ne | hs | lo | mi | pl | vs | vc | hi | ls | ge | lt | gt | le | al
%%% ldop	::= ldr | ldrb			(am2)
%%% movop	::= mov | mvn			(alu with no src)
%%% stop	::= str | strb			(am2)
%%%
%%% dst		::= temp
%%% src		::= temp
%%%
%%% s		::= true | false
%%%
%%% imm<N>	::= <an N-bit non-negative integer>
%%%
%%% Note: am1 represents all 11 variants of "Adressing Mode 1".
%%%
%%% am1		::= {imm8,imm4}		imm8 rotated right 2*imm4 bits
%%%		  | src
%%%		  | {src,rrx}
%%%		  | {src,shiftop,imm5}
%%%		  | {src,shiftop,src}
%%% shiftop	::= lsl | lsr | asr | ror
%%%
%%% Note: am2 can represent the first 3 variants of "Addressing Mode 2",
%%% i.e., not the pre- or post-indexed variants.
%%%
%%% am2		::= #am2{src, sign, am2offset}
%%% am2offset	::= imm12 | src | {src,rrx} | {src,shiftop,imm5}
%%% sign	::= + | -
%%%
%%% Note: am3 can represent the first 2 variants of "Addressing Mode 3",
%%% i.e., not the pre- or post-indexed variants.
%%%
%%% am3		::= #am3{src, sign, am3offset}
%%% am3offset	::= imm8 | src
%%%
%%% fun		::= mfa | prim
%%% funv	::= mfa | prim | temp
%%%
%%% immediate	::= int32 | atom | {label,label_type}
%%% label_type	::= constant | closure | c_const

-record(am2, {src, sign, offset}).
-record(am3, {src, sign, offset}).

%%% Instructions:

-record(alu, {aluop, s, dst, src, am1}).% cond not included
-record(b_fun, {'fun', linkage}).	% known tailcall; cond not included
-record(b_label, {'cond', label}).	% local jump
-record(bl, {'fun', sdesc, linkage}).	% known recursive call; cond not included
-record(blx, {src, sdesc}).		% computed recursive call; cond not included
-record(cmp, {cmpop, src, am1}).	% cond not included
-record(comment, {term}).
-record(label, {label}).
-record(load, {ldop, dst, am2}).	% cond not included; ldrh/ldrsh not included
-record(ldrsb, {dst, am3}).		% cond not included
-record(move, {movop, s, dst, am1}).	% cond not included
-record(pseudo_bc, {'cond', true_label, false_label, pred}).
-record(pseudo_blr, {}).		% alias for "mov pc,lr" to help cfg
-record(pseudo_bx, {src}).		% alias for "mov pc,src" to help cfg
-record(pseudo_call, {funv, sdesc, contlab, linkage}).
-record(pseudo_call_prepare, {nrstkargs}).
-record(pseudo_li, {dst, imm, label}).	% pre-generated label for use by the assembler
-record(pseudo_move, {dst, src}).
-record(pseudo_switch, {jtab, index, labels}).
-record(pseudo_tailcall, {funv, arity, stkargs, linkage}).
-record(pseudo_tailcall_prepare, {}).
-record(smull, {dstlo, dsthi, src1, src2}). % cond not included, s not included
-record(store, {stop, src, am2}).	% cond not included; strh not included

%%% Function definitions.

-include("../misc/hipe_consttab.hrl").

-record(defun, {mfa :: mfa(), formals, code,
	       	data	  :: hipe_consttab(),
	        isclosure :: boolean(),
		isleaf    :: boolean(),
		var_range, label_range}).