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

Side by Side Diff: src/objects-inl.h

Issue 2744383002: Revert of [wasm] Initial signal handler (Closed)
Patch Set: Created 3 years, 9 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/objects.cc ('k') | src/runtime/runtime.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 // 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 // Review notes: 5 // Review notes:
6 // 6 //
7 // - The use of macros in these inline functions may seem superfluous 7 // - The use of macros in these inline functions may seem superfluous
8 // but it is absolutely needed to make sure gcc generates optimal 8 // but it is absolutely needed to make sure gcc generates optimal
9 // code. gcc is not happy when attempting to inline too deep. 9 // code. gcc is not happy when attempting to inline too deep.
10 // 10 //
(...skipping 6634 matching lines...) Expand 10 before | Expand all | Expand 10 after
6645 INT_ACCESSORS(Code, instruction_size, kInstructionSizeOffset) 6645 INT_ACCESSORS(Code, instruction_size, kInstructionSizeOffset)
6646 INT_ACCESSORS(Code, prologue_offset, kPrologueOffset) 6646 INT_ACCESSORS(Code, prologue_offset, kPrologueOffset)
6647 INT_ACCESSORS(Code, constant_pool_offset, kConstantPoolOffset) 6647 INT_ACCESSORS(Code, constant_pool_offset, kConstantPoolOffset)
6648 #define CODE_ACCESSORS(name, type, offset) \ 6648 #define CODE_ACCESSORS(name, type, offset) \
6649 ACCESSORS_CHECKED2(Code, name, type, offset, true, \ 6649 ACCESSORS_CHECKED2(Code, name, type, offset, true, \
6650 !GetHeap()->InNewSpace(value)) 6650 !GetHeap()->InNewSpace(value))
6651 CODE_ACCESSORS(relocation_info, ByteArray, kRelocationInfoOffset) 6651 CODE_ACCESSORS(relocation_info, ByteArray, kRelocationInfoOffset)
6652 CODE_ACCESSORS(handler_table, FixedArray, kHandlerTableOffset) 6652 CODE_ACCESSORS(handler_table, FixedArray, kHandlerTableOffset)
6653 CODE_ACCESSORS(deoptimization_data, FixedArray, kDeoptimizationDataOffset) 6653 CODE_ACCESSORS(deoptimization_data, FixedArray, kDeoptimizationDataOffset)
6654 CODE_ACCESSORS(source_position_table, ByteArray, kSourcePositionTableOffset) 6654 CODE_ACCESSORS(source_position_table, ByteArray, kSourcePositionTableOffset)
6655 CODE_ACCESSORS(trap_handler_index, Smi, kTrapHandlerIndex)
6656 CODE_ACCESSORS(raw_type_feedback_info, Object, kTypeFeedbackInfoOffset) 6655 CODE_ACCESSORS(raw_type_feedback_info, Object, kTypeFeedbackInfoOffset)
6657 CODE_ACCESSORS(next_code_link, Object, kNextCodeLinkOffset) 6656 CODE_ACCESSORS(next_code_link, Object, kNextCodeLinkOffset)
6658 #undef CODE_ACCESSORS 6657 #undef CODE_ACCESSORS
6659 6658
6660 void Code::WipeOutHeader() { 6659 void Code::WipeOutHeader() {
6661 WRITE_FIELD(this, kRelocationInfoOffset, NULL); 6660 WRITE_FIELD(this, kRelocationInfoOffset, NULL);
6662 WRITE_FIELD(this, kHandlerTableOffset, NULL); 6661 WRITE_FIELD(this, kHandlerTableOffset, NULL);
6663 WRITE_FIELD(this, kDeoptimizationDataOffset, NULL); 6662 WRITE_FIELD(this, kDeoptimizationDataOffset, NULL);
6664 WRITE_FIELD(this, kSourcePositionTableOffset, NULL); 6663 WRITE_FIELD(this, kSourcePositionTableOffset, NULL);
6665 // Do not wipe out major/minor keys on a code stub or IC 6664 // Do not wipe out major/minor keys on a code stub or IC
(...skipping 1605 matching lines...) Expand 10 before | Expand all | Expand 10 after
8271 #undef WRITE_INT64_FIELD 8270 #undef WRITE_INT64_FIELD
8272 #undef READ_BYTE_FIELD 8271 #undef READ_BYTE_FIELD
8273 #undef WRITE_BYTE_FIELD 8272 #undef WRITE_BYTE_FIELD
8274 #undef NOBARRIER_READ_BYTE_FIELD 8273 #undef NOBARRIER_READ_BYTE_FIELD
8275 #undef NOBARRIER_WRITE_BYTE_FIELD 8274 #undef NOBARRIER_WRITE_BYTE_FIELD
8276 8275
8277 } // namespace internal 8276 } // namespace internal
8278 } // namespace v8 8277 } // namespace v8
8279 8278
8280 #endif // V8_OBJECTS_INL_H_ 8279 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698