| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 1361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 Debug::GeneratePlainReturnLiveEdit(masm); | 1372 Debug::GeneratePlainReturnLiveEdit(masm); |
| 1373 } | 1373 } |
| 1374 | 1374 |
| 1375 | 1375 |
| 1376 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { | 1376 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { |
| 1377 Debug::GenerateFrameDropperLiveEdit(masm); | 1377 Debug::GenerateFrameDropperLiveEdit(masm); |
| 1378 } | 1378 } |
| 1379 #endif | 1379 #endif |
| 1380 | 1380 |
| 1381 | 1381 |
| 1382 Builtins::Builtins() { | 1382 Builtins::Builtins() : initialized_(false) { |
| 1383 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count); | 1383 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count); |
| 1384 memset(names_, 0, sizeof(names_[0]) * builtin_count); | 1384 memset(names_, 0, sizeof(names_[0]) * builtin_count); |
| 1385 } | 1385 } |
| 1386 | 1386 |
| 1387 | 1387 |
| 1388 Builtins::~Builtins() { | 1388 Builtins::~Builtins() { |
| 1389 } | 1389 } |
| 1390 | 1390 |
| 1391 | 1391 |
| 1392 #define DEF_ENUM_C(name, ignore) FUNCTION_ADDR(Builtin_##name), | 1392 #define DEF_ENUM_C(name, ignore) FUNCTION_ADDR(Builtin_##name), |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1552 if (entry->contains(pc)) { | 1552 if (entry->contains(pc)) { |
| 1553 return names_[i]; | 1553 return names_[i]; |
| 1554 } | 1554 } |
| 1555 } | 1555 } |
| 1556 } | 1556 } |
| 1557 return NULL; | 1557 return NULL; |
| 1558 } | 1558 } |
| 1559 | 1559 |
| 1560 | 1560 |
| 1561 } } // namespace v8::internal | 1561 } } // namespace v8::internal |
| OLD | NEW |