OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_OBJECTS_H_ | 5 #ifndef V8_OBJECTS_H_ |
6 #define V8_OBJECTS_H_ | 6 #define V8_OBJECTS_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/assert-scope.h" | 9 #include "src/assert-scope.h" |
10 #include "src/base/bits.h" | 10 #include "src/base/bits.h" |
(...skipping 1179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1190 V(kRegisterDidNotMatchExpectedRoot, "Register did not match expected root") \ | 1190 V(kRegisterDidNotMatchExpectedRoot, "Register did not match expected root") \ |
1191 V(kRegisterWasClobbered, "Register was clobbered") \ | 1191 V(kRegisterWasClobbered, "Register was clobbered") \ |
1192 V(kRememberedSetPointerInNewSpace, "Remembered set pointer is in new space") \ | 1192 V(kRememberedSetPointerInNewSpace, "Remembered set pointer is in new space") \ |
1193 V(kReturnAddressNotFoundInFrame, "Return address not found in frame") \ | 1193 V(kReturnAddressNotFoundInFrame, "Return address not found in frame") \ |
1194 V(kRhsHasBeenClobbered, "Rhs has been clobbered") \ | 1194 V(kRhsHasBeenClobbered, "Rhs has been clobbered") \ |
1195 V(kScopedBlock, "ScopedBlock") \ | 1195 V(kScopedBlock, "ScopedBlock") \ |
1196 V(kSmiAdditionOverflow, "Smi addition overflow") \ | 1196 V(kSmiAdditionOverflow, "Smi addition overflow") \ |
1197 V(kSmiSubtractionOverflow, "Smi subtraction overflow") \ | 1197 V(kSmiSubtractionOverflow, "Smi subtraction overflow") \ |
1198 V(kStackAccessBelowStackPointer, "Stack access below stack pointer") \ | 1198 V(kStackAccessBelowStackPointer, "Stack access below stack pointer") \ |
1199 V(kStackFrameTypesMustMatch, "Stack frame types must match") \ | 1199 V(kStackFrameTypesMustMatch, "Stack frame types must match") \ |
1200 V(kSwitchStatementMixedOrNonLiteralSwitchLabels, \ | |
1201 "SwitchStatement: mixed or non-literal switch labels") \ | |
1202 V(kSwitchStatementTooManyClauses, "SwitchStatement: too many clauses") \ | |
1203 V(kTheCurrentStackPointerIsBelowCsp, \ | 1200 V(kTheCurrentStackPointerIsBelowCsp, \ |
1204 "The current stack pointer is below csp") \ | 1201 "The current stack pointer is below csp") \ |
1205 V(kTheInstructionShouldBeALui, "The instruction should be a lui") \ | 1202 V(kTheInstructionShouldBeALui, "The instruction should be a lui") \ |
1206 V(kTheInstructionShouldBeAnOri, "The instruction should be an ori") \ | 1203 V(kTheInstructionShouldBeAnOri, "The instruction should be an ori") \ |
1207 V(kTheInstructionToPatchShouldBeALoadFromConstantPool, \ | 1204 V(kTheInstructionToPatchShouldBeALoadFromConstantPool, \ |
1208 "The instruction to patch should be a load from the constant pool") \ | 1205 "The instruction to patch should be a load from the constant pool") \ |
1209 V(kTheInstructionToPatchShouldBeAnLdrLiteral, \ | 1206 V(kTheInstructionToPatchShouldBeAnLdrLiteral, \ |
1210 "The instruction to patch should be a ldr literal") \ | 1207 "The instruction to patch should be a ldr literal") \ |
1211 V(kTheInstructionToPatchShouldBeALui, \ | 1208 V(kTheInstructionToPatchShouldBeALui, \ |
1212 "The instruction to patch should be a lui") \ | 1209 "The instruction to patch should be a lui") \ |
(...skipping 9923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11136 } else { | 11133 } else { |
11137 value &= ~(1 << bit_position); | 11134 value &= ~(1 << bit_position); |
11138 } | 11135 } |
11139 return value; | 11136 return value; |
11140 } | 11137 } |
11141 }; | 11138 }; |
11142 | 11139 |
11143 } } // namespace v8::internal | 11140 } } // namespace v8::internal |
11144 | 11141 |
11145 #endif // V8_OBJECTS_H_ | 11142 #endif // V8_OBJECTS_H_ |
OLD | NEW |