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

Side by Side Diff: src/code-factory.h

Issue 1189153002: Revert of [strong] Implement strong mode restrictions on property access (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « src/builtins.cc ('k') | src/code-factory.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 #ifndef V8_CODE_FACTORY_H_ 5 #ifndef V8_CODE_FACTORY_H_
6 #define V8_CODE_FACTORY_H_ 6 #define V8_CODE_FACTORY_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assembler.h" 9 #include "src/assembler.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 14 matching lines...) Expand all
25 25
26 private: 26 private:
27 const Handle<Code> code_; 27 const Handle<Code> code_;
28 const CallInterfaceDescriptor descriptor_; 28 const CallInterfaceDescriptor descriptor_;
29 }; 29 };
30 30
31 31
32 class CodeFactory final { 32 class CodeFactory final {
33 public: 33 public:
34 // Initial states for ICs. 34 // Initial states for ICs.
35 static Callable LoadIC(Isolate* isolate, ContextualMode mode, 35 static Callable LoadIC(Isolate* isolate, ContextualMode mode);
36 LanguageMode language_mode);
37 static Callable LoadICInOptimizedCode(Isolate* isolate, ContextualMode mode, 36 static Callable LoadICInOptimizedCode(Isolate* isolate, ContextualMode mode,
38 LanguageMode language_mode,
39 InlineCacheState initialization_state); 37 InlineCacheState initialization_state);
40 static Callable KeyedLoadIC(Isolate* isolate, LanguageMode language_mode); 38 static Callable KeyedLoadIC(Isolate* isolate);
41 static Callable KeyedLoadICInOptimizedCode( 39 static Callable KeyedLoadICInOptimizedCode(
42 Isolate* isolate, LanguageMode language_mode, 40 Isolate* isolate, InlineCacheState initialization_state);
43 InlineCacheState initialization_state);
44 static Callable CallIC(Isolate* isolate, int argc, 41 static Callable CallIC(Isolate* isolate, int argc,
45 CallICState::CallType call_type); 42 CallICState::CallType call_type);
46 static Callable CallICInOptimizedCode(Isolate* isolate, int argc, 43 static Callable CallICInOptimizedCode(Isolate* isolate, int argc,
47 CallICState::CallType call_type); 44 CallICState::CallType call_type);
48 static Callable StoreIC(Isolate* isolate, LanguageMode mode); 45 static Callable StoreIC(Isolate* isolate, LanguageMode mode);
49 static Callable KeyedStoreIC(Isolate* isolate, LanguageMode mode); 46 static Callable KeyedStoreIC(Isolate* isolate, LanguageMode mode);
50 static Callable KeyedStoreICInOptimizedCode( 47 static Callable KeyedStoreICInOptimizedCode(
51 Isolate* isolate, LanguageMode mode, 48 Isolate* isolate, LanguageMode mode,
52 InlineCacheState initialization_state); 49 InlineCacheState initialization_state);
53 50
(...skipping 25 matching lines...) Expand all
79 static Callable AllocateHeapNumber(Isolate* isolate); 76 static Callable AllocateHeapNumber(Isolate* isolate);
80 77
81 static Callable CallFunction(Isolate* isolate, int argc, 78 static Callable CallFunction(Isolate* isolate, int argc,
82 CallFunctionFlags flags); 79 CallFunctionFlags flags);
83 }; 80 };
84 81
85 } // namespace internal 82 } // namespace internal
86 } // namespace v8 83 } // namespace v8
87 84
88 #endif // V8_CODE_FACTORY_H_ 85 #endif // V8_CODE_FACTORY_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/code-factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698