Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
G
glog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
glog
Commits
a835da8e
Commit
a835da8e
authored
Jul 06, 2017
by
Shinichiro Hamaji
Committed by
GitHub
Jul 06, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #158 from sergiud/zero-allocation
[RFC] reduce heap memory allocations to zero
parents
96f66565
2df0ca34
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
72 additions
and
1 deletion
+72
-1
CMakeLists.txt
CMakeLists.txt
+26
-0
config.h.cmake.in
src/config.h.cmake.in
+3
-0
logging.h.in
src/glog/logging.h.in
+7
-0
logging.cc
src/logging.cc
+31
-0
logging_unittest.cc
src/logging_unittest.cc
+3
-1
logging_unittest.err
src/logging_unittest.err
+2
-0
No files found.
CMakeLists.txt
View file @
a835da8e
...
...
@@ -28,6 +28,7 @@ set (CPACK_PACKAGE_VERSION ${GLOG_VERSION})
option
(
WITH_GFLAGS
"Use gflags"
ON
)
option
(
WITH_THREADS
"Enable multithreading support"
ON
)
option
(
WITH_TLS
"Enable Thread Local Storage (TLS) support"
ON
)
list
(
APPEND CMAKE_MODULE_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake
)
...
...
@@ -190,6 +191,31 @@ using namespace Outer::Inner;;
int main() { return i; }
"
HAVE_NAMESPACES
)
check_cxx_source_compiles
(
"
__declspec(thread) int tls;
int main() { }
"
HAVE_MSVC_TLS
)
check_cxx_source_compiles
(
"
thread_local int tls;
int main() { }
"
HAVE_CXX11_TLS
)
check_cxx_source_compiles
(
"
__attribute__((thread)) int tls;
int main() { }
"
HAVE_CYGWIN_TLS
)
if
(
WITH_TLS
)
if
(
HAVE_CYGWIN_TLS
)
set
(
GLOG_THREAD_LOCAL_STORAGE
"__attribute__((thread))"
)
elseif
(
HAVE_MSVC_TLS
)
set
(
GLOG_THREAD_LOCAL_STORAGE
"__declspec(thread)"
)
elseif
(
HAVE_CXX11_TLS
)
set
(
GLOG_THREAD_LOCAL_STORAGE thread_local
)
endif
(
HAVE_CYGWIN_TLS
)
endif
(
WITH_TLS
)
set
(
_PC_FIELDS
"gregs[REG_PC]"
"gregs[REG_EIP]"
...
...
src/config.h.cmake.in
View file @
a835da8e
...
...
@@ -174,6 +174,9 @@
/* location of source code */
#cmakedefine TEST_SRC_DIR ${TEST_SRC_DIR}
/* Define to necessary thread-local storage attribute. */
#cmakedefine GLOG_THREAD_LOCAL_STORAGE ${GLOG_THREAD_LOCAL_STORAGE}
/* Version number of package */
#cmakedefine VERSION
...
...
src/glog/logging.h.in
View file @
a835da8e
...
...
@@ -1113,6 +1113,12 @@ class GOOGLE_GLOG_DLL_DECL LogStreamBuf : public std::streambuf {
LogStreamBuf(char *buf, int len) {
setp(buf, buf + len - 2);
}
// Resets the buffer. Useful if we reuse it by means of TLS.
void reset() {
setp(pbase(), epptr());
}
// This effectively ignores overflow.
virtual int_type overflow(int_type ch) {
return ch;
...
...
@@ -1175,6 +1181,7 @@ public:
size_t pcount() const { return streambuf_.pcount(); }
char* pbase() const { return streambuf_.pbase(); }
char* str() const { return pbase(); }
void reset() { streambuf_.reset(); }
private:
LogStream(const LogStream&);
...
...
src/logging.cc
View file @
a835da8e
...
...
@@ -331,6 +331,7 @@ const size_t LogMessage::kMaxLogMessageLen = 30000;
struct
LogMessage
::
LogMessageData
{
LogMessageData
();
void
reset
();
int
preserved_errno_
;
// preserved errno
// Buffer space; contains complete message text.
...
...
@@ -1145,10 +1146,22 @@ static bool fatal_msg_exclusive = true;
static
LogMessage
::
LogMessageData
fatal_msg_data_exclusive
;
static
LogMessage
::
LogMessageData
fatal_msg_data_shared
;
#ifdef GLOG_THREAD_LOCAL_STORAGE
// Static thread-local log data space to use, because typically at most one
// LogMessageData object exists (in this case glog makes zero heap memory
// allocations).
static
GLOG_THREAD_LOCAL_STORAGE
bool
thread_data_available
=
true
;
static
GLOG_THREAD_LOCAL_STORAGE
LogMessage
::
LogMessageData
thread_msg_data
;
#endif // defined(GLOG_THREAD_LOCAL_STORAGE)
LogMessage
::
LogMessageData
::
LogMessageData
()
:
stream_
(
message_text_
,
LogMessage
::
kMaxLogMessageLen
,
0
)
{
}
void
LogMessage
::
LogMessageData
::
reset
()
{
stream_
.
reset
();
}
LogMessage
::
LogMessage
(
const
char
*
file
,
int
line
,
LogSeverity
severity
,
int
ctr
,
void
(
LogMessage
::*
send_method
)())
:
allocated_
(
NULL
)
{
...
...
@@ -1201,8 +1214,22 @@ void LogMessage::Init(const char* file,
void
(
LogMessage
::*
send_method
)())
{
allocated_
=
NULL
;
if
(
severity
!=
GLOG_FATAL
||
!
exit_on_dfatal
)
{
#ifdef GLOG_THREAD_LOCAL_STORAGE
// No need for locking, because this is thread local.
if
(
thread_data_available
)
{
thread_data_available
=
false
;
data_
=
&
thread_msg_data
;
// Make sure to clear log data since it may have been used and filled with
// data. We do not want to append the new message to the previous one.
data_
->
reset
();
}
else
{
allocated_
=
new
LogMessageData
();
data_
=
allocated_
;
}
#else // !defined(GLOG_THREAD_LOCAL_STORAGE)
allocated_
=
new
LogMessageData
();
data_
=
allocated_
;
#endif // defined(GLOG_THREAD_LOCAL_STORAGE)
data_
->
first_fatal_
=
false
;
}
else
{
MutexLock
l
(
&
fatal_msg_lock
);
...
...
@@ -1271,6 +1298,10 @@ void LogMessage::Init(const char* file,
LogMessage
::~
LogMessage
()
{
Flush
();
#ifdef GLOG_THREAD_LOCAL_STORAGE
if
(
data_
==
&
thread_msg_data
)
thread_data_available
=
true
;
#endif // defined(GLOG_THREAD_LOCAL_STORAGE)
delete
allocated_
;
}
...
...
src/logging_unittest.cc
View file @
a835da8e
...
...
@@ -272,12 +272,14 @@ void TestLogging(bool check_counts) {
LOG
(
ERROR
)
<<
string
(
"foo"
)
<<
' '
<<
j
<<
' '
<<
setw
(
10
)
<<
j
<<
" "
<<
setw
(
1
)
<<
hex
<<
j
;
LOG
(
ERROR
)
<<
(
&
LOG
(
ERROR
)
&&
0
)
<<
" nested LOG"
;
LogMessage
(
"foo"
,
LogMessage
::
kNoLogPrefix
,
GLOG_INFO
).
stream
()
<<
"no prefix"
;
if
(
check_counts
)
{
CHECK_EQ
(
base_num_infos
+
14
,
LogMessage
::
num_messages
(
GLOG_INFO
));
CHECK_EQ
(
base_num_warning
+
3
,
LogMessage
::
num_messages
(
GLOG_WARNING
));
CHECK_EQ
(
base_num_errors
+
1
5
,
LogMessage
::
num_messages
(
GLOG_ERROR
));
CHECK_EQ
(
base_num_errors
+
1
7
,
LogMessage
::
num_messages
(
GLOG_ERROR
));
}
}
...
...
src/logging_unittest.err
View file @
a835da8e
...
...
@@ -74,6 +74,8 @@ WDATE TIME__ THREADID logging_unittest.cc:LINE] log_if this
IDATE TIME__ THREADID logging_unittest.cc:LINE] array
IDATE TIME__ THREADID logging_unittest.cc:LINE] const array
EDATE TIME__ THREADID logging_unittest.cc:LINE] foo 1000 0000001000 3e8
EDATE TIME__ THREADID logging_unittest.cc:LINE] 0 nested LOG
EDATE TIME__ THREADID logging_unittest.cc:LINE]
no prefix
IDATE TIME__ THREADID logging_unittest.cc:LINE] RAW: foo bar 10 3.400000
WDATE TIME__ THREADID logging_unittest.cc:LINE] RAW: array
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment