summaryrefslogtreecommitdiff
path: root/Source/GPUVerify
Commit message (Collapse)AuthorAge
* Removed code related to "divided" option.Gravatar Unknown2012-08-13
|
* Barrier divergence checking now achieved via precondition.Gravatar Unknown2012-08-13
| | | | | | Race checking assertions contain tags to identify them. Attributes are passed correctly through the dualisation process.
* Unstructured and smart predication are now default options for GPUVerify.Gravatar Unknown2012-08-09
| | | | | | The executable produced by building the project is now GPUVerifyVCGen. Refactored the way "other" functions are handled to make this more easily extensible.
* Revised candidate invariant generation for barrier divergence checking.Gravatar Unknown2012-08-07
|
* Smart block predicator: drop the unused createCandidateInvariants parameterGravatar Peter Collingbourne2012-08-06
|
* GPUVerify: add an option which controls whether to use smart predicationGravatar Peter Collingbourne2012-07-30
|
* Implemented Houdini-based pointer analysis. Made inter-group race checking ↵Gravatar Unknown2012-07-20
| | | | default.
* GPUVerify only generates _READ/WRITE_OFFSET variabls if they do not already ↵Gravatar Unknown2012-07-17
| | | | exist. Did some tidying up of old source code - removed functions related to Y and Z offsets which we do not use any more.
* MergeGravatar Unknown2012-07-10
|\
* | Read and write logging variables are now only generated if they do not ↵Gravatar Unknown2012-07-10
| | | | | | | | already exist.
| * GPUVerify: merge blocks into predecessors before and after predicationGravatar Peter Collingbourne2012-07-09
|/ | | | | | | Because predication produces straight line control flow, merging after predication can dramatically reduce the number of blocks to 1 plus 2-3 per loop. We also merge before predication, which reduces VC complexity by reducing the number of possible values for cur.
* Worked on cross-thread annotations.Gravatar Unknown2012-07-03
|
* Reinstate GPUVerify filesGravatar Peter Collingbourne2012-07-02
|
* MergeGravatar Unknown2012-07-02
|\
* | Started adding support for annotation intrinsics for unstructured programs.Gravatar Unknown2012-07-02
| |
| * MergeGravatar Jason Koenig2012-06-28
| |\ | |/ |/|
| * Dafny: MergeGravatar Jason Koenig2012-06-27
| |\
* | | GPUVerify: modify the variable definition analysis to track and reject ↵Gravatar Peter Collingbourne2012-06-27
| |/ |/| | | | | | | | | self-referential definitions Fixes Bugzilla bug #66.
* | GPUVerify: when building offset predicates, skip unsubstitutable offsetsGravatar Peter Collingbourne2012-06-27
| | | | | | | | Fixes Bugzilla bug #65.
* | GPUVerify: use original expression for undefined variablesGravatar Peter Collingbourne2012-06-27
| | | | | | | | Fixes Bugzilla bug #64.
* | GPUVerify: implement generic reduced strength analysis for loop countersGravatar Peter Collingbourne2012-06-26
| | | | | | | | | | | | | | | | | | | | All counters which we are able to infer facts about now receive a candidate invariant _before_ predication, dualisation etc. This is probably a more natural place to insert such invariants, and means that they are also subject to predication etc. without us having to do anything. Also, kill the id plus constant analyses, which are no longer used.
* | GPUVerify: fix UnstructuredRegion.CmdsChildRegionsGravatar Peter Collingbourne2012-06-26
| |
* | Reinstated support for barrier flags.Gravatar Unknown2012-06-27
| |
* | Undo bad merge.Gravatar afd2012-06-27
| |
* | MergeGravatar Unknown2012-06-26
|\ \
* | | Added support for barrier flags.Gravatar Unknown2012-06-26
| | |
* | | MergeGravatar Unknown2012-06-25
|\ \ \
| | * | GPUVerify: factor all offset predicate handling code into a central locationGravatar Peter Collingbourne2012-06-25
| | | |
| | * | GPUVerify: merge ElementEncodingRaceInstrumenter into RaceInstrumenterGravatar Peter Collingbourne2012-06-22
| |/ /
| * | GPUVerify: implement generic stride constraint generationGravatar Peter Collingbourne2012-06-22
| | |
| * | GPUVerify: make VarDefAnalysis capable of analysing non-constantsGravatar Peter Collingbourne2012-06-22
| | |
| * | GPUVerify: construct BV*_AND and BV*_SUB using MakeBVFunctionCallGravatar Peter Collingbourne2012-06-21
| | |
| * | GPUVerify: replace MayBe{ThreadConfigurationVariable,Gid}Analyser with ↵Gravatar Peter Collingbourne2012-06-21
| | | | | | | | | | | | | | | | | | | | | simple functions based on VariableDefinitionAnalysis This also unbreaks the stride race instrumentation for various subtle reasons.
* | | MergeGravatar Unknown2012-06-21
|\ \ \
| | * | GPUVerify: make BuildNamedDefVisitor and SubstDualisedDefVisitor DuplicatorsGravatar Peter Collingbourne2012-06-20
| |/ /
| * / GPUVerify: fix constant offset invariant generation for the case where no ↵Gravatar Peter Collingbourne2012-06-20
| |/ | | | | | | constants are found
| * Move block predicator to VCGenerationGravatar Peter Collingbourne2012-06-18
| |
| * GPUVerify: block predicator: add a mode which disables procedure predicatesGravatar Peter Collingbourne2012-06-18
| | | | | | | | | | This mode also conditionalises if statements to avoid problems with recursion.
* | Merge with dafny_runtime_checkingGravatar Unknown2012-06-18
|\|
* | Added command line option.Gravatar Unknown2012-06-18
| |
| * GPUVerify: implement is-a-constant analysisGravatar Peter Collingbourne2012-06-15
| | | | | | | | | | | | | | | | | | | | | | | | | | This analysis is used to generate race checking invariants for arbitrary (thread-level) constant offsets, in place of invariant generators for four specific constants (thread-id, global-id, 2D thread-id and 2D global-id) which are subsumed by the new analysis. The main motivation is to be able to recognise offsets used by word level accesses into byte arrays, which are formed from linear combinations of thread IDs and constants. This change allows us to remove the 2D and global size analyses, resulting in a 536-line net reduction in total code size.
| * GPUVerify: revert ac36537a0eb8, as this is in fact a candidate invariant ↵Gravatar Peter Collingbourne2012-06-15
| | | | | | | | | | | | (e.g. consider a loop within a conditional) Pointed out by Ally.
| * GPUVerify: when dualising assume and assert statements, emit two statements ↵Gravatar Peter Collingbourne2012-06-15
|/ | | | instead of a conjunction
* Inter-thread race checking implementation done.Gravatar Unknown2012-06-14
|
* Fix for structured regions.Gravatar Unknown2012-06-14
|
* Progress on inter-group race checkingGravatar Unknown2012-06-14
|
* MergeGravatar Unknown2012-06-14
|\
* | Started work on inter-group race checking.Gravatar Unknown2012-06-14
| |
| * GPUVerify: the non-uniform loop invariant is not a candidate invariantGravatar Peter Collingbourne2012-06-12
| | | | | | | | Thanks to Ally for pointing this out.
| * GPUVerify: emit non-uniform loop candidate invariantGravatar Peter Collingbourne2012-06-11
| |