Skip to content

Commit

Permalink
src: use struct as arguments to node::Assert
Browse files Browse the repository at this point in the history
This just makes the code a bit more obvious (subjectively).

PR-URL: #25869
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
  • Loading branch information
addaleax committed Feb 3, 2019
1 parent 1f6acbb commit f027290
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 18 deletions.
18 changes: 6 additions & 12 deletions src/node_errors.cc
Original file line number Diff line number Diff line change
Expand Up @@ -166,23 +166,17 @@ void AppendExceptionLine(Environment* env,
ABORT_NO_BACKTRACE();
}

[[noreturn]] void Assert(const char* const (*args)[4]) {
auto filename = (*args)[0];
auto linenum = (*args)[1];
auto message = (*args)[2];
auto function = (*args)[3];

[[noreturn]] void Assert(const AssertionInfo& info) {
char name[1024];
GetHumanReadableProcessName(&name);

fprintf(stderr,
"%s: %s:%s:%s%s Assertion `%s' failed.\n",
"%s: %s:%s%s Assertion `%s' failed.\n",
name,
filename,
linenum,
function,
*function ? ":" : "",
message);
info.file_line,
info.function,
*info.function ? ":" : "",
info.message);
fflush(stderr);

Abort();
Expand Down
20 changes: 14 additions & 6 deletions src/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,15 @@ extern bool v8_initialized;
// whether V8 is initialized.
void LowMemoryNotification();

// The slightly odd function signature for Assert() is to ease
// instruction cache pressure in calls from CHECK.
// The reason that Assert() takes a struct argument instead of individual
// const char*s is to ease instruction cache pressure in calls from CHECK.
struct AssertionInfo {
const char* file_line; // filename:line
const char* message;
const char* function;
};
[[noreturn]] void Assert(const AssertionInfo& info);
[[noreturn]] void Abort();
[[noreturn]] void Assert(const char* const (*args)[4]);
void DumpBacktrace(FILE* fp);

#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
Expand Down Expand Up @@ -120,9 +125,12 @@ void DumpBacktrace(FILE* fp);
#define CHECK(expr) \
do { \
if (UNLIKELY(!(expr))) { \
static const char* const args[] = { __FILE__, STRINGIFY(__LINE__), \
#expr, PRETTY_FUNCTION_NAME }; \
node::Assert(&args); \
/* Make sure that this struct does not end up in inline code, but */ \
/* rather in a read-only data section when modifying this code. */ \
static const node::AssertionInfo args = { \
__FILE__ ":" STRINGIFY(__LINE__), #expr, PRETTY_FUNCTION_NAME \
}; \
node::Assert(args); \
} \
} while (0)

Expand Down

0 comments on commit f027290

Please sign in to comment.