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

Side by Side Diff: src/objects.h

Issue 170623002: A64: Tidy up Push and Pop TODOs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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/a64/stub-cache-a64.cc ('k') | test/cctest/test-assembler-a64.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 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after
1325 V(kTheInstructionToPatchShouldBeALoadFromPc, \ 1325 V(kTheInstructionToPatchShouldBeALoadFromPc, \
1326 "The instruction to patch should be a load from pc") \ 1326 "The instruction to patch should be a load from pc") \
1327 V(kTheInstructionToPatchShouldBeAnLdrLiteral, \ 1327 V(kTheInstructionToPatchShouldBeAnLdrLiteral, \
1328 "The instruction to patch should be a ldr literal") \ 1328 "The instruction to patch should be a ldr literal") \
1329 V(kTheInstructionToPatchShouldBeALui, \ 1329 V(kTheInstructionToPatchShouldBeALui, \
1330 "The instruction to patch should be a lui") \ 1330 "The instruction to patch should be a lui") \
1331 V(kTheInstructionToPatchShouldBeAnOri, \ 1331 V(kTheInstructionToPatchShouldBeAnOri, \
1332 "The instruction to patch should be an ori") \ 1332 "The instruction to patch should be an ori") \
1333 V(kTheSourceAndDestinationAreTheSame, \ 1333 V(kTheSourceAndDestinationAreTheSame, \
1334 "The source and destination are the same") \ 1334 "The source and destination are the same") \
1335 V(kTheStackPointerIsNotAligned, "The stack pointer is not aligned.") \
1335 V(kTheStackWasCorruptedByMacroAssemblerCall, \ 1336 V(kTheStackWasCorruptedByMacroAssemblerCall, \
1336 "The stack was corrupted by MacroAssembler::Call()") \ 1337 "The stack was corrupted by MacroAssembler::Call()") \
1337 V(kTooManyParametersLocals, "Too many parameters/locals") \ 1338 V(kTooManyParametersLocals, "Too many parameters/locals") \
1338 V(kTooManyParameters, "Too many parameters") \ 1339 V(kTooManyParameters, "Too many parameters") \
1339 V(kTooManySpillSlotsNeededForOSR, "Too many spill slots needed for OSR") \ 1340 V(kTooManySpillSlotsNeededForOSR, "Too many spill slots needed for OSR") \
1340 V(kToOperand32UnsupportedImmediate, "ToOperand32 unsupported immediate.") \ 1341 V(kToOperand32UnsupportedImmediate, "ToOperand32 unsupported immediate.") \
1341 V(kToOperandIsDoubleRegisterUnimplemented, \ 1342 V(kToOperandIsDoubleRegisterUnimplemented, \
1342 "ToOperand IsDoubleRegister unimplemented") \ 1343 "ToOperand IsDoubleRegister unimplemented") \
1343 V(kToOperandUnsupportedDoubleImmediate, \ 1344 V(kToOperandUnsupportedDoubleImmediate, \
1344 "ToOperand Unsupported double immediate") \ 1345 "ToOperand Unsupported double immediate") \
(...skipping 9420 matching lines...) Expand 10 before | Expand all | Expand 10 after
10765 } else { 10766 } else {
10766 value &= ~(1 << bit_position); 10767 value &= ~(1 << bit_position);
10767 } 10768 }
10768 return value; 10769 return value;
10769 } 10770 }
10770 }; 10771 };
10771 10772
10772 } } // namespace v8::internal 10773 } } // namespace v8::internal
10773 10774
10774 #endif // V8_OBJECTS_H_ 10775 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/a64/stub-cache-a64.cc ('k') | test/cctest/test-assembler-a64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698