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

Side by Side Diff: test/cctest/test-code-stub-assembler.cc

Issue 2556123002: [turbofan] Further adapting machine graph verifier to code stubs. (Closed)
Patch Set: Created 4 years 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/compiler/pipeline.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 #include "src/base/utils/random-number-generator.h" 5 #include "src/base/utils/random-number-generator.h"
6 #include "src/code-factory.h" 6 #include "src/code-factory.h"
7 #include "src/code-stub-assembler.h" 7 #include "src/code-stub-assembler.h"
8 #include "src/compiler/node.h" 8 #include "src/compiler/node.h"
9 #include "src/isolate.h" 9 #include "src/isolate.h"
10 #include "test/cctest/compiler/code-assembler-tester.h" 10 #include "test/cctest/compiler/code-assembler-tester.h"
(...skipping 1940 matching lines...) Expand 10 before | Expand all | Expand 10 after
1951 1951
1952 { 1952 {
1953 v8::Isolate::Scope isolate_scope(v8_isolate); 1953 v8::Isolate::Scope isolate_scope(v8_isolate);
1954 LocalContext env(v8_isolate); 1954 LocalContext env(v8_isolate);
1955 v8::HandleScope scope(v8_isolate); 1955 v8::HandleScope scope(v8_isolate);
1956 1956
1957 FLAG_csa_verify = true; 1957 FLAG_csa_verify = true;
1958 1958
1959 // Recompile some stubs here. 1959 // Recompile some stubs here.
1960 Recompile<LoadGlobalICStub>(isolate, LoadGlobalICState(NOT_INSIDE_TYPEOF)); 1960 Recompile<LoadGlobalICStub>(isolate, LoadGlobalICState(NOT_INSIDE_TYPEOF));
1961 Recompile<LoadGlobalICTrampolineStub>(isolate,
1962 LoadGlobalICState(NOT_INSIDE_TYPEOF));
1961 Recompile<LoadICStub>(isolate); 1963 Recompile<LoadICStub>(isolate);
1964 Recompile<LoadICTrampolineStub>(isolate);
1962 Recompile<KeyedLoadICTFStub>(isolate); 1965 Recompile<KeyedLoadICTFStub>(isolate);
1966 Recompile<KeyedLoadICTrampolineTFStub>(isolate);
1967 Recompile<StoreICStub>(isolate, StoreICState(STRICT));
1968 Recompile<StoreICTrampolineStub>(isolate, StoreICState(STRICT));
1969 Recompile<KeyedStoreICTFStub>(isolate, StoreICState(STRICT));
1970 Recompile<KeyedStoreICTrampolineTFStub>(isolate, StoreICState(STRICT));
1963 } 1971 }
1964 v8_isolate->Dispose(); 1972 v8_isolate->Dispose();
1965 } 1973 }
1966 1974
1967 } // namespace internal 1975 } // namespace internal
1968 } // namespace v8 1976 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/pipeline.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698