OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/builtins.h" | 5 #include "src/builtins.h" |
6 | 6 |
7 #include "src/api.h" | 7 #include "src/api.h" |
8 #include "src/api-natives.h" | 8 #include "src/api-natives.h" |
9 #include "src/arguments.h" | 9 #include "src/arguments.h" |
10 #include "src/base/once.h" | 10 #include "src/base/once.h" |
(...skipping 2257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2268 DebugCodegen::SAVE_RESULT_REGISTER); | 2268 DebugCodegen::SAVE_RESULT_REGISTER); |
2269 } | 2269 } |
2270 | 2270 |
2271 | 2271 |
2272 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { | 2272 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { |
2273 DebugCodegen::GenerateDebugBreakStub(masm, | 2273 DebugCodegen::GenerateDebugBreakStub(masm, |
2274 DebugCodegen::IGNORE_RESULT_REGISTER); | 2274 DebugCodegen::IGNORE_RESULT_REGISTER); |
2275 } | 2275 } |
2276 | 2276 |
2277 | 2277 |
2278 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { | |
2279 DebugCodegen::GeneratePlainReturnLiveEdit(masm); | |
2280 } | |
2281 | |
2282 | |
2283 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { | 2278 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { |
2284 DebugCodegen::GenerateFrameDropperLiveEdit(masm); | 2279 DebugCodegen::GenerateFrameDropperLiveEdit(masm); |
2285 } | 2280 } |
2286 | 2281 |
2287 | 2282 |
2288 Builtins::Builtins() : initialized_(false) { | 2283 Builtins::Builtins() : initialized_(false) { |
2289 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count); | 2284 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count); |
2290 memset(names_, 0, sizeof(names_[0]) * builtin_count); | 2285 memset(names_, 0, sizeof(names_[0]) * builtin_count); |
2291 } | 2286 } |
2292 | 2287 |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2502 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 2497 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
2503 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 2498 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
2504 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 2499 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
2505 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 2500 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
2506 #undef DEFINE_BUILTIN_ACCESSOR_C | 2501 #undef DEFINE_BUILTIN_ACCESSOR_C |
2507 #undef DEFINE_BUILTIN_ACCESSOR_A | 2502 #undef DEFINE_BUILTIN_ACCESSOR_A |
2508 | 2503 |
2509 | 2504 |
2510 } // namespace internal | 2505 } // namespace internal |
2511 } // namespace v8 | 2506 } // namespace v8 |
OLD | NEW |