Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Side by Side Diff: src/compiler/arm/code-generator-arm.cc

Issue 2065243005: [arm64] Generate adds/ands. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove static Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/compiler/arm64/code-generator-arm64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | src/compiler/arm64/code-generator-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698