ADT
arm-eh
ast-experimental
enum
forall-pointer-decay
jacob/cs343-translation
new-ast-unique-expr
pthread-emulation
qualifiedEnum
Last change
on this file since 2a59655 was f57faf6f, checked in by Andrew Beach <ajbeach@…>, 5 years ago |
Added a new-ast tools for code locations. The fill pass is being used the check pass is catching lots of missing locations when you enable it.
|
-
Property mode
set to
100644
|
File size:
894 bytes
|
Line | |
---|
1 | //
|
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
3 | //
|
---|
4 | // The contents of this file are covered under the licence agreement in the
|
---|
5 | // file "LICENCE" distributed with Cforall.
|
---|
6 | //
|
---|
7 | // CodeLocationTools.hpp -- Additional tools for code locations.
|
---|
8 | //
|
---|
9 | // Author : Andrew Beach
|
---|
10 | // Created On : Fri Dec 4 15:35:00 2020
|
---|
11 | // Last Modified By : Andrew Beach
|
---|
12 | // Last Modified On : Fri Dec 4 16:18:00 2020
|
---|
13 | // Update Count : 0
|
---|
14 | //
|
---|
15 |
|
---|
16 | #pragma once
|
---|
17 |
|
---|
18 | // Additional tools for code locations.
|
---|
19 |
|
---|
20 | namespace ast {
|
---|
21 | struct TranslationUnit;
|
---|
22 | }
|
---|
23 |
|
---|
24 | /// Search the translation unit for unset code locations and print information
|
---|
25 | /// on them. Abort if any unset code locations are found.
|
---|
26 | void checkAllCodeLocations( ast::TranslationUnit const & unit );
|
---|
27 |
|
---|
28 | // Assign a nearby code-location to any unset code locations in the forest.
|
---|
29 | void forceFillCodeLocations( ast::TranslationUnit & unit );
|
---|
Note:
See
TracBrowser
for help on using the repository browser.