Upgrade V8 to version 4.9.385.28

https://chromium.googlesource.com/v8/v8/+/4.9.385.28

FPIIM-449

Change-Id: I4b2e74289d4bf3667f2f3dc8aa2e541f63e26eb4
diff --git a/src/profiler/profile-generator-inl.h b/src/profiler/profile-generator-inl.h
new file mode 100644
index 0000000..85edce2
--- /dev/null
+++ b/src/profiler/profile-generator-inl.h
@@ -0,0 +1,52 @@
+// Copyright 2010 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef V8_PROFILER_PROFILE_GENERATOR_INL_H_
+#define V8_PROFILER_PROFILE_GENERATOR_INL_H_
+
+#include "src/profiler/profile-generator.h"
+
+namespace v8 {
+namespace internal {
+
+CodeEntry::CodeEntry(Logger::LogEventsAndTags tag, const char* name,
+                     const char* name_prefix, const char* resource_name,
+                     int line_number, int column_number,
+                     JITLineInfoTable* line_info, Address instruction_start)
+    : bit_field_(TagField::encode(tag) |
+                 BuiltinIdField::encode(Builtins::builtin_count)),
+      name_prefix_(name_prefix),
+      name_(name),
+      resource_name_(resource_name),
+      line_number_(line_number),
+      column_number_(column_number),
+      script_id_(v8::UnboundScript::kNoScriptId),
+      position_(0),
+      bailout_reason_(kEmptyBailoutReason),
+      deopt_reason_(kNoDeoptReason),
+      deopt_position_(SourcePosition::Unknown()),
+      line_info_(line_info),
+      instruction_start_(instruction_start) {}
+
+
+ProfileNode::ProfileNode(ProfileTree* tree, CodeEntry* entry)
+    : tree_(tree),
+      entry_(entry),
+      self_ticks_(0),
+      children_(CodeEntriesMatch),
+      id_(tree->next_node_id()),
+      line_ticks_(LineTickMatch) {}
+
+
+inline unsigned ProfileNode::function_id() const {
+  return tree_->GetFunctionId(this);
+}
+
+
+inline Isolate* ProfileNode::isolate() const { return tree_->isolate(); }
+
+}  // namespace internal
+}  // namespace v8
+
+#endif  // V8_PROFILER_PROFILE_GENERATOR_INL_H_