HomeSort by relevance Sort by last modified time
    Searched refs:pScript (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/compile/mclinker/include/mcld/Target/
ELFEmulation.h 17 bool MCLDEmulateELF(LinkerScript& pScript, LinkerConfig& pConfig);
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSCompiler.h 26 virtual bool beforeAddLTOPasses(Script &pScript, llvm::PassManager &pPM);
27 bool addInternalizeSymbolsPass(Script &pScript, llvm::PassManager &pPM);
28 bool addExpandForEachPass(Script &pScript, llvm::PassManager &pPM);
RSCompilerDriver.h 59 bool setupConfig(const RSScript &pScript);
67 Compiler::ErrorCode compileScript(RSScript& pScript, const char* pScriptName,
117 bool buildForCompatLib(RSScript &pScript, const char *pOut, const char *pRuntimePath);
RSScript.h 57 static bool LinkRuntime(RSScript &pScript, const char *rt_path = NULL);
  /frameworks/compile/libbcc/lib/Renderscript/
RSScript.cpp 26 bool RSScript::LinkRuntime(RSScript &pScript, const char *core_lib) {
29 // Using the same context with the source in pScript.
30 BCCContext &context = pScript.getSource().getContext();
38 if (NULL != pScript.mLinkRuntimeCallback) {
39 pScript.mLinkRuntimeCallback(&pScript,
40 &pScript.getSource().getModule(), &libclcore_source->getModule());
43 if (!pScript.getSource().merge(*libclcore_source,
RSCompiler.cpp 33 bool RSCompiler::addInternalizeSymbolsPass(Script &pScript, llvm::PassManager &pPM) {
36 RSScript &script = static_cast<RSScript &>(pScript);
91 bool RSCompiler::addExpandForEachPass(Script &pScript, llvm::PassManager &pPM) {
93 RSScript &script = static_cast<RSScript &>(pScript);
104 bool RSCompiler::beforeAddLTOPasses(Script &pScript, llvm::PassManager &pPM) {
105 if (!addExpandForEachPass(pScript, pPM))
108 if (!addInternalizeSymbolsPass(pScript, pPM))
RSCompilerDriver.cpp 177 bool RSCompilerDriver::setupConfig(const RSScript &pScript) {
181 static_cast<llvm::CodeGenOpt::Level>(pScript.getOptimizationLevel());
206 assert((pScript.getInfo() != NULL) && "NULL RS info!");
207 bool script_full_prec = (pScript.getInfo()->getFloatPrecisionRequirement() ==
218 Compiler::ErrorCode RSCompilerDriver::compileScript(RSScript& pScript, const char* pScriptName,
232 info = RSInfo::ExtractFromSource(pScript.getSource(), pSourceHash, compileCommandLineToEmbed,
243 pScript.setInfo(info);
248 if (!RSScript::LinkRuntime(pScript, pRuntimePath)) {
280 bool compiler_need_reconfigure = setupConfig(pScript);
307 Compiler::ErrorCode compile_result = mCompiler.compile(pScript,
    [all...]
  /frameworks/compile/libbcc/include/bcc/
Compiler.h 86 enum ErrorCode runLTO(Script &pScript);
87 enum ErrorCode runCodeGen(Script &pScript, llvm::raw_ostream &pResult);
99 enum ErrorCode compile(Script &pScript, llvm::raw_ostream &pResult,
103 enum ErrorCode compile(Script &pScript, OutputFile &pResult,
119 virtual bool beforeAddLTOPasses(Script &pScript, llvm::PassManager &pPM)
123 virtual bool afterAddLTOPasses(Script &pScript, llvm::PassManager &pPM)
127 virtual bool beforeExecuteLTOPasses(Script &pScript,
132 virtual bool afterExecuteLTOPasses(Script &pScript)
136 virtual bool beforeAddCodeGenPasses(Script &pScript, llvm::PassManager &pPM)
140 virtual bool afterAddCodeGenPasses(Script &pScript, llvm::PassManager &pPM
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMEmulation.cpp 17 static bool MCLDEmulateARMELF(LinkerScript& pScript, LinkerConfig& pConfig)
19 if (!MCLDEmulateELF(pScript, pConfig))
39 pScript.sectionMap().insert(".ARM.exidx*", ".ARM.exidx");
40 pScript.sectionMap().insert(".ARM.extab*", ".ARM.extab");
41 pScript.sectionMap().insert(".ARM.attributes*", ".ARM.attributes");
49 bool emulateARMLD(LinkerScript& pScript, LinkerConfig& pConfig)
60 return MCLDEmulateARMELF(pScript, pConfig);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonEmulation.cpp 17 static bool MCLDEmulateHexagonELF(LinkerScript& pScript, LinkerConfig& pConfig)
19 if (!MCLDEmulateELF(pScript, pConfig))
41 bool emulateHexagonLD(LinkerScript& pScript, LinkerConfig& pConfig)
52 return MCLDEmulateHexagonELF(pScript, pConfig);
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64Emulation.cpp 17 static bool MCLDEmulateAArch64ELF(LinkerScript& pScript, LinkerConfig& pConfig)
19 if (!MCLDEmulateELF(pScript, pConfig))
39 pScript.sectionMap().insert(".ARM.attributes*", ".ARM.attributes");
47 bool emulateAArch64LD(LinkerScript& pScript, LinkerConfig& pConfig)
58 return MCLDEmulateAArch64ELF(pScript, pConfig);
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 149 enum Compiler::ErrorCode Compiler::runLTO(Script &pScript) {
165 if (!beforeAddLTOPasses(pScript, lto_passes)) {
181 if (!afterAddLTOPasses(pScript, lto_passes)) {
185 lto_passes.run(pScript.getSource().getModule());
188 if (!afterExecuteLTOPasses(pScript)) {
195 enum Compiler::ErrorCode Compiler::runCodeGen(Script &pScript,
213 if (!beforeAddCodeGenPasses(pScript, codegen_passes)) {
225 if (!afterAddCodeGenPasses(pScript, codegen_passes)) {
230 if (!beforeExecuteCodeGenPasses(pScript, codegen_passes)) {
235 codegen_passes.run(pScript.getSource().getModule())
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsEmulation.cpp 17 static bool MCLDEmulateMipsELF(LinkerScript& pScript, LinkerConfig& pConfig)
19 if (!MCLDEmulateELF(pScript, pConfig))
45 bool emulateMipsLD(LinkerScript& pScript, LinkerConfig& pConfig)
56 return MCLDEmulateMipsELF(pScript, pConfig);
  /frameworks/compile/mclinker/lib/Target/X86/
X86Emulation.cpp 17 static bool MCLDEmulateX86ELF(LinkerScript& pScript, LinkerConfig& pConfig)
19 if (!MCLDEmulateELF(pScript, pConfig))
51 bool emulateX86LD(LinkerScript& pScript, LinkerConfig& pConfig)
62 return MCLDEmulateX86ELF(pScript, pConfig);
  /frameworks/compile/mclinker/lib/Target/
ELFEmulation.cpp 71 bool mcld::MCLDEmulateELF(LinkerScript& pScript, LinkerConfig& pConfig)
80 pScript.sectionMap().insert(map[i].from, map[i].to, map[i].policy);
87 pScript.sectionMap().insert("", "");
95 pScript.directories().insert("=/usr/lib");
98 pScript.directories().insert("=/mingw/lib");
101 pScript.directories().insert("=/lib");
102 pScript.directories().insert("=/usr/lib");
  /frameworks/compile/mclinker/include/mcld/
Linker.h 40 bool emulate(LinkerScript& pScript, LinkerConfig& pConfig);
73 bool initEmulator(LinkerScript& pScript);
  /frameworks/compile/mclinker/lib/Core/
Module.cpp 26 Module::Module(LinkerScript& pScript)
27 : m_Script(pScript), m_NamePool(1024) {
30 Module::Module(const std::string& pName, LinkerScript& pScript)
31 : m_Name(pName), m_Script(pScript), m_NamePool(1024) {
  /frameworks/compile/mclinker/tools/mcld/include/mcld/
ScriptOptions.h 28 bool parse(LinkerScript& pScript);
SearchPathOptions.h 26 bool parse(LinkerConfig& pConfig, LinkerScript& pScript);
  /frameworks/compile/mclinker/tools/mcld/lib/
ScriptOptions.cpp 77 bool ScriptOptions::parse(LinkerScript& pScript)
87 pScript.renameMap().insert(*wname, exist);
98 pScript.renameMap().insert(from_real_str, exist);
112 pScript.renameMap().insert(*pname, exist);
123 pScript.renameMap().insert(from_real_str, exist);
141 pScript.addressMap().insert(script.substr(0, pos), exist);
149 pScript.addressMap().insert(".bss", exist);
157 pScript.addressMap().insert(".data", exist);
165 pScript.addressMap().insert(".text", exist);
SearchPathOptions.cpp 79 bool SearchPathOptions::parse(LinkerConfig& pConfig, LinkerScript& pScript)
84 pScript.setSysroot(m_SysRoot);
91 if (!pScript.directories().insert(*sd)) {
  /frameworks/compile/mclinker/lib/Support/
Target.cpp 57 bool Target::emulate(LinkerScript& pScript, LinkerConfig& pConfig) const
61 return EmulationFn(pScript, pConfig);
  /frameworks/compile/mclinker/tools/mcld/
main.cpp 39 mcld::LinkerScript& pScript,
63 if (!dynamic_section.parse(pConfig, pScript))
69 if (!search_path.parse(pConfig, pScript))
81 if (!script.parse(pScript))
84 if (!positional.parse(pInputActions, pConfig, pScript))
  /external/chromium_org/third_party/sqlite/src/src/
test_vfs.c 84 Tcl_Obj *pScript; /* Script to execute */
86 Tcl_Obj **apScript; /* Array version of pScript */
276 assert( p->pScript );
281 if( TCL_OK!=Tcl_ListObjGetElements(p->interp, p->pScript, &nScript, &ap) ){
326 if( p->pScript && p->mask&TESTVFS_CLOSE_MASK ){
371 if( p->pScript && p->mask&TESTVFS_WRITE_MASK ){
399 if( p->pScript && p->mask&TESTVFS_TRUNCATE_MASK ){
420 if( p->pScript && p->mask&TESTVFS_SYNC_MASK ){
556 if( p->pScript && p->mask&TESTVFS_OPEN_MASK ){
611 if( p->pScript && p->mask&TESTVFS_DELETE_MASK )
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Target.h 81 bool emulate(LinkerScript& pScript, LinkerConfig& pConfig) const;

Completed in 948 milliseconds

1 2