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

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

Issue 10692192: MIPS: Swap bitfield3 and backpointer. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 5 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 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 Register scratch2, 1389 Register scratch2,
1390 Label* failure); 1390 Label* failure);
1391 1391
1392 void ClampUint8(Register output_reg, Register input_reg); 1392 void ClampUint8(Register output_reg, Register input_reg);
1393 1393
1394 void ClampDoubleToUint8(Register result_reg, 1394 void ClampDoubleToUint8(Register result_reg,
1395 DoubleRegister input_reg, 1395 DoubleRegister input_reg,
1396 DoubleRegister temp_double_reg); 1396 DoubleRegister temp_double_reg);
1397 1397
1398 1398
1399 void LoadInstanceDescriptors(Register map, Register descriptors); 1399 void LoadInstanceDescriptors(Register map,
1400 Register descriptors,
1401 Register scratch);
1400 1402
1401 1403
1402 // Activation support. 1404 // Activation support.
1403 void EnterFrame(StackFrame::Type type); 1405 void EnterFrame(StackFrame::Type type);
1404 void LeaveFrame(StackFrame::Type type); 1406 void LeaveFrame(StackFrame::Type type);
1405 1407
1406 // Patch the relocated value (lui/ori pair). 1408 // Patch the relocated value (lui/ori pair).
1407 void PatchRelocatedValue(Register li_location, 1409 void PatchRelocatedValue(Register li_location,
1408 Register scratch, 1410 Register scratch,
1409 Register new_value); 1411 Register new_value);
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
1533 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 1535 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
1534 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1536 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1535 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1537 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1536 #else 1538 #else
1537 #define ACCESS_MASM(masm) masm-> 1539 #define ACCESS_MASM(masm) masm->
1538 #endif 1540 #endif
1539 1541
1540 } } // namespace v8::internal 1542 } } // namespace v8::internal
1541 1543
1542 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ 1544 #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