123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- {
- Copyright (c) 2007-2008, 2013 by Jonas Maebe
- Contains the base types for LLVM
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- ****************************************************************************
- }
- { This Unit contains the base types for LLVM
- }
- unit llvmbase;
- {$i fpcdefs.inc}
- interface
- uses
- strings,globtype,
- cutils,cclasses,aasmbase,cpubase,cpuinfo,cgbase;
- {*****************************************************************************
- Assembler Opcodes
- *****************************************************************************}
- type
- tllvmop = (la_none,
- { terminator instructions }
- la_ret, la_br, la_switch, la_indirectbr,
- la_invoke, la_resume,
- la_unreachable,
- { binary operations }
- la_add, la_fadd, la_sub, la_fsub, la_mul, la_fmul,
- la_udiv,la_sdiv, la_fdiv, la_urem, la_srem, la_frem,
- { bitwise binary operations }
- la_shl, la_lshr, la_ashr, la_and, la_or, la_xor,
- { vector operations }
- la_extractelement, la_insertelement, la_shufflevector,
- { aggregate operations }
- la_extractvalue, la_insertvalue,
- { memory access and memory addressing operations }
- la_alloca,
- la_load, la_store,
- la_fence, la_cmpxchg, la_atomicrmw,
- la_getelementptr,
- { conversion operations }
- la_trunc, la_zext, la_sext, la_fptrunc, la_fpext,
- la_fptoui, la_fptosi, la_uitofp, la_sitofp,
- la_ptrtoint, la_inttoptr,
- la_bitcast,
- { other operations }
- la_icmp, la_fcmp,
- la_phi, la_select, la_call,
- la_va_arg, la_landingpad,
- la_blockaddress,
- { fpc pseudo opcodes }
- la_type, { type definition }
- la_catch, { catch clause of a landingpad }
- la_filter, { filter clause of a landingpad }
- la_x_to_inttoptr, { have to convert something first to int before it can be converted to a pointer }
- la_ptrtoint_to_x, { have to convert a pointer first to int before it can be converted to something else }
- la_asmblock
- );
- tllvmvalueextension = (lve_none, lve_zeroext, lve_signext);
- const
- llvmterminatoropcodes = [la_ret, la_br, la_switch, la_indirectbr,
- la_invoke, la_resume,
- la_unreachable];
- llvmvalueextension2str: array[tllvmvalueextension] of TSymStr = ('',
- ' zeroext',' signext');
- type
- tllvmfpcmp = (
- lfc_invalid,
- lfc_false,
- lfc_oeq, lfc_ogt, lfc_oge, lfc_olt, lfc_ole, lfc_one, lfc_ord,
- lfc_ueq, lfc_ugt, lfc_uge, lfc_ult, lfc_ule, lfc_une, lfc_uno,
- lfc_true);
- {# This should define the array of instructions as string }
- llvmop2strtable=array[tllvmop] of string[14];
- const
- { = max(cpubase.max_operands,7) }
- max_operands = ((-ord(cpubase.max_operands<=7)) and 7) or ((-ord(cpubase.max_operands>7)) and cpubase.max_operands);
- implementation
- uses
- globals,
- systems;
- function llvm_callingconvention_name(c: tproccalloption): ansistring;
- begin
- // TODO (unsupported by LLVM at this time):
- // * pocall_pascal
- // * pocall_oldfpccall
- // * pocall_syscall
- // * pocall_far16
- // * possibly pocall_softfloat
- case c of
- { to prevent errors if none of the defines below is active }
- pocall_none:
- result:='';
- {$ifdef i386}
- pocall_register:
- result:='x86_borlandregcallcc';
- pocall_stdcall:
- result:='x86_stdcallcc';
- {$endif i386}
- {$ifdef x86}
- pocall_interrupt:
- result:='x86_intrcc';
- pocall_sysv_abi_default,
- pocall_sysv_abi_cdecl:
- result:='x86_64_sysvcc';
- pocall_ms_abi_default,
- pocall_ms_abi_cdecl:
- result:='win64cc';
- pocall_vectorcall:
- result:='x86_vectorcallcc';
- pocall_internproc:
- result:=llvm_callingconvention_name(pocall_default);
- {$endif x86}
- {$ifdef avr}
- pocall_interrupt:
- result:='avr_intrcc';
- {$endif avr}
- {$if defined(arm) and not defined(FPC_ARMHF)}
- pocall_hardfloat:
- result:='arm_aapcs_vfpcc';
- {$endif arm and not FPC_ARMHF}
- else
- result:='';
- end;
- end;
- end.
|