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

Side by Side Diff: src/isolate.h

Issue 552803002: Get CallInterfaceDescriptor directly from CodeStub. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
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_ISOLATE_H_ 5 #ifndef V8_ISOLATE_H_
6 #define V8_ISOLATE_H_ 6 #define V8_ISOLATE_H_
7 7
8 #include "include/v8-debug.h" 8 #include "include/v8-debug.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/assert-scope.h" 10 #include "src/assert-scope.h"
(...skipping 18 matching lines...) Expand all
29 namespace base { 29 namespace base {
30 class RandomNumberGenerator; 30 class RandomNumberGenerator;
31 } 31 }
32 32
33 namespace internal { 33 namespace internal {
34 34
35 class Bootstrapper; 35 class Bootstrapper;
36 class CallInterfaceDescriptorData; 36 class CallInterfaceDescriptorData;
37 class CodeGenerator; 37 class CodeGenerator;
38 class CodeRange; 38 class CodeRange;
39 class CodeStubInterfaceDescriptor; 39 class CodeStubDescriptor;
40 class CodeTracer; 40 class CodeTracer;
41 class CompilationCache; 41 class CompilationCache;
42 class ConsStringIteratorOp; 42 class ConsStringIteratorOp;
43 class ContextSlotCache; 43 class ContextSlotCache;
44 class Counters; 44 class Counters;
45 class CpuFeatures; 45 class CpuFeatures;
46 class CpuProfiler; 46 class CpuProfiler;
47 class DeoptimizerData; 47 class DeoptimizerData;
48 class Deserializer; 48 class Deserializer;
49 class EmptyStatement; 49 class EmptyStatement;
(...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after
1263 unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_; 1263 unibrow::Mapping<unibrow::Ecma262UnCanonicalize> jsregexp_uncanonicalize_;
1264 unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_; 1264 unibrow::Mapping<unibrow::CanonicalizationRange> jsregexp_canonrange_;
1265 ConsStringIteratorOp objects_string_compare_iterator_a_; 1265 ConsStringIteratorOp objects_string_compare_iterator_a_;
1266 ConsStringIteratorOp objects_string_compare_iterator_b_; 1266 ConsStringIteratorOp objects_string_compare_iterator_b_;
1267 StaticResource<ConsStringIteratorOp> objects_string_iterator_; 1267 StaticResource<ConsStringIteratorOp> objects_string_iterator_;
1268 unibrow::Mapping<unibrow::Ecma262Canonicalize> 1268 unibrow::Mapping<unibrow::Ecma262Canonicalize>
1269 regexp_macro_assembler_canonicalize_; 1269 regexp_macro_assembler_canonicalize_;
1270 RegExpStack* regexp_stack_; 1270 RegExpStack* regexp_stack_;
1271 DateCache* date_cache_; 1271 DateCache* date_cache_;
1272 unibrow::Mapping<unibrow::Ecma262Canonicalize> interp_canonicalize_mapping_; 1272 unibrow::Mapping<unibrow::Ecma262Canonicalize> interp_canonicalize_mapping_;
1273 CodeStubInterfaceDescriptor* code_stub_interface_descriptors_;
1274 CallInterfaceDescriptorData* call_descriptor_data_; 1273 CallInterfaceDescriptorData* call_descriptor_data_;
1275 base::RandomNumberGenerator* random_number_generator_; 1274 base::RandomNumberGenerator* random_number_generator_;
1276 1275
1277 // Whether the isolate has been created for snapshotting. 1276 // Whether the isolate has been created for snapshotting.
1278 bool serializer_enabled_; 1277 bool serializer_enabled_;
1279 1278
1280 // True if fatal error has been signaled for this isolate. 1279 // True if fatal error has been signaled for this isolate.
1281 bool has_fatal_error_; 1280 bool has_fatal_error_;
1282 1281
1283 // True if this isolate was initialized from a snapshot. 1282 // True if this isolate was initialized from a snapshot.
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 } 1553 }
1555 1554
1556 EmbeddedVector<char, 128> filename_; 1555 EmbeddedVector<char, 128> filename_;
1557 FILE* file_; 1556 FILE* file_;
1558 int scope_depth_; 1557 int scope_depth_;
1559 }; 1558 };
1560 1559
1561 } } // namespace v8::internal 1560 } } // namespace v8::internal
1562 1561
1563 #endif // V8_ISOLATE_H_ 1562 #endif // V8_ISOLATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698