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

Side by Side Diff: src/isolate.cc

Issue 157543002: A64: Synchronize with r18581. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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
« no previous file with comments | « src/ic.cc ('k') | src/list.h » ('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 // 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 2082 matching lines...) Expand 10 before | Expand all | Expand 10 after
2093 StubFailureTrampolineStub::GenerateAheadOfTime(this); 2093 StubFailureTrampolineStub::GenerateAheadOfTime(this);
2094 StubFailureTailCallTrampolineStub::GenerateAheadOfTime(this); 2094 StubFailureTailCallTrampolineStub::GenerateAheadOfTime(this);
2095 // TODO(mstarzinger): The following is an ugly hack to make sure the 2095 // TODO(mstarzinger): The following is an ugly hack to make sure the
2096 // interface descriptor is initialized even when stubs have been 2096 // interface descriptor is initialized even when stubs have been
2097 // deserialized out of the snapshot without the graph builder. 2097 // deserialized out of the snapshot without the graph builder.
2098 FastCloneShallowArrayStub stub(FastCloneShallowArrayStub::CLONE_ELEMENTS, 2098 FastCloneShallowArrayStub stub(FastCloneShallowArrayStub::CLONE_ELEMENTS,
2099 DONT_TRACK_ALLOCATION_SITE, 0); 2099 DONT_TRACK_ALLOCATION_SITE, 0);
2100 stub.InitializeInterfaceDescriptor( 2100 stub.InitializeInterfaceDescriptor(
2101 this, code_stub_interface_descriptor(CodeStub::FastCloneShallowArray)); 2101 this, code_stub_interface_descriptor(CodeStub::FastCloneShallowArray));
2102 BinaryOpICStub::InstallDescriptors(this); 2102 BinaryOpICStub::InstallDescriptors(this);
2103 BinaryOpWithAllocationSiteStub::InstallDescriptors(this);
2103 CompareNilICStub::InitializeForIsolate(this); 2104 CompareNilICStub::InitializeForIsolate(this);
2104 ToBooleanStub::InitializeForIsolate(this); 2105 ToBooleanStub::InitializeForIsolate(this);
2105 ArrayConstructorStubBase::InstallDescriptors(this); 2106 ArrayConstructorStubBase::InstallDescriptors(this);
2106 InternalArrayConstructorStubBase::InstallDescriptors(this); 2107 InternalArrayConstructorStubBase::InstallDescriptors(this);
2107 FastNewClosureStub::InstallDescriptors(this); 2108 FastNewClosureStub::InstallDescriptors(this);
2108 NumberToStringStub::InstallDescriptors(this); 2109 NumberToStringStub::InstallDescriptors(this);
2109 NewStringAddStub::InstallDescriptors(this); 2110 NewStringAddStub::InstallDescriptors(this);
2110 } 2111 }
2111 2112
2112 initialized_from_snapshot_ = (des != NULL); 2113 initialized_from_snapshot_ = (des != NULL);
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
2293 2294
2294 #ifdef DEBUG 2295 #ifdef DEBUG
2295 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \ 2296 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \
2296 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_); 2297 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_);
2297 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET) 2298 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET)
2298 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET) 2299 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET)
2299 #undef ISOLATE_FIELD_OFFSET 2300 #undef ISOLATE_FIELD_OFFSET
2300 #endif 2301 #endif
2301 2302
2302 } } // namespace v8::internal 2303 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698