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

Side by Side Diff: src/isolate.cc

Issue 57123002: Reland 21774: Generate KeyedLoadGeneric with Hydrogen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Turn off by default Created 7 years 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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 2099 matching lines...) Expand 10 before | Expand all | Expand 10 after
2110 stub.InitializeInterfaceDescriptor( 2110 stub.InitializeInterfaceDescriptor(
2111 this, code_stub_interface_descriptor(CodeStub::FastCloneShallowArray)); 2111 this, code_stub_interface_descriptor(CodeStub::FastCloneShallowArray));
2112 BinaryOpStub::InitializeForIsolate(this); 2112 BinaryOpStub::InitializeForIsolate(this);
2113 CompareNilICStub::InitializeForIsolate(this); 2113 CompareNilICStub::InitializeForIsolate(this);
2114 ToBooleanStub::InitializeForIsolate(this); 2114 ToBooleanStub::InitializeForIsolate(this);
2115 ArrayConstructorStubBase::InstallDescriptors(this); 2115 ArrayConstructorStubBase::InstallDescriptors(this);
2116 InternalArrayConstructorStubBase::InstallDescriptors(this); 2116 InternalArrayConstructorStubBase::InstallDescriptors(this);
2117 FastNewClosureStub::InstallDescriptors(this); 2117 FastNewClosureStub::InstallDescriptors(this);
2118 NumberToStringStub::InstallDescriptors(this); 2118 NumberToStringStub::InstallDescriptors(this);
2119 NewStringAddStub::InstallDescriptors(this); 2119 NewStringAddStub::InstallDescriptors(this);
2120 KeyedLoadGenericElementStub::InstallDescriptors(this);
2120 } 2121 }
2121 2122
2122 initialized_from_snapshot_ = (des != NULL); 2123 initialized_from_snapshot_ = (des != NULL);
2123 2124
2124 return true; 2125 return true;
2125 } 2126 }
2126 2127
2127 2128
2128 // Initialized lazily to allow early 2129 // Initialized lazily to allow early
2129 // v8::V8::SetAddHistogramSampleFunction calls. 2130 // v8::V8::SetAddHistogramSampleFunction calls.
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
2303 2304
2304 #ifdef DEBUG 2305 #ifdef DEBUG
2305 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \ 2306 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \
2306 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_); 2307 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_);
2307 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET) 2308 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET)
2308 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET) 2309 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET)
2309 #undef ISOLATE_FIELD_OFFSET 2310 #undef ISOLATE_FIELD_OFFSET
2310 #endif 2311 #endif
2311 2312
2312 } } // namespace v8::internal 2313 } } // namespace v8::internal
OLDNEW
« src/hydrogen-instructions.cc ('K') | « src/ic.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698