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

Side by Side Diff: src/hydrogen-instructions.cc

Issue 1317383002: Crankshaft is now able to compile top level code even if there is a ScriptContext. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebasing Created 5 years, 3 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 unified diff | Download patch
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/hydrogen-instructions.h" 5 #include "src/hydrogen-instructions.h"
6 6
7 #include "src/base/bits.h" 7 #include "src/base/bits.h"
8 #include "src/double.h" 8 #include "src/double.h"
9 #include "src/elements.h" 9 #include "src/elements.h"
10 #include "src/factory.h" 10 #include "src/factory.h"
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after
873 case HValue::kLoadContextSlot: 873 case HValue::kLoadContextSlot:
874 case HValue::kLoadFunctionPrototype: 874 case HValue::kLoadFunctionPrototype:
875 case HValue::kLoadKeyed: 875 case HValue::kLoadKeyed:
876 case HValue::kLoadKeyedGeneric: 876 case HValue::kLoadKeyedGeneric:
877 case HValue::kMathFloorOfDiv: 877 case HValue::kMathFloorOfDiv:
878 case HValue::kMaybeGrowElements: 878 case HValue::kMaybeGrowElements:
879 case HValue::kMod: 879 case HValue::kMod:
880 case HValue::kMul: 880 case HValue::kMul:
881 case HValue::kOsrEntry: 881 case HValue::kOsrEntry:
882 case HValue::kPower: 882 case HValue::kPower:
883 case HValue::kPrologue:
883 case HValue::kRor: 884 case HValue::kRor:
884 case HValue::kSar: 885 case HValue::kSar:
885 case HValue::kSeqStringSetChar: 886 case HValue::kSeqStringSetChar:
886 case HValue::kShl: 887 case HValue::kShl:
887 case HValue::kShr: 888 case HValue::kShr:
888 case HValue::kSimulate: 889 case HValue::kSimulate:
889 case HValue::kStackCheck: 890 case HValue::kStackCheck:
890 case HValue::kStoreContextSlot: 891 case HValue::kStoreContextSlot:
891 case HValue::kStoreKeyedGeneric: 892 case HValue::kStoreKeyedGeneric:
892 case HValue::kStringAdd: 893 case HValue::kStringAdd:
(...skipping 3827 matching lines...) Expand 10 before | Expand all | Expand 10 after
4720 case HObjectAccess::kExternalMemory: 4721 case HObjectAccess::kExternalMemory:
4721 os << "[external-memory]"; 4722 os << "[external-memory]";
4722 break; 4723 break;
4723 } 4724 }
4724 4725
4725 return os << "@" << access.offset(); 4726 return os << "@" << access.offset();
4726 } 4727 }
4727 4728
4728 } // namespace internal 4729 } // namespace internal
4729 } // namespace v8 4730 } // namespace v8
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698