OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 #include "src/compiler/code-generator.h" | 5 #include "src/compiler/code-generator.h" |
6 | 6 |
7 #include "src/arm/macro-assembler-arm.h" | 7 #include "src/arm/macro-assembler-arm.h" |
8 #include "src/ast/scopes.h" | 8 #include "src/ast/scopes.h" |
9 #include "src/compiler/code-generator-impl.h" | 9 #include "src/compiler/code-generator-impl.h" |
10 #include "src/compiler/gap-resolver.h" | 10 #include "src/compiler/gap-resolver.h" |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 case kFloatGreaterThanOrEqualOrUnordered: | 289 case kFloatGreaterThanOrEqualOrUnordered: |
290 return hs; | 290 return hs; |
291 case kFloatLessThanOrEqualOrUnordered: | 291 case kFloatLessThanOrEqualOrUnordered: |
292 return le; | 292 return le; |
293 case kFloatGreaterThan: | 293 case kFloatGreaterThan: |
294 return gt; | 294 return gt; |
295 case kOverflow: | 295 case kOverflow: |
296 return vs; | 296 return vs; |
297 case kNotOverflow: | 297 case kNotOverflow: |
298 return vc; | 298 return vc; |
| 299 case kPositiveOrZero: |
| 300 return pl; |
| 301 case kNegative: |
| 302 return mi; |
299 default: | 303 default: |
300 break; | 304 break; |
301 } | 305 } |
302 UNREACHABLE(); | 306 UNREACHABLE(); |
303 return kNoCondition; | 307 return kNoCondition; |
304 } | 308 } |
305 | 309 |
306 } // namespace | 310 } // namespace |
307 | 311 |
308 #define ASSEMBLE_CHECKED_LOAD_FP(Type) \ | 312 #define ASSEMBLE_CHECKED_LOAD_FP(Type) \ |
(...skipping 1503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1812 padding_size -= v8::internal::Assembler::kInstrSize; | 1816 padding_size -= v8::internal::Assembler::kInstrSize; |
1813 } | 1817 } |
1814 } | 1818 } |
1815 } | 1819 } |
1816 | 1820 |
1817 #undef __ | 1821 #undef __ |
1818 | 1822 |
1819 } // namespace compiler | 1823 } // namespace compiler |
1820 } // namespace internal | 1824 } // namespace internal |
1821 } // namespace v8 | 1825 } // namespace v8 |
OLD | NEW |