| 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 2157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2168 DebugCodegen::SAVE_RESULT_REGISTER); | 2168 DebugCodegen::SAVE_RESULT_REGISTER); |
| 2169 } | 2169 } |
| 2170 | 2170 |
| 2171 | 2171 |
| 2172 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { | 2172 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { |
| 2173 DebugCodegen::GenerateDebugBreakStub(masm, | 2173 DebugCodegen::GenerateDebugBreakStub(masm, |
| 2174 DebugCodegen::IGNORE_RESULT_REGISTER); | 2174 DebugCodegen::IGNORE_RESULT_REGISTER); |
| 2175 } | 2175 } |
| 2176 | 2176 |
| 2177 | 2177 |
| 2178 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { |
| 2179 DebugCodegen::GeneratePlainReturnLiveEdit(masm); |
| 2180 } |
| 2181 |
| 2182 |
| 2178 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { | 2183 static void Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { |
| 2179 DebugCodegen::GenerateFrameDropperLiveEdit(masm); | 2184 DebugCodegen::GenerateFrameDropperLiveEdit(masm); |
| 2180 } | 2185 } |
| 2181 | 2186 |
| 2182 | 2187 |
| 2183 Builtins::Builtins() : initialized_(false) { | 2188 Builtins::Builtins() : initialized_(false) { |
| 2184 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count); | 2189 memset(builtins_, 0, sizeof(builtins_[0]) * builtin_count); |
| 2185 memset(names_, 0, sizeof(names_[0]) * builtin_count); | 2190 memset(names_, 0, sizeof(names_[0]) * builtin_count); |
| 2186 } | 2191 } |
| 2187 | 2192 |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2399 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 2404 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
| 2400 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 2405 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 2401 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 2406 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
| 2402 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 2407 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 2403 #undef DEFINE_BUILTIN_ACCESSOR_C | 2408 #undef DEFINE_BUILTIN_ACCESSOR_C |
| 2404 #undef DEFINE_BUILTIN_ACCESSOR_A | 2409 #undef DEFINE_BUILTIN_ACCESSOR_A |
| 2405 | 2410 |
| 2406 | 2411 |
| 2407 } // namespace internal | 2412 } // namespace internal |
| 2408 } // namespace v8 | 2413 } // namespace v8 |
| OLD | NEW |