Changes in directory llvm/lib/Support:
StringMap.cpp updated: 1.12 -> 1.13
---
Log message:
stringmap memory managed with malloc now
---
Diffs of the changes: (+1 -1)
StringMap.cpp |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Support/StringMap.cpp
diff -u llv
Changes in directory llvm/lib/Support:
StringMap.cpp updated: 1.11 -> 1.12
---
Log message:
use calloc instead of new/memset, it is more efficient
---
Diffs of the changes: (+2 -4)
StringMap.cpp |6 ++
1 files changed, 2 insertions(+), 4 deletions(-)
Index: llvm/lib/Support/Strin
Changes in directory llvm/lib/Support:
StringMap.cpp updated: 1.10 -> 1.11
---
Log message:
Extend StringMap to support being initialized as completely empty. When
initialized this way, they do not do a malloc to allocate their buckets.
---
Diffs of the changes: (+22 -2)
StringMap.cpp |
Changes in directory llvm/lib/Support:
StringMap.cpp updated: 1.9 -> 1.10
---
Log message:
greatly reduce hte default size of stringmap.
---
Diffs of the changes: (+1 -1)
StringMap.cpp |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Support/StringMap.cpp
diff -u
Changes in directory llvm/lib/Support:
StringMap.cpp updated: 1.8 -> 1.9
---
Log message:
Add support for removing elements out of StringMap.
---
Diffs of the changes: (+52 -11)
StringMap.cpp | 63 +++---
1 files changed, 52 insertions(
Changes in directory llvm/lib/Support:
StringMap.cpp updated: 1.7 -> 1.8
---
Log message:
Replace the ugly FindValue method with STL-like find methods.
---
Diffs of the changes: (+43 -0)
StringMap.cpp | 43 +++
1 files changed, 43 insertions(+)
I
Changes in directory llvm/lib/Support:
StringMap.cpp updated: 1.6 -> 1.7
---
Log message:
remove support for stringmap visitors now that iterators exist.
---
Diffs of the changes: (+0 -13)
StringMap.cpp | 13 -
1 files changed, 13 deletions(-)
Index: llvm/lib/Support/String
Changes in directory llvm/lib/Support:
StringMap.cpp updated: 1.5 -> 1.6
---
Log message:
add support for iterators.
---
Diffs of the changes: (+9 -2)
StringMap.cpp | 11 +--
1 files changed, 9 insertions(+), 2 deletions(-)
Index: llvm/lib/Support/StringMap.cpp
diff -u llvm/lib
Changes in directory llvm/lib/Support:
StringMap.cpp updated: 1.4 -> 1.5
CStringMap.cpp (r1.4) removed
---
Log message:
Rename CStringMap -> StringMap, since it now supports nul characters in the
strings.
---
Diffs of the changes: (+8 -8)
StringMap.cpp | 16
1 files chan