Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: src/x87/macro-assembler-x87.h

Issue 1611613002: [assembler] Remove obsolete InvokeBuiltin macro. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/x64/macro-assembler-x64.cc ('k') | src/x87/macro-assembler-x87.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef V8_X87_MACRO_ASSEMBLER_X87_H_ 5 #ifndef V8_X87_MACRO_ASSEMBLER_X87_H_
6 #define V8_X87_MACRO_ASSEMBLER_X87_H_ 6 #define V8_X87_MACRO_ASSEMBLER_X87_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/frames.h" 10 #include "src/frames.h"
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 319
320 void InvokeFunction(Register function, const ParameterCount& expected, 320 void InvokeFunction(Register function, const ParameterCount& expected,
321 const ParameterCount& actual, InvokeFlag flag, 321 const ParameterCount& actual, InvokeFlag flag,
322 const CallWrapper& call_wrapper); 322 const CallWrapper& call_wrapper);
323 323
324 void InvokeFunction(Handle<JSFunction> function, 324 void InvokeFunction(Handle<JSFunction> function,
325 const ParameterCount& expected, 325 const ParameterCount& expected,
326 const ParameterCount& actual, InvokeFlag flag, 326 const ParameterCount& actual, InvokeFlag flag,
327 const CallWrapper& call_wrapper); 327 const CallWrapper& call_wrapper);
328 328
329 // Invoke specified builtin JavaScript function.
330 void InvokeBuiltin(int native_context_index, InvokeFlag flag,
331 const CallWrapper& call_wrapper = NullCallWrapper());
332
333 // Store the function for the given builtin in the target register. 329 // Store the function for the given builtin in the target register.
334 void GetBuiltinFunction(Register target, int native_context_index); 330 void GetBuiltinFunction(Register target, int native_context_index);
335 331
336 332
337 // Expression support 333 // Expression support
338 // Support for constant splitting. 334 // Support for constant splitting.
339 bool IsUnsafeImmediate(const Immediate& x); 335 bool IsUnsafeImmediate(const Immediate& x);
340 void SafeMove(Register dst, const Immediate& x); 336 void SafeMove(Register dst, const Immediate& x);
341 void SafePush(const Immediate& x); 337 void SafePush(const Immediate& x);
342 338
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
991 } \ 987 } \
992 masm-> 988 masm->
993 #else 989 #else
994 #define ACCESS_MASM(masm) masm-> 990 #define ACCESS_MASM(masm) masm->
995 #endif 991 #endif
996 992
997 } // namespace internal 993 } // namespace internal
998 } // namespace v8 994 } // namespace v8
999 995
1000 #endif // V8_X87_MACRO_ASSEMBLER_X87_H_ 996 #endif // V8_X87_MACRO_ASSEMBLER_X87_H_
OLDNEW
« no previous file with comments | « src/x64/macro-assembler-x64.cc ('k') | src/x87/macro-assembler-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698