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

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

Issue 17162002: Version 3.19.17. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | src/mips/macro-assembler-mips.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 // 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 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after
1228 // C functions from generated code. 1228 // C functions from generated code.
1229 void SetCallCDoubleArguments(DoubleRegister dreg); 1229 void SetCallCDoubleArguments(DoubleRegister dreg);
1230 void SetCallCDoubleArguments(DoubleRegister dreg1, DoubleRegister dreg2); 1230 void SetCallCDoubleArguments(DoubleRegister dreg1, DoubleRegister dreg2);
1231 void SetCallCDoubleArguments(DoubleRegister dreg, Register reg); 1231 void SetCallCDoubleArguments(DoubleRegister dreg, Register reg);
1232 1232
1233 // Calls an API function. Allocates HandleScope, extracts returned value 1233 // Calls an API function. Allocates HandleScope, extracts returned value
1234 // from handle and propagates exceptions. Restores context. stack_space 1234 // from handle and propagates exceptions. Restores context. stack_space
1235 // - space to be unwound on exit (includes the call JS arguments space and 1235 // - space to be unwound on exit (includes the call JS arguments space and
1236 // the additional space allocated for the fast call). 1236 // the additional space allocated for the fast call).
1237 void CallApiFunctionAndReturn(ExternalReference function, 1237 void CallApiFunctionAndReturn(ExternalReference function,
1238 Address function_address,
1239 ExternalReference thunk_ref,
1240 Register thunk_last_arg,
1241 int stack_space, 1238 int stack_space,
1242 bool returns_handle, 1239 bool returns_handle,
1243 int return_value_offset_from_fp); 1240 int return_value_offset_from_fp);
1244 1241
1245 // Jump to the builtin routine. 1242 // Jump to the builtin routine.
1246 void JumpToExternalReference(const ExternalReference& builtin, 1243 void JumpToExternalReference(const ExternalReference& builtin,
1247 BranchDelaySlot bd = PROTECT); 1244 BranchDelaySlot bd = PROTECT);
1248 1245
1249 // Invoke specified builtin JavaScript function. Adds an entry to 1246 // Invoke specified builtin JavaScript function. Adds an entry to
1250 // the unresolved list if the name does not resolve. 1247 // the unresolved list if the name does not resolve.
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
1585 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 1582 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
1586 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1583 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1587 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1584 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1588 #else 1585 #else
1589 #define ACCESS_MASM(masm) masm-> 1586 #define ACCESS_MASM(masm) masm->
1590 #endif 1587 #endif
1591 1588
1592 } } // namespace v8::internal 1589 } } // namespace v8::internal
1593 1590
1594 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1591 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | src/mips/macro-assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698