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

Side by Side Diff: src/code-factory.h

Issue 2146293003: [builtins] implement Array.prototype.includes in TurboFan (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix IsComparisonOpcode 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
OLDNEW
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_CODE_FACTORY_H_ 5 #ifndef V8_CODE_FACTORY_H_
6 #define V8_CODE_FACTORY_H_ 6 #define V8_CODE_FACTORY_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assembler.h" 9 #include "src/assembler.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 static Callable Inc(Isolate* isolate); 100 static Callable Inc(Isolate* isolate);
101 static Callable Dec(Isolate* isolate); 101 static Callable Dec(Isolate* isolate);
102 static Callable LessThan(Isolate* isolate); 102 static Callable LessThan(Isolate* isolate);
103 static Callable LessThanOrEqual(Isolate* isolate); 103 static Callable LessThanOrEqual(Isolate* isolate);
104 static Callable GreaterThan(Isolate* isolate); 104 static Callable GreaterThan(Isolate* isolate);
105 static Callable GreaterThanOrEqual(Isolate* isolate); 105 static Callable GreaterThanOrEqual(Isolate* isolate);
106 static Callable Equal(Isolate* isolate); 106 static Callable Equal(Isolate* isolate);
107 static Callable NotEqual(Isolate* isolate); 107 static Callable NotEqual(Isolate* isolate);
108 static Callable StrictEqual(Isolate* isolate); 108 static Callable StrictEqual(Isolate* isolate);
109 static Callable StrictNotEqual(Isolate* isolate); 109 static Callable StrictNotEqual(Isolate* isolate);
110 static Callable SameValueZero(Isolate* isolate);
110 111
111 static Callable StringAdd(Isolate* isolate, StringAddFlags flags, 112 static Callable StringAdd(Isolate* isolate, StringAddFlags flags,
112 PretenureFlag pretenure_flag); 113 PretenureFlag pretenure_flag);
113 static Callable StringCompare(Isolate* isolate, Token::Value token); 114 static Callable StringCompare(Isolate* isolate, Token::Value token);
114 static Callable StringEqual(Isolate* isolate); 115 static Callable StringEqual(Isolate* isolate);
115 static Callable StringNotEqual(Isolate* isolate); 116 static Callable StringNotEqual(Isolate* isolate);
116 static Callable StringLessThan(Isolate* isolate); 117 static Callable StringLessThan(Isolate* isolate);
117 static Callable StringLessThanOrEqual(Isolate* isolate); 118 static Callable StringLessThanOrEqual(Isolate* isolate);
118 static Callable StringGreaterThan(Isolate* isolate); 119 static Callable StringGreaterThan(Isolate* isolate);
119 static Callable StringGreaterThanOrEqual(Isolate* isolate); 120 static Callable StringGreaterThanOrEqual(Isolate* isolate);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 Isolate* isolate, TailCallMode tail_call_mode, 156 Isolate* isolate, TailCallMode tail_call_mode,
156 CallableType function_type = CallableType::kAny); 157 CallableType function_type = CallableType::kAny);
157 static Callable InterpreterPushArgsAndConstruct(Isolate* isolate); 158 static Callable InterpreterPushArgsAndConstruct(Isolate* isolate);
158 static Callable InterpreterCEntry(Isolate* isolate, int result_size = 1); 159 static Callable InterpreterCEntry(Isolate* isolate, int result_size = 1);
159 }; 160 };
160 161
161 } // namespace internal 162 } // namespace internal
162 } // namespace v8 163 } // namespace v8
163 164
164 #endif // V8_CODE_FACTORY_H_ 165 #endif // V8_CODE_FACTORY_H_
OLDNEW
« src/builtins/builtins.cc ('K') | « src/builtins/builtins.cc ('k') | src/code-factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698