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

Side by Side Diff: src/objects.h

Issue 128303002: Merged r18000, r18013, r18298, r18319 into 3.22 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.22
Patch Set: Fix mips Created 6 years, 11 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/mips/macro-assembler-mips.h ('k') | src/objects.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 // 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 4990 matching lines...) Expand 10 before | Expand all | Expand 10 after
5001 void Disassemble(const char* name, FILE* out = stdout); 5001 void Disassemble(const char* name, FILE* out = stdout);
5002 #endif // ENABLE_DISASSEMBLER 5002 #endif // ENABLE_DISASSEMBLER
5003 5003
5004 // [instruction_size]: Size of the native instructions 5004 // [instruction_size]: Size of the native instructions
5005 inline int instruction_size(); 5005 inline int instruction_size();
5006 inline void set_instruction_size(int value); 5006 inline void set_instruction_size(int value);
5007 5007
5008 // [relocation_info]: Code relocation information 5008 // [relocation_info]: Code relocation information
5009 DECL_ACCESSORS(relocation_info, ByteArray) 5009 DECL_ACCESSORS(relocation_info, ByteArray)
5010 void InvalidateRelocation(); 5010 void InvalidateRelocation();
5011 void InvalidateEmbeddedObjects();
5011 5012
5012 // [handler_table]: Fixed array containing offsets of exception handlers. 5013 // [handler_table]: Fixed array containing offsets of exception handlers.
5013 DECL_ACCESSORS(handler_table, FixedArray) 5014 DECL_ACCESSORS(handler_table, FixedArray)
5014 5015
5015 // [deoptimization_data]: Array containing data for deopt. 5016 // [deoptimization_data]: Array containing data for deopt.
5016 DECL_ACCESSORS(deoptimization_data, FixedArray) 5017 DECL_ACCESSORS(deoptimization_data, FixedArray)
5017 5018
5018 // [type_feedback_info]: This field stores various things, depending on the 5019 // [type_feedback_info]: This field stores various things, depending on the
5019 // kind of the code object. 5020 // kind of the code object.
5020 // FUNCTION => type feedback information. 5021 // FUNCTION => type feedback information.
(...skipping 5419 matching lines...) Expand 10 before | Expand all | Expand 10 after
10440 } else { 10441 } else {
10441 value &= ~(1 << bit_position); 10442 value &= ~(1 << bit_position);
10442 } 10443 }
10443 return value; 10444 return value;
10444 } 10445 }
10445 }; 10446 };
10446 10447
10447 } } // namespace v8::internal 10448 } } // namespace v8::internal
10448 10449
10449 #endif // V8_OBJECTS_H_ 10450 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mips/macro-assembler-mips.h ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698