index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Analysis
/
RegionStore.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Initial support for pointer arithmetic. Only support concrete indexes and
Zhongxing Xu
2009-03-02
1
-0
/
+29
*
Rename AnonTypedRegion to TypedViewRegion.
Ted Kremenek
2009-03-01
1
-3
/
+3
*
Fix <rdar://problem/6611677>: Add basic transfer function support in the static
Ted Kremenek
2009-02-24
1
-2
/
+8
*
Add an example in comments.
Zhongxing Xu
2009-02-20
1
-1
/
+6
*
only track integer and pointer values for now.
Zhongxing Xu
2009-02-19
1
-2
/
+7
*
Convert the offset to signed before making an ElementRegion with it. It seems
Zhongxing Xu
2009-02-19
1
-1
/
+11
*
SymbolicRegions really have unknown sizes.
Zhongxing Xu
2009-02-06
1
-3
/
+1
*
Create ElementRegion when the base is SymbolicRegion. This is like what we do
Zhongxing Xu
2009-02-06
1
-3
/
+14
*
Make SymbolicRegion subclass TypedRegion, for symbols usually have types, so
Zhongxing Xu
2009-02-05
1
-2
/
+4
*
Fix a couple bugs:
Ted Kremenek
2009-01-30
1
-11
/
+18
*
Correct size assumption; fixes a crash on amd64.
Sebastian Redl
2009-01-26
1
-1
/
+2
*
Implement retrieval of the default value of element and field regions.
Zhongxing Xu
2009-01-23
1
-0
/
+9
*
Now this comment should be resolved. See the comments for the KillSet.
Zhongxing Xu
2009-01-23
1
-6
/
+0
*
For now, return UnknownVal() in RegionStore::getElementsSize() for AnonTypedR...
Ted Kremenek
2009-01-22
1
-0
/
+10
*
Add RegionStore support for the implicit object region that 'self' references...
Ted Kremenek
2009-01-22
1
-5
/
+24
*
Fix RegionStore::getLValueElement() to handle the case when the base region i...
Ted Kremenek
2009-01-22
1
-37
/
+50
*
Static analyzer: Remove a bunch of outdated SymbolData objects and
Ted Kremenek
2009-01-22
1
-6
/
+3
*
Combine two branches into one. No functionality change.
Ted Kremenek
2009-01-21
1
-3
/
+1
*
Static Analyzer: Replace LiveSymbols/DeadSymbols sets with a new object calle...
Ted Kremenek
2009-01-21
1
-20
/
+15
*
Get RegionStore to work with the retain/release checker and its test cases.
Ted Kremenek
2009-01-21
1
-20
/
+16
*
add a fixme.
Zhongxing Xu
2009-01-13
1
-0
/
+2
*
Add KillStruct to region store.
Zhongxing Xu
2009-01-13
1
-10
/
+62
*
Invert condition on branch (was causing RegionStore::ArrayToPointer to return...
Ted Kremenek
2009-01-13
1
-1
/
+1
*
Refactor MemRegionManager instance variable into parent class. No functional...
Ted Kremenek
2009-01-07
1
-4
/
+4
*
Return UnknownVal in RegionStoreManager::getSizeInElements() for unsupported ...
Ted Kremenek
2009-01-06
1
-0
/
+1
*
Add a bunch of comments and FIXMEs.
Ted Kremenek
2008-12-24
1
-13
/
+90
*
set region default value if there are not enough init values for array and st...
Zhongxing Xu
2008-12-24
1
-5
/
+5
*
Comment and fixup GDM entries for RegionStore to use unique 'tag classes' to ...
Ted Kremenek
2008-12-24
1
-40
/
+66
*
Lazy bingding for region-store manager.
Zhongxing Xu
2008-12-20
1
-350
/
+183
*
Implement RegionStoreManager::Remove().
Zhongxing Xu
2008-12-16
1
-6
/
+12
*
I think we should getRValueType here. The lvaluetype of an array region is 'p...
Zhongxing Xu
2008-12-14
1
-1
/
+1
*
MemRegion:
Ted Kremenek
2008-12-13
1
-33
/
+48
*
A series of cleanups/fixes motivated by <rdar://problem/6442306>:
Ted Kremenek
2008-12-13
1
-3
/
+13
*
Address some comments on the name lookup/DeclContext patch from Chris
Douglas Gregor
2008-12-11
1
-6
/
+5
*
Unifies the name-lookup mechanisms used in various parts of the AST
Douglas Gregor
2008-12-11
1
-2
/
+7
*
Rename SymbolID to SymbolRef. This is a precursor to some overhauling of the...
Ted Kremenek
2008-12-05
1
-1
/
+1
*
StoreManager::Retrieve and StoreManager::RemoveDeadBindings now take a GRStat...
Ted Kremenek
2008-12-05
1
-19
/
+17
*
Revamp RegionStoreManager::RemoveDeadBindings. This method now does a comple...
Ted Kremenek
2008-12-04
1
-7
/
+131
*
Add comments.
Zhongxing Xu
2008-12-04
1
-0
/
+6
*
Make RegionStoreManager::InitializeArray safe against array sizes that don't ...
Sebastian Redl
2008-12-02
1
-1
/
+2
*
Add support for initializing array with string literal.
Zhongxing Xu
2008-11-30
1
-5
/
+30
*
To be consistent, make the index of the ElementRegion always signed.
Zhongxing Xu
2008-11-29
1
-1
/
+1
*
Fix a serious bug.
Zhongxing Xu
2008-11-28
1
-2
/
+3
*
Use std::make_pair instead of std::pair's ctor.
Zhongxing Xu
2008-11-28
1
-3
/
+2
*
RegionViewMap factory is actually not used. All GDMs should use factories from
Zhongxing Xu
2008-11-27
1
-2
/
+0
*
Fix the fix of revision 59974. Now array-struct.c passes too.
Sebastian Redl
2008-11-24
1
-1
/
+2
*
Fix crash of array bounds checking under 64-bit.
Sebastian Redl
2008-11-24
1
-3
/
+6
*
Add support for AllocaRegion extent with GDM.
Zhongxing Xu
2008-11-24
1
-5
/
+56
*
Strings are NULL terminated. So the region size should plus one.
Zhongxing Xu
2008-11-24
1
-1
/
+1
*
Add a comment about the signedness.
Zhongxing Xu
2008-11-24
1
-0
/
+2
[prev]
[next]