Lines Matching refs:Compiler
7 #include "src/compiler.h"
12 #include "src/compiler/pipeline.h"
346 // the optimizing compiler.
392 if (!Compiler::EnsureDeoptimizationSupport(info())) {
405 compiler::Pipeline pipeline(info());
548 // Sets the expected number of properties based on estimate from compiler.
657 VMState<COMPILER> state(info->isolate());
812 MaybeHandle<Code> Compiler::GetUnoptimizedCode(Handle<JSFunction> function) {
828 MaybeHandle<Code> Compiler::GetLazyCode(Handle<JSFunction> function) {
835 VMState<COMPILER> state(info.isolate());
862 if (Compiler::GetOptimizedCode(
864 Compiler::NOT_CONCURRENT).ToHandle(&opt_code)) {
873 MaybeHandle<Code> Compiler::GetUnoptimizedCode(
883 bool Compiler::EnsureCompiled(Handle<JSFunction> function,
886 MaybeHandle<Code> maybe_code = Compiler::GetLazyCode(function);
902 bool Compiler::EnsureDeoptimizationSupport(CompilationInfo* info) {
941 MaybeHandle<Code> Compiler::GetDebugCode(Handle<JSFunction> function) {
944 VMState<COMPILER> state(isolate);
971 void Compiler::CompileForLiveEdit(Handle<Script> script) {
975 VMState<COMPILER> state(info.isolate());
1007 { VMState<COMPILER> state(info->isolate());
1015 !Compiler::DebuggerWantsEagerCompilation(info);
1086 MaybeHandle<JSFunction> Compiler::GetFunctionFromEval(
1118 // to handle eval-code in the optimizing compiler.
1137 Handle<SharedFunctionInfo> Compiler::CompileScript(
1233 Handle<SharedFunctionInfo> Compiler::CompileStreamedScript(
1246 Handle<SharedFunctionInfo> Compiler::BuildFunctionInfo(
1303 MaybeHandle<Code> Compiler::GetOptimizedCode(Handle<JSFunction> function,
1316 VMState<COMPILER> state(isolate);
1350 Handle<Code> Compiler::GetConcurrentlyOptimizedCode(OptimizedCompileJob* job) {
1356 VMState<COMPILER> state(isolate);
1400 bool Compiler::DebuggerWantsEagerCompilation(CompilationInfo* info,