| OLD | NEW | 
|---|
| 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  Loading... | 
| 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<LoadICStub>(isolate); | 
|  | 1962     Recompile<KeyedLoadICTFStub>(isolate); | 
| 1961   } | 1963   } | 
| 1962   v8_isolate->Dispose(); | 1964   v8_isolate->Dispose(); | 
| 1963 } | 1965 } | 
| 1964 | 1966 | 
| 1965 }  // namespace internal | 1967 }  // namespace internal | 
| 1966 }  // namespace v8 | 1968 }  // namespace v8 | 
| OLD | NEW | 
|---|