| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 #undef DECLARE_INSTRUCTION_FIELDS_OFFSETS | 255 #undef DECLARE_INSTRUCTION_FIELDS_OFFSETS |
| 256 | 256 |
| 257 // ImmPCRel is a compound field (not present in INSTRUCTION_FIELDS_LIST), formed | 257 // ImmPCRel is a compound field (not present in INSTRUCTION_FIELDS_LIST), formed |
| 258 // from ImmPCRelLo and ImmPCRelHi. | 258 // from ImmPCRelLo and ImmPCRelHi. |
| 259 const int ImmPCRel_mask = ImmPCRelLo_mask | ImmPCRelHi_mask; | 259 const int ImmPCRel_mask = ImmPCRelLo_mask | ImmPCRelHi_mask; |
| 260 | 260 |
| 261 // Condition codes. | 261 // Condition codes. |
| 262 enum Condition { | 262 enum Condition { |
| 263 eq = 0, | 263 eq = 0, |
| 264 ne = 1, | 264 ne = 1, |
| 265 hs = 2, | 265 hs = 2, cs = hs, |
| 266 lo = 3, | 266 lo = 3, cc = lo, |
| 267 mi = 4, | 267 mi = 4, |
| 268 pl = 5, | 268 pl = 5, |
| 269 vs = 6, | 269 vs = 6, |
| 270 vc = 7, | 270 vc = 7, |
| 271 hi = 8, | 271 hi = 8, |
| 272 ls = 9, | 272 ls = 9, |
| 273 ge = 10, | 273 ge = 10, |
| 274 lt = 11, | 274 lt = 11, |
| 275 gt = 12, | 275 gt = 12, |
| 276 le = 13, | 276 le = 13, |
| (...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1262 }; | 1262 }; |
| 1263 | 1263 |
| 1264 enum UnallocatedOp { | 1264 enum UnallocatedOp { |
| 1265 UnallocatedFixed = 0x00000000, | 1265 UnallocatedFixed = 0x00000000, |
| 1266 UnallocatedFMask = 0x00000000 | 1266 UnallocatedFMask = 0x00000000 |
| 1267 }; | 1267 }; |
| 1268 | 1268 |
| 1269 } } // namespace v8::internal | 1269 } } // namespace v8::internal |
| 1270 | 1270 |
| 1271 #endif // V8_ARM64_CONSTANTS_ARM64_H_ | 1271 #endif // V8_ARM64_CONSTANTS_ARM64_H_ |
| OLD | NEW |