diff options
author | Tristan Gingold <tgingold@free.fr> | 2014-11-04 20:14:19 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2014-11-04 20:14:19 +0100 |
commit | 9c195bf5d86d67ea5eb419ccf6e48dc153e57c68 (patch) | |
tree | 575346e529b99e26382b4a06f6ff2caa0b391ab2 /ortho/mcode/ortho_mcode-jit.adb | |
parent | 184a123f91e07c927292d67462561dc84f3a920d (diff) | |
download | ghdl-9c195bf5d86d67ea5eb419ccf6e48dc153e57c68.tar.gz ghdl-9c195bf5d86d67ea5eb419ccf6e48dc153e57c68.tar.bz2 ghdl-9c195bf5d86d67ea5eb419ccf6e48dc153e57c68.zip |
Move sources to src/ subdirectory.
Diffstat (limited to 'ortho/mcode/ortho_mcode-jit.adb')
-rw-r--r-- | ortho/mcode/ortho_mcode-jit.adb | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/ortho/mcode/ortho_mcode-jit.adb b/ortho/mcode/ortho_mcode-jit.adb deleted file mode 100644 index 7e845cc6e..000000000 --- a/ortho/mcode/ortho_mcode-jit.adb +++ /dev/null @@ -1,28 +0,0 @@ -with Ada.Unchecked_Conversion; - -with Ortho_Code.Binary; -with Binary_File; use Binary_File; -with Binary_File.Memory; - -package body Ortho_Mcode.Jit is - -- Set address of non-defined global variables or functions. - procedure Set_Address (Decl : O_Dnode; Addr : Address) - is - use Ortho_Code.Binary; - begin - Binary_File.Memory.Set_Symbol_Address - (Get_Decl_Symbol (Ortho_Code.O_Dnode (Decl)), Addr); - end Set_Address; - - -- Get address of a global. - function Get_Address (Decl : O_Dnode) return Address - is - use Ortho_Code.Binary; - - function Conv is new Ada.Unchecked_Conversion - (Source => Pc_Type, Target => Address); - begin - return Conv (Get_Symbol_Vaddr - (Get_Decl_Symbol (Ortho_Code.O_Dnode (Decl)))); - end Get_Address; -end Ortho_Mcode.Jit; |