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

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: 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
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 1306 matching lines...) Expand 10 before | Expand all | Expand 10 after
1317 V(kStackFrameTypesMustMatch, "Stack frame types must match") \ 1317 V(kStackFrameTypesMustMatch, "Stack frame types must match") \
1318 V(kSwitchStatementMixedOrNonLiteralSwitchLabels, \ 1318 V(kSwitchStatementMixedOrNonLiteralSwitchLabels, \
1319 "SwitchStatement: mixed or non-literal switch labels") \ 1319 "SwitchStatement: mixed or non-literal switch labels") \
1320 V(kSwitchStatementTooManyClauses, "SwitchStatement: too many clauses") \ 1320 V(kSwitchStatementTooManyClauses, "SwitchStatement: too many clauses") \
1321 V(kTheCurrentStackPointerIsBelowCsp, \ 1321 V(kTheCurrentStackPointerIsBelowCsp, \
1322 "The current stack pointer is below csp") \ 1322 "The current stack pointer is below csp") \
1323 V(kTheInstructionShouldBeALui, "The instruction should be a lui") \ 1323 V(kTheInstructionShouldBeALui, "The instruction should be a lui") \
1324 V(kTheInstructionShouldBeAnOri, "The instruction should be an ori") \ 1324 V(kTheInstructionShouldBeAnOri, "The instruction should be an ori") \
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(kTheInstructionToPatchShouldBeALoadFromPp, \
1328 "The instruction to patch should be a load from pp") \
1327 V(kTheInstructionToPatchShouldBeAnLdrLiteral, \ 1329 V(kTheInstructionToPatchShouldBeAnLdrLiteral, \
1328 "The instruction to patch should be a ldr literal") \ 1330 "The instruction to patch should be a ldr literal") \
1329 V(kTheInstructionToPatchShouldBeALui, \ 1331 V(kTheInstructionToPatchShouldBeALui, \
1330 "The instruction to patch should be a lui") \ 1332 "The instruction to patch should be a lui") \
1331 V(kTheInstructionToPatchShouldBeAnOri, \ 1333 V(kTheInstructionToPatchShouldBeAnOri, \
1332 "The instruction to patch should be an ori") \ 1334 "The instruction to patch should be an ori") \
1333 V(kTheSourceAndDestinationAreTheSame, \ 1335 V(kTheSourceAndDestinationAreTheSame, \
1334 "The source and destination are the same") \ 1336 "The source and destination are the same") \
1335 V(kTheStackPointerIsNotAligned, "The stack pointer is not aligned.") \ 1337 V(kTheStackPointerIsNotAligned, "The stack pointer is not aligned.") \
1336 V(kTheStackWasCorruptedByMacroAssemblerCall, \ 1338 V(kTheStackWasCorruptedByMacroAssemblerCall, \
(...skipping 9464 matching lines...) Expand 10 before | Expand all | Expand 10 after
10801 } else { 10803 } else {
10802 value &= ~(1 << bit_position); 10804 value &= ~(1 << bit_position);
10803 } 10805 }
10804 return value; 10806 return value;
10805 } 10807 }
10806 }; 10808 };
10807 10809
10808 } } // namespace v8::internal 10810 } } // namespace v8::internal
10809 10811
10810 #endif // V8_OBJECTS_H_ 10812 #endif // V8_OBJECTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698