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 #ifndef V8_CCTEST_COMPILER_FUNCTION_TESTER_H_ | 5 #ifndef V8_CCTEST_COMPILER_FUNCTION_TESTER_H_ |
6 #define V8_CCTEST_COMPILER_FUNCTION_TESTER_H_ | 6 #define V8_CCTEST_COMPILER_FUNCTION_TESTER_H_ |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 #include "test/cctest/cctest.h" | 9 #include "test/cctest/cctest.h" |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 namespace compiler { | 27 namespace compiler { |
28 | 28 |
29 class FunctionTester : public InitializedHandleScope { | 29 class FunctionTester : public InitializedHandleScope { |
30 public: | 30 public: |
31 explicit FunctionTester(const char* source, uint32_t flags = 0) | 31 explicit FunctionTester(const char* source, uint32_t flags = 0) |
32 : isolate(main_isolate()), | 32 : isolate(main_isolate()), |
33 function((FLAG_allow_natives_syntax = true, NewFunction(source))), | 33 function((FLAG_allow_natives_syntax = true, NewFunction(source))), |
34 flags_(flags) { | 34 flags_(flags) { |
35 Compile(function); | 35 Compile(function); |
36 const uint32_t supported_flags = CompilationInfo::kContextSpecializing | | 36 const uint32_t supported_flags = CompilationInfo::kContextSpecializing | |
| 37 CompilationInfo::kBuiltinInliningEnabled | |
37 CompilationInfo::kInliningEnabled | | 38 CompilationInfo::kInliningEnabled | |
38 CompilationInfo::kTypingEnabled; | 39 CompilationInfo::kTypingEnabled; |
39 CHECK_EQ(0u, flags_ & ~supported_flags); | 40 CHECK_EQ(0u, flags_ & ~supported_flags); |
40 } | 41 } |
41 | 42 |
42 explicit FunctionTester(Graph* graph) | 43 explicit FunctionTester(Graph* graph) |
43 : isolate(main_isolate()), | 44 : isolate(main_isolate()), |
44 function(NewFunction("(function(a,b){})")), | 45 function(NewFunction("(function(a,b){})")), |
45 flags_(0) { | 46 flags_(0) { |
46 CompileGraph(graph); | 47 CompileGraph(graph); |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 CHECK(!code.is_null()); | 221 CHECK(!code.is_null()); |
221 function->ReplaceCode(*code); | 222 function->ReplaceCode(*code); |
222 return function; | 223 return function; |
223 } | 224 } |
224 }; | 225 }; |
225 } | 226 } |
226 } | 227 } |
227 } // namespace v8::internal::compiler | 228 } // namespace v8::internal::compiler |
228 | 229 |
229 #endif // V8_CCTEST_COMPILER_FUNCTION_TESTER_H_ | 230 #endif // V8_CCTEST_COMPILER_FUNCTION_TESTER_H_ |
OLD | NEW |