Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
8f1f592a
Commit
8f1f592a
authored
Oct 09, 2006
by
Christian Würdig
Browse files
added new register type "virtual"
parent
e8bdf4f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/bearch.h
View file @
8f1f592a
...
...
@@ -20,14 +20,15 @@ struct _be_node_factory_t;
typedef
enum
_arch_register_type_t
{
arch_register_type_none
=
0
,
arch_register_type_caller_save
=
1
,
/**< The register must be saved by the caller
upon a function call. It thus can be overwritten
in the called function. */
arch_register_type_callee_save
=
2
,
/**< The register must be saved by the caller
upon a function call. It thus can be overwritten
in the called function. */
arch_register_type_ignore
=
4
,
/**< Do not consider this register when allocating. */
arch_register_type_joker
=
8
,
/**< The emitter can choose an arbitrary register */
arch_register_type_caller_save
=
1
,
/**< The register must be saved by the caller
upon a function call. It thus can be overwritten
in the called function. */
arch_register_type_callee_save
=
2
,
/**< The register must be saved by the caller
upon a function call. It thus can be overwritten
in the called function. */
arch_register_type_ignore
=
4
,
/**< Do not consider this register when allocating. */
arch_register_type_joker
=
8
,
/**< The emitter can choose an arbitrary register */
arch_register_type_virtual
=
16
,
/**< This is just a virtual register */
}
arch_register_type_t
;
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment