OLD | NEW |
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 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1124 // Initialize a filler object to keep the ability to iterate over the heap | 1124 // Initialize a filler object to keep the ability to iterate over the heap |
1125 // when shortening objects. | 1125 // when shortening objects. |
1126 void CreateFillerObjectAt(Address addr, int size); | 1126 void CreateFillerObjectAt(Address addr, int size); |
1127 | 1127 |
1128 // Makes a new native code object | 1128 // Makes a new native code object |
1129 // Returns Failure::RetryAfterGC(requested_bytes, space) if the allocation | 1129 // Returns Failure::RetryAfterGC(requested_bytes, space) if the allocation |
1130 // failed. On success, the pointer to the Code object is stored in the | 1130 // failed. On success, the pointer to the Code object is stored in the |
1131 // self_reference. This allows generated code to reference its own Code | 1131 // self_reference. This allows generated code to reference its own Code |
1132 // object by containing this pointer. | 1132 // object by containing this pointer. |
1133 // Please note this function does not perform a garbage collection. | 1133 // Please note this function does not perform a garbage collection. |
1134 MUST_USE_RESULT MaybeObject* CreateCode(const CodeDesc& desc, | 1134 MUST_USE_RESULT MaybeObject* CreateCode( |
1135 Code::Flags flags, | 1135 const CodeDesc& desc, |
1136 Handle<Object> self_reference, | 1136 Code::Flags flags, |
1137 bool immovable = false, | 1137 Handle<Object> self_reference, |
1138 bool crankshafted = false); | 1138 int prologue_offset = kPrologueOffsetNotSet, |
| 1139 bool immovable = false, |
| 1140 bool crankshafted = false); |
1139 | 1141 |
1140 MUST_USE_RESULT MaybeObject* CopyCode(Code* code); | 1142 MUST_USE_RESULT MaybeObject* CopyCode(Code* code); |
1141 | 1143 |
1142 // Copy the code and scope info part of the code object, but insert | 1144 // Copy the code and scope info part of the code object, but insert |
1143 // the provided data as the relocation information. | 1145 // the provided data as the relocation information. |
1144 MUST_USE_RESULT MaybeObject* CopyCode(Code* code, Vector<byte> reloc_info); | 1146 MUST_USE_RESULT MaybeObject* CopyCode(Code* code, Vector<byte> reloc_info); |
1145 | 1147 |
1146 // Finds the internalized copy for string in the string table. | 1148 // Finds the internalized copy for string in the string table. |
1147 // If not found, a new string is added to the table and returned. | 1149 // If not found, a new string is added to the table and returned. |
1148 // Returns Failure::RetryAfterGC(requested_bytes, space) if allocation | 1150 // Returns Failure::RetryAfterGC(requested_bytes, space) if allocation |
(...skipping 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3030 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 3032 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
3031 | 3033 |
3032 private: | 3034 private: |
3033 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 3035 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
3034 }; | 3036 }; |
3035 #endif // DEBUG | 3037 #endif // DEBUG |
3036 | 3038 |
3037 } } // namespace v8::internal | 3039 } } // namespace v8::internal |
3038 | 3040 |
3039 #endif // V8_HEAP_H_ | 3041 #endif // V8_HEAP_H_ |
OLD | NEW |