Searched defs:Compile (Results 1 - 22 of 22) sorted by relevance

/external/clang/include/clang/Driver/
H A DPhases.h21 Compile, enumerator in enum:clang::driver::phases::ID
/external/v8/test/cctest/compiler/
H A Dtest-linkage.cc28 static Handle<JSFunction> Compile(const char* source) { function in namespace:v8::internal::compiler
44 Handle<JSFunction> function = Compile("a + b");
90 Handle<JSFunction> function = Compile("a + c");
H A Dfunction-tester.h31 Compile(function);
51 Compile(function);
165 Handle<JSFunction> Compile(Handle<JSFunction> function) { function in class:v8::internal::compiler::FunctionTester
226 // Compile the given machine graph instead of the source of the function
/external/v8/test/cctest/
H A Dtest-func-name-inference.cc96 static v8::Local<v8::Script> Compile(v8::Isolate* isolate, const char* src) { function
97 return v8::Script::Compile(
109 v8::Local<v8::Script> script = Compile(CcTest::isolate(),
122 Compile(CcTest::isolate(),
135 Compile(CcTest::isolate(),
150 Compile(CcTest::isolate(),
165 Compile(CcTest::isolate(),
182 Compile(CcTest::isolate(),
200 v8::Local<v8::Script> script = Compile(
220 Compile(CcTes
[all...]
H A Dtest-compiler.cc58 static Handle<JSFunction> Compile(const char* source) { function
76 Handle<JSFunction> fun = Compile(buffer.start());
93 Handle<JSFunction> fun = Compile("result = x + y;");
112 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;");
131 Compile("s = 0; while (n > 0) { s += n; n -= 1; }; result = s;");
153 Handle<JSFunction> fun = Compile(source);
184 Handle<JSFunction> fun = Compile(source);
198 Handle<JSFunction> fun = Compile(source);
222 Handle<JSFunction> fun0 = Compile(source);
278 v8::Script::Compile(contex
[all...]
H A Dtest-regexp.cc548 static RegExpNode* Compile(const char* input, bool multiline, bool unicode, function
562 RegExpEngine::Compile(isolate, zone, &compile_data, false, false, multiline,
572 RegExpNode* node = Compile(input, multiline, unicode, is_one_byte, &zone);
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dcodegen.cc34 // we could trace back through the program in Compile() and elide
60 CodeGen::Program CodeGen::Compile(CodeGen::Node head) { function in class:sandbox::CodeGen
H A Dpolicy_compiler.cc103 CodeGen::Program PolicyCompiler::Compile() { function in class:sandbox::bpf_dsl::PolicyCompiler
122 return gen_.Compile(AssemblePolicy());
159 // We already enabled unsafe traps in Compile, but enable them again to give
191 // Compile the system call ranges to an optimized BPF jumptable
278 return res->Compile(this);
321 // TODO(mdempsky): Compile Unexpected64bitArgument() just per program.
/external/regex-re2/re2/
H A Dfiltered_re2.cc43 void FilteredRE2::Compile(vector<string>* atoms) { function in class:re2::FilteredRE2
54 prefilter_tree_->Compile(atoms);
68 LOG(DFATAL) << "FirstMatch called before Compile";
H A Dset.cc30 LOG(DFATAL) << "RE2::Set::Add after Compile";
69 bool RE2::Set::Compile() { function in class:RE2::Set
71 LOG(DFATAL) << "RE2::Set::Compile multiple times";
86 LOG(ERROR) << "Error simplifying during Compile.";
96 LOG(DFATAL) << "RE2::Set::Match without Compile";
H A Dprefilter_tree.cc71 LOG(DFATAL) << "Add after Compile.";
82 void PrefilterTree::Compile(vector<string>* atom_vec) { function in class:re2::PrefilterTree
84 LOG(DFATAL) << "Compile after Compile.";
89 // PrefilterTree that call Compile before adding any regexps,
90 // and expect Compile not to have effect.
288 LOG(WARNING) << "Compile() not called";
H A Dcompile.cc5 // Compile regular expression to Prog.
131 static Prog *Compile(Regexp* re, bool reversed, int64 max_mem);
991 Prog* Compiler::Compile(Regexp* re, bool reversed, int64 max_mem) { function in class:re2::Compiler
1080 return Compiler::Compile(this, false, max_mem);
1084 return Compiler::Compile(this, true, max_mem);
1099 // Compile alternation of fragments.
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DIRCompileLayer.h49 IRCompileLayer(BaseLayerT &BaseLayer, CompileFtor Compile) argument
50 : BaseLayer(BaseLayer), Compile(std::move(Compile)), ObjCache(nullptr) {}
55 /// @brief Compile each module in the given module set, then add the resulting
76 std::tie(Object, Buffer) = Compile(*M).takeBinary();
139 CompileFtor Compile; member in class:llvm::orc::IRCompileLayer
H A DIndirectionUtils.h41 CompileCallbackInfo(TargetAddress Addr, CompileFtor &Compile) argument
42 : Addr(Addr), Compile(Compile) {}
45 void setCompileAction(CompileFtor Compile) { argument
46 this->Compile = std::move(Compile);
50 CompileFtor &Compile; member in class:llvm::orc::JITCompileCallbackManager::CompileCallbackInfo
76 auto Compile = std::move(I->second);
80 if (auto Addr = Compile())
89 auto &Compile local
[all...]
/external/v8/test/cctest/wasm/
H A Dwasm-run-utils.h259 Handle<Code> Compile(ModuleEnv* module) { function in class:__anon18349::WasmFunctionCompiler
279 module->AddFunction(env.sig, Compile(module));
327 Handle<Code> code = compiler_.Compile(env()->module);
/external/pcre/dist/
H A Dpcrecpp.cc94 re_partial_ = Compile(UNANCHORED);
96 re_full_ = Compile(ANCHOR_BOTH);
112 pcre* RE::Compile(Anchor anchor) { function in class:pcrecpp::RE
122 // UNANCHORED Compile the original pattern, and use
124 // ANCHOR_START Compile the original pattern, and use
/external/regex-re2/util/
H A Dpcre.cc68 re_partial_ = Compile(UNANCHORED);
70 re_full_ = Compile(ANCHOR_BOTH);
103 pcre* PCRE::Compile(Anchor anchor) { function in class:re2::PCRE
109 // UNANCHORED Compile the original pattern, and use
111 // ANCHOR_START Compile the original pattern, and use
/external/clang/lib/Driver/
H A DToolChains.h234 mutable std::unique_ptr<tools::gcc::Compiler> Compile; member in class:clang::driver::toolchains::Generic_GCC
/external/v8/src/
H A Dcompiler.cc841 // Compile either unoptimized code or bytecode for the interpreter.
1080 bool Compiler::Compile(Handle<JSFunction> function, ClearExceptionFlag flag) { function in class:v8::internal::Compiler
1304 // Compile the code.
1491 // No cache entry found. Compile the script.
1509 // Compile the function and add it to the cache.
1629 // Compile eagerly for live edit. When compiling debug code, eagerly compile
1731 // The function was never compiled. Compile it unoptimized first.
H A Dapi.cc343 if (!ScriptCompiler::Compile(context, &source).ToLocal(&script)) return false;
1723 // If execution is terminating, Compile(..)->Run() requires this
1825 MaybeLocal<Script> ScriptCompiler::Compile(Local<Context> context, function in class:v8::ScriptCompiler
1837 Local<Script> ScriptCompiler::Compile( function in class:v8::ScriptCompiler
1842 RETURN_TO_LOCAL_UNCHECKED(Compile(context, source, options), Script);
2009 MaybeLocal<Script> ScriptCompiler::Compile(Local<Context> context, function in class:v8::ScriptCompiler
2013 PREPARE_FOR_EXECUTION(context, "v8::ScriptCompiler::Compile()", Script);
2063 Local<Script> ScriptCompiler::Compile(Isolate* v8_isolate, function in class:v8::ScriptCompiler
2069 Compile(context, v8_source, full_source_string, origin), Script);
2080 MaybeLocal<Script> Script::Compile(Loca function in class:v8::Script
2091 Local<Script> Script::Compile(v8::Local<String> source, function in class:v8::Script
2099 Local<Script> Script::Compile(v8::Local<String> source, function in class:v8::Script
[all...]
/external/v8/src/wasm/
H A Dasm-wasm-builder.cc64 void Compile() { function in class:v8::internal::wasm::AsmWasmBuilderImpl
1039 impl.Compile();
/external/v8/src/regexp/
H A Djsregexp.cc127 MaybeHandle<Object> RegExpImpl::Compile(Handle<JSRegExp> re, function in class:v8::internal::RegExpImpl
341 // Compile the RegExp.
382 RegExpEngine::CompilationResult result = RegExpEngine::Compile(
5289 // Compile $ in multiline regexps as an alternation with a positive
6260 RegExpEngine::CompilationResult RegExpEngine::Compile( function in class:v8::internal::RegExpEngine

Completed in 690 milliseconds