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/objects.h

Issue 191233003: Add out-of-line constant pool support to Arm. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix other Arches. Created 6 years, 9 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/ia32/assembler-ia32.cc ('k') | src/x64/assembler-x64.h » ('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 1308 matching lines...) Expand 10 before | Expand all | Expand 10 after
1319 V(kStackFrameTypesMustMatch, "Stack frame types must match") \ 1319 V(kStackFrameTypesMustMatch, "Stack frame types must match") \
1320 V(kSwitchStatementMixedOrNonLiteralSwitchLabels, \ 1320 V(kSwitchStatementMixedOrNonLiteralSwitchLabels, \
1321 "SwitchStatement: mixed or non-literal switch labels") \ 1321 "SwitchStatement: mixed or non-literal switch labels") \
1322 V(kSwitchStatementTooManyClauses, "SwitchStatement: too many clauses") \ 1322 V(kSwitchStatementTooManyClauses, "SwitchStatement: too many clauses") \
1323 V(kTheCurrentStackPointerIsBelowCsp, \ 1323 V(kTheCurrentStackPointerIsBelowCsp, \
1324 "The current stack pointer is below csp") \ 1324 "The current stack pointer is below csp") \
1325 V(kTheInstructionShouldBeALui, "The instruction should be a lui") \ 1325 V(kTheInstructionShouldBeALui, "The instruction should be a lui") \
1326 V(kTheInstructionShouldBeAnOri, "The instruction should be an ori") \ 1326 V(kTheInstructionShouldBeAnOri, "The instruction should be an ori") \
1327 V(kTheInstructionToPatchShouldBeALoadFromPc, \ 1327 V(kTheInstructionToPatchShouldBeALoadFromPc, \
1328 "The instruction to patch should be a load from pc") \ 1328 "The instruction to patch should be a load from pc") \
1329 V(kTheInstructionToPatchShouldBeALoadFromPp, \
1330 "The instruction to patch should be a load from pp") \
1329 V(kTheInstructionToPatchShouldBeAnLdrLiteral, \ 1331 V(kTheInstructionToPatchShouldBeAnLdrLiteral, \
1330 "The instruction to patch should be a ldr literal") \ 1332 "The instruction to patch should be a ldr literal") \
1331 V(kTheInstructionToPatchShouldBeALui, \ 1333 V(kTheInstructionToPatchShouldBeALui, \
1332 "The instruction to patch should be a lui") \ 1334 "The instruction to patch should be a lui") \
1333 V(kTheInstructionToPatchShouldBeAnOri, \ 1335 V(kTheInstructionToPatchShouldBeAnOri, \
1334 "The instruction to patch should be an ori") \ 1336 "The instruction to patch should be an ori") \
1335 V(kTheSourceAndDestinationAreTheSame, \ 1337 V(kTheSourceAndDestinationAreTheSame, \
1336 "The source and destination are the same") \ 1338 "The source and destination are the same") \
1337 V(kTheStackPointerIsNotAligned, "The stack pointer is not aligned.") \ 1339 V(kTheStackPointerIsNotAligned, "The stack pointer is not aligned.") \
1338 V(kTheStackWasCorruptedByMacroAssemblerCall, \ 1340 V(kTheStackWasCorruptedByMacroAssemblerCall, \
(...skipping 9443 matching lines...) Expand 10 before | Expand all | Expand 10 after
10782 } else { 10784 } else {
10783 value &= ~(1 << bit_position); 10785 value &= ~(1 << bit_position);
10784 } 10786 }
10785 return value; 10787 return value;
10786 } 10788 }
10787 }; 10789 };
10788 10790
10789 } } // namespace v8::internal 10791 } } // namespace v8::internal
10790 10792
10791 #endif // V8_OBJECTS_H_ 10793 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/ia32/assembler-ia32.cc ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698