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 | | |
38 CompilationInfo::kInliningEnabled | | 37 CompilationInfo::kInliningEnabled | |
39 CompilationInfo::kTypingEnabled; | 38 CompilationInfo::kTypingEnabled; |
40 CHECK_EQ(0u, flags_ & ~supported_flags); | 39 CHECK_EQ(0u, flags_ & ~supported_flags); |
41 } | 40 } |
42 | 41 |
43 explicit FunctionTester(Graph* graph) | 42 explicit FunctionTester(Graph* graph) |
44 : isolate(main_isolate()), | 43 : isolate(main_isolate()), |
45 function(NewFunction("(function(a,b){})")), | 44 function(NewFunction("(function(a,b){})")), |
46 flags_(0) { | 45 flags_(0) { |
47 CompileGraph(graph); | 46 CompileGraph(graph); |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 CHECK(!code.is_null()); | 221 CHECK(!code.is_null()); |
223 function->ReplaceCode(*code); | 222 function->ReplaceCode(*code); |
224 return function; | 223 return function; |
225 } | 224 } |
226 }; | 225 }; |
227 } | 226 } |
228 } | 227 } |
229 } // namespace v8::internal::compiler | 228 } // namespace v8::internal::compiler |
230 | 229 |
231 #endif // V8_CCTEST_COMPILER_FUNCTION_TESTER_H_ | 230 #endif // V8_CCTEST_COMPILER_FUNCTION_TESTER_H_ |
OLD | NEW |