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

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

Issue 23475052: MIPS: reland 16744: add context save for GenerateFastApiCall. (Closed) Base URL: https://github.com/v8/v8.git@gbl
Patch Set: Created 7 years, 3 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 // Enter exit frame. 841 // Enter exit frame.
842 // argc - argument count to be dropped by LeaveExitFrame. 842 // argc - argument count to be dropped by LeaveExitFrame.
843 // save_doubles - saves FPU registers on stack, currently disabled. 843 // save_doubles - saves FPU registers on stack, currently disabled.
844 // stack_space - extra stack space. 844 // stack_space - extra stack space.
845 void EnterExitFrame(bool save_doubles, 845 void EnterExitFrame(bool save_doubles,
846 int stack_space = 0); 846 int stack_space = 0);
847 847
848 // Leave the current exit frame. 848 // Leave the current exit frame.
849 void LeaveExitFrame(bool save_doubles, 849 void LeaveExitFrame(bool save_doubles,
850 Register arg_count, 850 Register arg_count,
851 bool restore_context,
851 bool do_return = false); 852 bool do_return = false);
Paul Lind 2013/09/17 17:54:22 To make the code more readable, I'd like to see an
kilvadyb 2013/09/17 18:40:42 Done.
852 853
853 // Get the actual activation frame alignment for target environment. 854 // Get the actual activation frame alignment for target environment.
854 static int ActivationFrameAlignment(); 855 static int ActivationFrameAlignment();
855 856
856 // Make sure the stack is aligned. Only emits code in debug mode. 857 // Make sure the stack is aligned. Only emits code in debug mode.
857 void AssertStackIsAligned(); 858 void AssertStackIsAligned();
858 859
859 void LoadContext(Register dst, int context_chain_length); 860 void LoadContext(Register dst, int context_chain_length);
860 861
861 // Conditionally load the cached Array transitioned map of type 862 // Conditionally load the cached Array transitioned map of type
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1264 1265
1265 // Calls an API function. Allocates HandleScope, extracts returned value 1266 // Calls an API function. Allocates HandleScope, extracts returned value
1266 // from handle and propagates exceptions. Restores context. stack_space 1267 // from handle and propagates exceptions. Restores context. stack_space
1267 // - space to be unwound on exit (includes the call JS arguments space and 1268 // - space to be unwound on exit (includes the call JS arguments space and
1268 // the additional space allocated for the fast call). 1269 // the additional space allocated for the fast call).
1269 void CallApiFunctionAndReturn(ExternalReference function, 1270 void CallApiFunctionAndReturn(ExternalReference function,
1270 Address function_address, 1271 Address function_address,
1271 ExternalReference thunk_ref, 1272 ExternalReference thunk_ref,
1272 Register thunk_last_arg, 1273 Register thunk_last_arg,
1273 int stack_space, 1274 int stack_space,
1274 int return_value_offset_from_fp); 1275 MemOperand return_value_operand,
1276 MemOperand* context_restore_operand);
1275 1277
1276 // Jump to the builtin routine. 1278 // Jump to the builtin routine.
1277 void JumpToExternalReference(const ExternalReference& builtin, 1279 void JumpToExternalReference(const ExternalReference& builtin,
1278 BranchDelaySlot bd = PROTECT); 1280 BranchDelaySlot bd = PROTECT);
1279 1281
1280 // Invoke specified builtin JavaScript function. Adds an entry to 1282 // Invoke specified builtin JavaScript function. Adds an entry to
1281 // the unresolved list if the name does not resolve. 1283 // the unresolved list if the name does not resolve.
1282 void InvokeBuiltin(Builtins::JavaScript id, 1284 void InvokeBuiltin(Builtins::JavaScript id,
1283 InvokeFlag flag, 1285 InvokeFlag flag,
1284 const CallWrapper& call_wrapper = NullCallWrapper()); 1286 const CallWrapper& call_wrapper = NullCallWrapper());
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
1615 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 1617 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
1616 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1618 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1617 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1619 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1618 #else 1620 #else
1619 #define ACCESS_MASM(masm) masm-> 1621 #define ACCESS_MASM(masm) masm->
1620 #endif 1622 #endif
1621 1623
1622 } } // namespace v8::internal 1624 } } // namespace v8::internal
1623 1625
1624 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1626 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698