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

Side by Side Diff: src/code-stub-assembler.h

Issue 2101123005: [turbofan] Introduce integer multiplication with overflow. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. 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 | « src/base/bits.cc ('k') | src/code-stubs.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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_CODE_STUB_ASSEMBLER_H_ 5 #ifndef V8_CODE_STUB_ASSEMBLER_H_
6 #define V8_CODE_STUB_ASSEMBLER_H_ 6 #define V8_CODE_STUB_ASSEMBLER_H_
7 7
8 #include <functional> 8 #include <functional>
9 9
10 #include "src/compiler/code-assembler.h" 10 #include "src/compiler/code-assembler.h"
(...skipping 26 matching lines...) Expand all
37 // Create with JSCall linkage. 37 // Create with JSCall linkage.
38 CodeStubAssembler(Isolate* isolate, Zone* zone, int parameter_count, 38 CodeStubAssembler(Isolate* isolate, Zone* zone, int parameter_count,
39 Code::Flags flags, const char* name); 39 Code::Flags flags, const char* name);
40 40
41 enum ParameterMode { INTEGER_PARAMETERS, SMI_PARAMETERS }; 41 enum ParameterMode { INTEGER_PARAMETERS, SMI_PARAMETERS };
42 42
43 compiler::Node* BooleanMapConstant(); 43 compiler::Node* BooleanMapConstant();
44 compiler::Node* EmptyStringConstant(); 44 compiler::Node* EmptyStringConstant();
45 compiler::Node* HeapNumberMapConstant(); 45 compiler::Node* HeapNumberMapConstant();
46 compiler::Node* NoContextConstant(); 46 compiler::Node* NoContextConstant();
47 compiler::Node* MinusZeroConstant();
48 compiler::Node* NanConstant(); 47 compiler::Node* NanConstant();
49 compiler::Node* NullConstant(); 48 compiler::Node* NullConstant();
49 compiler::Node* MinusZeroConstant();
50 compiler::Node* UndefinedConstant(); 50 compiler::Node* UndefinedConstant();
51 compiler::Node* TheHoleConstant(); 51 compiler::Node* TheHoleConstant();
52 compiler::Node* HashSeed(); 52 compiler::Node* HashSeed();
53 compiler::Node* StaleRegisterConstant(); 53 compiler::Node* StaleRegisterConstant();
54 54
55 // Float64 operations. 55 // Float64 operations.
56 compiler::Node* Float64Ceil(compiler::Node* x); 56 compiler::Node* Float64Ceil(compiler::Node* x);
57 compiler::Node* Float64Floor(compiler::Node* x); 57 compiler::Node* Float64Floor(compiler::Node* x);
58 compiler::Node* Float64Round(compiler::Node* x); 58 compiler::Node* Float64Round(compiler::Node* x);
59 compiler::Node* Float64Trunc(compiler::Node* x); 59 compiler::Node* Float64Trunc(compiler::Node* x);
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 AllocationFlags flags, 475 AllocationFlags flags,
476 compiler::Node* top_adddress, 476 compiler::Node* top_adddress,
477 compiler::Node* limit_address); 477 compiler::Node* limit_address);
478 478
479 static const int kElementLoopUnrollThreshold = 8; 479 static const int kElementLoopUnrollThreshold = 8;
480 }; 480 };
481 481
482 } // namespace internal 482 } // namespace internal
483 } // namespace v8 483 } // namespace v8
484 #endif // V8_CODE_STUB_ASSEMBLER_H_ 484 #endif // V8_CODE_STUB_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/base/bits.cc ('k') | src/code-stubs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698