aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use R10 in atomic compare and exchange for the rlwinm.Bernhard Schommer2015-09-221-2/+2
|
* Fix typo dest -> dstMichael Schmidt2015-09-221-9/+9
|
* Merge pull request #54 from AbsInt/atomic-builtinsBernhard Schommer2015-09-213-8/+83
|\ | | | | Atomic builtins
| * Removed unnecessary move register and use the correct register as base value ↵Bernhard Schommer2015-09-211-3/+2
| | | | | | | | for the rlwinm.
| * Applied a few simplification for temporary registers.Bernhard Schommer2015-09-212-16/+16
| |
| * Integrated the fix of commit de40fce9c16ced8d23389cbcfc55ef6d99466fe8 for ↵Bernhard Schommer2015-09-171-11/+3
| | | | | | | | the atomics.
| * Merge branch 'master' into atomic-builtinsBernhard Schommer2015-09-1710-26/+78
| |\
| * | Removed usage of bne and removed duplicated code for return values of atomics.Bernhard Schommer2015-09-154-52/+19
| | | | | | | | | | | | | | | | | | | | | Instead of introducing a new bne instruction in Asm.v and the TargetPrinter.ml I use the equivalent bf instruction. The duplicated code is due to unused return values of builtins. Now we only emit the additional code for the return value if the return value is used instead of duplicating the whole emiting sequence.
| * | Use fix registers for atomic builtins.Bernhard Schommer2015-09-143-15/+47
| | | | | | | | | | | | | | | | | | In order to avoid clashes during register allocation etc. The builtins now use fixed registers and mark additional registers as destroyed for temporaries.
| * | Use the gcc version of atomic load.Bernhard Schommer2015-09-114-4/+10
| | |
| * | Type of argument for Pbne is label not atom.Bernhard Schommer2015-09-101-1/+1
| | |
| * | Merge branch 'master' into atomic-builtinsBernhard Schommer2015-09-101-1/+1
| |\ \
| * | | Added builtin for atomic compare and exchange.Bernhard Schommer2015-09-104-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | The new __builtin_atomic_compare_exchange(int *ptr,int *exp,int *dsr); writes dsr into ptr if ptr is equal to exp and returns true if ptr is not equal to exp it writes ptr into exp and returns false.
| * | | Merge branch 'master' into atomic-builtinsBernhard Schommer2015-09-103-4/+41
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: powerpc/CBuiltins.ml
| * | | | Add builtin for atomic load.Bernhard Schommer2015-09-092-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement the new __builtin_atomic_load(int *a, int *b); which stores *a in *b. This differs from the atomic_load of the GCC, since the PPC ISA manual states that you must jump before the load again if it fails.
| * | | | Added an builtin for the atomic exchange operation.Bernhard Schommer2015-09-095-7/+31
| | | | | | | | | | | | | | | | | | | | | | | | | The new builtin __builtin_atomic_exchange(int *a, int *b, int *c) stores *b in *a and sets *c to the old value of *a.
* | | | | Ctypes.composite_of_def: make sure it computes within Coq.Xavier Leroy2015-09-181-3/+3
| | | | | | | | | | | | | | | | | | | | (Suggested by A. Appel.)
* | | | | correct error message for __builtin_dcbtlsMichael Schmidt2015-09-181-1/+1
| |_|_|/ |/| | |
* | | | Added support for bitfields in unions.Bernhard Schommer2015-09-171-6/+42
| | | | | | | | | | | | | | | | | | | | The transformation is the same as the one used for structs but packing always stops after each member.
* | | | Isuue #50: outdated comment on type RTL.function.Xavier Leroy2015-09-151-2/+1
| | | |
* | | | Issue with ignoring the result of non-void builtin functions.Xavier Leroy2015-09-156-15/+32
| | | | | | | | | | | | | | | | In RTL and beyond, the result of a builtin function that has return type different from "void" must be BR, never BR_none. Otherwise, we get compile-time fatal errors, either in Asmexpand or in Lineartyping.
* | | | Use standard headers instead of defining our own ptrdiff_t and uintptr_t.Xavier Leroy2015-09-141-2/+2
| | | |
* | | | Fix uninitialized array in do_bench (report by V. Laporte).Xavier Leroy2015-09-141-1/+1
| |_|/ |/| |
* | | Name of stwcx. instruction should be printed Pstwcx_.Bernhard Schommer2015-09-101-1/+1
| |/ |/|
* | Changed the first argument of builtin_isel to bool.Bernhard Schommer2015-09-101-1/+1
|/
* Global register variables result in fatal error.Bernhard Schommer2015-09-081-1/+1
| | | | | If they only report an error an assertion failure in Reame.ml was triggered.
* Added builtin for isel.Bernhard Schommer2015-09-085-1/+13
| | | | | The builtin_isel function takes a _Bool as first argument and returns either the second or the third depending on the value of the _Bool.
* Added builtins for call frame and return address.Bernhard Schommer2015-09-076-9/+29
| | | | | | This builtins can be used to get the call frame address and the return address. To correctly compute the load address of the return address the allocframe is extended to contain the offset of the return address.
* Added builtin for the cmpb instruction.Bernhard Schommer2015-09-075-0/+9
|
* Various changes in the debug printer.Bernhard Schommer2015-09-074-11/+11
| | | | | | The debug printer now uses udata for member sizes since structs can have a size larger than 255 bytes. Also functions that are inlined no longer have an high and low pc in their abbreviation entry.
* Set structure declaration field to None.Bernhard Schommer2015-09-071-4/+4
| | | | | In the case of a structure definition we do not need to set the structure declaration field set to false.
* Simplified generation of builtins for cache instructions.Bernhard Schommer2015-09-072-60/+21
| | | | | | The cache instructions need no special constraint on the address argument. Therefore also the generation of the address is no longer needed.
* Fixed typo in AsmToJSON for instruction Pstfdu.Bernhard Schommer2015-09-041-1/+1
|
* Added json printing of Pbctr.Bernhard Schommer2015-09-031-1/+1
|
* Fixed minor typo in printing of the Plbzx instruction in AsmToJSON.Bernhard Schommer2015-09-031-1/+1
|
* Fixed minor typo in AsmToJSON.Bernhard Schommer2015-09-031-1/+1
|
* Added builtin for mbar instruction.Bernhard Schommer2015-09-036-0/+15
| | | | This commit adds a builtin function for the mbar instruction.
* New builtin for dcbz instruction.Bernhard Schommer2015-09-035-24/+33
| | | | | | This commit adds a builtin for the dcbz instructions. Additionally the dcbt,dcbtst,dcbtls and icbtls instruction are changed to their actually form all taking one additional register in Asm.v.
* Added builtin for the icbtls instruction.Bernhard Schommer2015-09-026-0/+19
| | | | This commit adds a builtin for the icbtls instruction.
* Allow only CT values of 0 and 2 in dcbtls instruction.Bernhard Schommer2015-09-022-4/+4
| | | | | The dcbtls instruction allows only the values 0 and 2 according to the PPC Isa.
* Print p_int_constant instead of p_int in AsmToJSON.Bernhard Schommer2015-09-021-5/+5
|
* Added builtin for dcbtlsBernhard Schommer2015-09-026-13/+63
| | | | | | THis commit adds a builtin function for the dcbtls instruction. Additionaly it changes the printing of the dcbt and dcbtst instruction to embedded mode and adds support for different address variants.
* Added the gcc builtin prefetch.Bernhard Schommer2015-09-016-0/+25
| | | | | | This commit implements the gcc __builtin_prefetch in a form with all arguments for the powerpc architecture. The resulting instructions are the dcbt and dcbtst instructions in Server Category.
* Merge branch 'new-builtins'Bernhard Schommer2015-09-0193-2597/+4014
|\
| * Upgrade the ARM port to the new builtins.Xavier Leroy2015-08-249-211/+260
| |
| * Improve error reporting in Asmexpand.Xavier Leroy2015-08-243-31/+74
| |
| * Some "feel good" proofs about avail sets.Xavier Leroy2015-08-231-0/+171
| |
| * Track the locations of local variables using EF_debug annotations.Xavier Leroy2015-08-2312-45/+1030
| | | | | | | | | | | | | | | | | | | | | | | | | | | | SimplLocals: - record locations of stack-allocated variables with annotations (of kind 5) at the beginning of the function; - mark every assignment to non-stack-allocated variables with an annotation of kind 2. Debugvar: (new pass!) - perform availability analysis for debug annotations of kind 2 - insert "start of live range" and "end of live range" annotations (kind 3 and 4) to delimit intervals of PCs where the location of a local variable is known.
| * Renaming {BA,BR}_longofwords -> {BA,BR}_splitlong.Xavier Leroy2015-08-2227-125/+114
| | | | | | | | | | | | | | | | Use EF_debug instead of EF_annot for line number annotations. Introduce PrintAsmaux.print_debug_info (very incomplete). powerpc/Asmexpand: revise expand_memcpy_small.
| * Adapt the PowerPC port to the new builtin representation.Xavier Leroy2015-08-2111-260/+285
| | | | | | | | | | | | | | __builtin_get_spr() and __builtin_set_spr() work, but horrible error message if the SPR argument is not a constant. powerpc/AsmToJSON.ml needs updating.