summaryrefslogtreecommitdiff
path: root/src/util.cc
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2015-03-03 15:16:07 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2015-03-05 20:44:19 +0100
commitc9ee654290d4b5f99855e06ff64a1cb8ed3e50b4 (patch)
tree00fe46419b3a153bad25ff41709ad642d09f1647 /src/util.cc
parent364cc7e08a5d4b74891362f837ff9c34844c3d35 (diff)
downloadnode-new-c9ee654290d4b5f99855e06ff64a1cb8ed3e50b4.tar.gz
src: simplify node::Utf8Value()
* Remove kStorageSize constant. * Remove superfluous local variable and reinterpret_cast. * Reorder data members so the length field and data pointer (if not the data itself) fit in a single cache line. PR-URL: https://github.com/iojs/io.js/pull/1042 Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Diffstat (limited to 'src/util.cc')
-rw-r--r--src/util.cc21
1 files changed, 8 insertions, 13 deletions
diff --git a/src/util.cc b/src/util.cc
index 1e8d801dba..a0bd077a93 100644
--- a/src/util.cc
+++ b/src/util.cc
@@ -1,11 +1,10 @@
#include "util.h"
-
#include "string_bytes.h"
namespace node {
Utf8Value::Utf8Value(v8::Isolate* isolate, v8::Handle<v8::Value> value)
- : length_(0), str_(nullptr) {
+ : length_(0), str_(str_st_) {
if (value.IsEmpty())
return;
@@ -15,19 +14,15 @@ Utf8Value::Utf8Value(v8::Isolate* isolate, v8::Handle<v8::Value> value)
// Allocate enough space to include the null terminator
size_t len = StringBytes::StorageSize(val_, UTF8) + 1;
-
- char* str;
- if (len > kStorageSize)
- str = static_cast<char*>(malloc(len));
- else
- str = str_st_;
- CHECK_NE(str, NULL);
+ if (len > sizeof(str_st_)) {
+ str_ = static_cast<char*>(malloc(len));
+ CHECK_NE(str_, nullptr);
+ }
const int flags =
v8::String::NO_NULL_TERMINATION | v8::String::REPLACE_INVALID_UTF8;
- length_ = val_->WriteUtf8(str, len, 0, flags);
- str[length_] = '\0';
-
- str_ = reinterpret_cast<char*>(str);
+ length_ = val_->WriteUtf8(str_, len, 0, flags);
+ str_[length_] = '\0';
}
+
} // namespace node