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.") \ |
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 9409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10754 } else { | 10755 } else { |
10755 value &= ~(1 << bit_position); | 10756 value &= ~(1 << bit_position); |
10756 } | 10757 } |
10757 return value; | 10758 return value; |
10758 } | 10759 } |
10759 }; | 10760 }; |
10760 | 10761 |
10761 } } // namespace v8::internal | 10762 } } // namespace v8::internal |
10762 | 10763 |
10763 #endif // V8_OBJECTS_H_ | 10764 #endif // V8_OBJECTS_H_ |
OLD | NEW |