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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 V(stack_string, "stack") \ | 341 V(stack_string, "stack") \ |
342 V(toJSON_string, "toJSON") \ | 342 V(toJSON_string, "toJSON") \ |
343 V(InitializeVarGlobal_string, "InitializeVarGlobal") \ | 343 V(InitializeVarGlobal_string, "InitializeVarGlobal") \ |
344 V(InitializeConstGlobal_string, "InitializeConstGlobal") \ | 344 V(InitializeConstGlobal_string, "InitializeConstGlobal") \ |
345 V(KeyedLoadElementMonomorphic_string, \ | 345 V(KeyedLoadElementMonomorphic_string, \ |
346 "KeyedLoadElementMonomorphic") \ | 346 "KeyedLoadElementMonomorphic") \ |
347 V(KeyedStoreElementMonomorphic_string, \ | 347 V(KeyedStoreElementMonomorphic_string, \ |
348 "KeyedStoreElementMonomorphic") \ | 348 "KeyedStoreElementMonomorphic") \ |
349 V(stack_overflow_string, "kStackOverflowBoilerplate") \ | 349 V(stack_overflow_string, "kStackOverflowBoilerplate") \ |
350 V(illegal_access_string, "illegal access") \ | 350 V(illegal_access_string, "illegal access") \ |
351 V(illegal_execution_state_string, "illegal execution state") \ | |
352 V(get_string, "get") \ | 351 V(get_string, "get") \ |
353 V(set_string, "set") \ | 352 V(set_string, "set") \ |
354 V(map_field_string, "%map") \ | 353 V(map_field_string, "%map") \ |
355 V(elements_field_string, "%elements") \ | 354 V(elements_field_string, "%elements") \ |
356 V(length_field_string, "%length") \ | 355 V(length_field_string, "%length") \ |
357 V(cell_value_string, "%cell_value") \ | 356 V(cell_value_string, "%cell_value") \ |
358 V(function_class_string, "Function") \ | 357 V(function_class_string, "Function") \ |
359 V(illegal_argument_string, "illegal argument") \ | 358 V(illegal_argument_string, "illegal argument") \ |
360 V(MakeReferenceError_string, "MakeReferenceError") \ | 359 V(MakeReferenceError_string, "MakeReferenceError") \ |
361 V(MakeSyntaxError_string, "MakeSyntaxError") \ | 360 V(MakeSyntaxError_string, "MakeSyntaxError") \ |
(...skipping 2533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2895 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2894 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
2896 | 2895 |
2897 private: | 2896 private: |
2898 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2897 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
2899 }; | 2898 }; |
2900 #endif // DEBUG | 2899 #endif // DEBUG |
2901 | 2900 |
2902 } } // namespace v8::internal | 2901 } } // namespace v8::internal |
2903 | 2902 |
2904 #endif // V8_HEAP_H_ | 2903 #endif // V8_HEAP_H_ |
OLD | NEW |