| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 V(string_symbol, "string") \ | 174 V(string_symbol, "string") \ |
| 175 V(String_symbol, "String") \ | 175 V(String_symbol, "String") \ |
| 176 V(Date_symbol, "Date") \ | 176 V(Date_symbol, "Date") \ |
| 177 V(this_symbol, "this") \ | 177 V(this_symbol, "this") \ |
| 178 V(to_string_symbol, "toString") \ | 178 V(to_string_symbol, "toString") \ |
| 179 V(char_at_symbol, "CharAt") \ | 179 V(char_at_symbol, "CharAt") \ |
| 180 V(undefined_symbol, "undefined") \ | 180 V(undefined_symbol, "undefined") \ |
| 181 V(value_of_symbol, "valueOf") \ | 181 V(value_of_symbol, "valueOf") \ |
| 182 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \ | 182 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \ |
| 183 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \ | 183 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \ |
| 184 V(KeyedLoadSpecializedMonomorphic_symbol, \ | 184 V(KeyedLoadElementMonomorphic_symbol, \ |
| 185 "KeyedLoadSpecializedMonomorphic") \ | 185 "KeyedLoadElementMonomorphic") \ |
| 186 V(KeyedLoadSpecializedPolymorphic_symbol, \ | 186 V(KeyedLoadElementPolymorphic_symbol, \ |
| 187 "KeyedLoadSpecializedPolymorphic") \ | 187 "KeyedLoadElementPolymorphic") \ |
| 188 V(KeyedStoreSpecializedMonomorphic_symbol, \ | 188 V(KeyedStoreElementMonomorphic_symbol, \ |
| 189 "KeyedStoreSpecializedMonomorphic") \ | 189 "KeyedStoreElementMonomorphic") \ |
| 190 V(KeyedStoreSpecializedPolymorphic_symbol, \ | 190 V(KeyedStoreElementPolymorphic_symbol, \ |
| 191 "KeyedStoreSpecializedPolymorphic") \ | 191 "KeyedStoreElementPolymorphic") \ |
| 192 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \ | 192 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \ |
| 193 V(illegal_access_symbol, "illegal access") \ | 193 V(illegal_access_symbol, "illegal access") \ |
| 194 V(out_of_memory_symbol, "out-of-memory") \ | 194 V(out_of_memory_symbol, "out-of-memory") \ |
| 195 V(illegal_execution_state_symbol, "illegal execution state") \ | 195 V(illegal_execution_state_symbol, "illegal execution state") \ |
| 196 V(get_symbol, "get") \ | 196 V(get_symbol, "get") \ |
| 197 V(set_symbol, "set") \ | 197 V(set_symbol, "set") \ |
| 198 V(function_class_symbol, "Function") \ | 198 V(function_class_symbol, "Function") \ |
| 199 V(illegal_argument_symbol, "illegal argument") \ | 199 V(illegal_argument_symbol, "illegal argument") \ |
| 200 V(MakeReferenceError_symbol, "MakeReferenceError") \ | 200 V(MakeReferenceError_symbol, "MakeReferenceError") \ |
| 201 V(MakeSyntaxError_symbol, "MakeSyntaxError") \ | 201 V(MakeSyntaxError_symbol, "MakeSyntaxError") \ |
| (...skipping 2081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2283 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2283 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2284 }; | 2284 }; |
| 2285 #endif // DEBUG || LIVE_OBJECT_LIST | 2285 #endif // DEBUG || LIVE_OBJECT_LIST |
| 2286 | 2286 |
| 2287 | 2287 |
| 2288 } } // namespace v8::internal | 2288 } } // namespace v8::internal |
| 2289 | 2289 |
| 2290 #undef HEAP | 2290 #undef HEAP |
| 2291 | 2291 |
| 2292 #endif // V8_HEAP_H_ | 2292 #endif // V8_HEAP_H_ |
| OLD | NEW |