OLD | NEW |
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 Loading... |
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.") \ | |
1336 V(kTheStackWasCorruptedByMacroAssemblerCall, \ | 1335 V(kTheStackWasCorruptedByMacroAssemblerCall, \ |
1337 "The stack was corrupted by MacroAssembler::Call()") \ | 1336 "The stack was corrupted by MacroAssembler::Call()") \ |
1338 V(kTooManyParametersLocals, "Too many parameters/locals") \ | 1337 V(kTooManyParametersLocals, "Too many parameters/locals") \ |
1339 V(kTooManyParameters, "Too many parameters") \ | 1338 V(kTooManyParameters, "Too many parameters") \ |
1340 V(kTooManySpillSlotsNeededForOSR, "Too many spill slots needed for OSR") \ | 1339 V(kTooManySpillSlotsNeededForOSR, "Too many spill slots needed for OSR") \ |
1341 V(kToOperand32UnsupportedImmediate, "ToOperand32 unsupported immediate.") \ | 1340 V(kToOperand32UnsupportedImmediate, "ToOperand32 unsupported immediate.") \ |
1342 V(kToOperandIsDoubleRegisterUnimplemented, \ | 1341 V(kToOperandIsDoubleRegisterUnimplemented, \ |
1343 "ToOperand IsDoubleRegister unimplemented") \ | 1342 "ToOperand IsDoubleRegister unimplemented") \ |
1344 V(kToOperandUnsupportedDoubleImmediate, \ | 1343 V(kToOperandUnsupportedDoubleImmediate, \ |
1345 "ToOperand Unsupported double immediate") \ | 1344 "ToOperand Unsupported double immediate") \ |
(...skipping 9417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10763 } else { | 10762 } else { |
10764 value &= ~(1 << bit_position); | 10763 value &= ~(1 << bit_position); |
10765 } | 10764 } |
10766 return value; | 10765 return value; |
10767 } | 10766 } |
10768 }; | 10767 }; |
10769 | 10768 |
10770 } } // namespace v8::internal | 10769 } } // namespace v8::internal |
10771 | 10770 |
10772 #endif // V8_OBJECTS_H_ | 10771 #endif // V8_OBJECTS_H_ |
OLD | NEW |