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

Side by Side Diff: test/compiler-unittests/compiler-unittests.h

Issue 480863002: Refactor ChangeLowering class to avoid template specialization. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix Created 6 years, 4 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 | Annotate | Revision Log
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 #ifndef V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_ 5 #ifndef V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_
6 #define V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_ 6 #define V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_
7 7
8 #include "include/v8.h" 8 #include "include/v8.h"
9 #include "src/zone.h" 9 #include "src/zone.h"
10 #include "testing/gtest-support.h" 10 #include "testing/gtest-support.h"
(...skipping 30 matching lines...) Expand all
41 #else 41 #else
42 #define TARGET_TYPED_TEST(Case, Name) TYPED_TEST(Case, DISABLED_##Name) 42 #define TARGET_TYPED_TEST(Case, Name) TYPED_TEST(Case, DISABLED_##Name)
43 #endif 43 #endif
44 44
45 45
46 class CompilerTest : public ::testing::Test { 46 class CompilerTest : public ::testing::Test {
47 public: 47 public:
48 CompilerTest(); 48 CompilerTest();
49 virtual ~CompilerTest(); 49 virtual ~CompilerTest();
50 50
51 Factory* factory() const;
51 Isolate* isolate() const { return reinterpret_cast<Isolate*>(isolate_); } 52 Isolate* isolate() const { return reinterpret_cast<Isolate*>(isolate_); }
52 Zone* zone() { return &zone_; } 53 Zone* zone() { return &zone_; }
53 54
54 static void SetUpTestCase(); 55 static void SetUpTestCase();
55 static void TearDownTestCase(); 56 static void TearDownTestCase();
56 57
57 private: 58 private:
58 static v8::Isolate* isolate_; 59 static v8::Isolate* isolate_;
59 v8::Isolate::Scope isolate_scope_; 60 v8::Isolate::Scope isolate_scope_;
60 v8::HandleScope handle_scope_; 61 v8::HandleScope handle_scope_;
61 v8::Context::Scope context_scope_; 62 v8::Context::Scope context_scope_;
62 Zone zone_; 63 Zone zone_;
63 }; 64 };
64 65
65 } // namespace compiler 66 } // namespace compiler
66 } // namespace internal 67 } // namespace internal
67 } // namespace v8 68 } // namespace v8
68 69
69 #endif // V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_ 70 #endif // V8_COMPILER_UNITTESTS_COMPILER_UNITTESTS_H_
OLDNEW
« no previous file with comments | « test/compiler-unittests/common-operator-unittest.cc ('k') | test/compiler-unittests/compiler-unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698