Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: src/ast.h

Issue 1211453002: Reland "Keep a canonical list of shared function infos." (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix alwaysopt Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/arm64/full-codegen-arm64.cc ('k') | src/ast.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast.h
diff --git a/src/ast.h b/src/ast.h
index 61a6ea936963bab05811fc36f53a4ca58bc6f308..3a3d896262b14ddb04b0f7664d895691ff94aff0 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -2512,8 +2512,6 @@ class FunctionLiteral final : public Expression {
bool AllowsLazyCompilation();
bool AllowsLazyCompilationWithoutContext();
- void InitializeSharedInfo(Handle<Code> code);
-
Handle<String> debug_name() const {
if (raw_name_ != NULL && !raw_name_->IsEmpty()) {
return raw_name_->string();
@@ -2548,9 +2546,6 @@ class FunctionLiteral final : public Expression {
inferred_name_ = Handle<String>();
}
- // shared_info may be null if it's not cached in full code.
- Handle<SharedFunctionInfo> shared_info() { return shared_info_; }
-
bool pretenure() { return Pretenure::decode(bitfield_); }
void set_pretenure() { bitfield_ |= Pretenure::encode(true); }
@@ -2632,7 +2627,6 @@ class FunctionLiteral final : public Expression {
private:
const AstRawString* raw_name_;
Handle<String> name_;
- Handle<SharedFunctionInfo> shared_info_;
Scope* scope_;
ZoneList<Statement*>* body_;
const AstString* raw_inferred_name_;
« no previous file with comments | « src/arm64/full-codegen-arm64.cc ('k') | src/ast.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698