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

  /frameworks/compile/mclinker/include/mcld/Target/
ELFEmulation.h 17 bool MCLDEmulateELF(LinkerScript& pScript, LinkerConfig& pConfig);
GNULDBackend.h 107 uint64_t getSegmentStartAddr(const LinkerScript& pScript) const;
385 void setupProgramHdrs(const LinkerScript& pScript);
  /frameworks/compile/libbcc/lib/Renderscript/
RSScript.cpp 25 bool RSScript::LinkRuntime(RSScript &pScript, const char *core_lib) {
28 // Using the same context with the source in pScript.
29 BCCContext &context = pScript.getSource().getContext();
37 if (pScript.mLinkRuntimeCallback != nullptr) {
38 pScript.mLinkRuntimeCallback(&pScript,
39 &pScript.getSource().getModule(), &libclcore_source->getModule());
42 if (!pScript.getSource().merge(*libclcore_source)) {
RSCompilerDriver.cpp 68 bool RSCompilerDriver::setupConfig(const RSScript &pScript) {
72 static_cast<llvm::CodeGenOpt::Level>(pScript.getOptimizationLevel());
97 bcinfo::MetadataExtractor me(&pScript.getSource().getModule());
112 Compiler::ErrorCode RSCompilerDriver::compileScript(RSScript& pScript, const char* pScriptName,
119 pScript.getSource().addBuildChecksumMetadata(pBuildChecksum);
122 // Verify that the only external functions in pScript are Renderscript
124 if (mCompiler.screenGlobalFunctions(pScript) != Compiler::kSuccess) {
131 if (!RSScript::LinkRuntime(pScript, pRuntimePath)) {
164 bool compiler_need_reconfigure = setupConfig(pScript);
192 mCompiler.compile(pScript, output_file, IRStream)
    [all...]
  /frameworks/compile/libbcc/include/bcc/
Compiler.h 81 enum ErrorCode runPasses(Script &pScript, llvm::raw_pwrite_stream &pResult);
83 bool addCustomPasses(Script &pScript, llvm::legacy::PassManager &pPM);
84 bool addInternalizeSymbolsPass(Script &pScript, llvm::legacy::PassManager &pPM);
85 bool addExpandForEachPass(Script &pScript, llvm::legacy::PassManager &pPM);
86 bool addGlobalInfoPass(Script &pScript, llvm::legacy::PassManager &pPM);
101 enum ErrorCode compile(Script &pScript, llvm::raw_pwrite_stream &pResult,
105 enum ErrorCode compile(Script &pScript, OutputFile &pResult,
116 // Compare undefined external functions in pScript against a 'whitelist' of
119 enum ErrorCode screenGlobalFunctions(Script &pScript);
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64Emulation.cpp 17 static bool MCLDEmulateAArch64ELF(LinkerScript& pScript,
19 if (!MCLDEmulateELF(pScript, pConfig))
39 pScript.sectionMap().insert(".ARM.attributes*", ".ARM.attributes");
47 bool emulateAArch64LD(LinkerScript& pScript, LinkerConfig& pConfig) {
57 return MCLDEmulateAArch64ELF(pScript, pConfig);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMEmulation.cpp 17 static bool MCLDEmulateARMELF(LinkerScript& pScript, LinkerConfig& pConfig) {
18 if (!MCLDEmulateELF(pScript, pConfig))
38 pScript.sectionMap().insert(".ARM.exidx*", ".ARM.exidx");
39 pScript.sectionMap().insert(".ARM.extab*", ".ARM.extab");
40 pScript.sectionMap().insert(".ARM.attributes*", ".ARM.attributes");
48 bool emulateARMLD(LinkerScript& pScript, LinkerConfig& pConfig) {
58 return MCLDEmulateARMELF(pScript, pConfig);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonEmulation.cpp 17 static bool MCLDEmulateHexagonELF(LinkerScript& pScript,
19 if (!MCLDEmulateELF(pScript, pConfig))
41 bool emulateHexagonLD(LinkerScript& pScript, LinkerConfig& pConfig) {
51 return MCLDEmulateHexagonELF(pScript, pConfig);
  /frameworks/compile/mclinker/lib/Target/
ELFEmulation.cpp 71 bool MCLDEmulateELF(LinkerScript& pScript, LinkerConfig& pConfig) {
78 pScript.sectionMap().insert(map[i].from, map[i].to, map[i].policy);
85 pScript.sectionMap().insert("", "");
93 pScript.directories().insert("=/usr/lib");
96 pScript.directories().insert("=/mingw/lib");
99 pScript.directories().insert("=/lib");
100 pScript.directories().insert("=/usr/lib");
GNULDBackend.cpp 148 uint64_t GNULDBackend::getSegmentStartAddr(const LinkerScript& pScript) const {
150 pScript.addressMap().find(".text");
151 if (pScript.addressMap().end() != mapping)
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsEmulation.cpp 17 static bool MCLDEmulateMipsELF(LinkerScript& pScript, LinkerConfig& pConfig) {
18 if (!MCLDEmulateELF(pScript, pConfig))
44 bool emulateMipsLD(LinkerScript& pScript, LinkerConfig& pConfig) {
54 return MCLDEmulateMipsELF(pScript, pConfig);
  /frameworks/compile/mclinker/lib/Target/X86/
X86Emulation.cpp 17 static bool MCLDEmulateX86ELF(LinkerScript& pScript, LinkerConfig& pConfig) {
18 if (!MCLDEmulateELF(pScript, pConfig))
49 bool emulateX86LD(LinkerScript& pScript, LinkerConfig& pConfig) {
59 return MCLDEmulateX86ELF(pScript, pConfig);
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 146 enum Compiler::ErrorCode Compiler::runPasses(Script &pScript,
157 if (!addCustomPasses(pScript, passes)) {
197 RSScript &script = static_cast<RSScript &>(pScript);
208 passes.run(pScript.getSource().getModule());
213 enum Compiler::ErrorCode Compiler::compile(Script &pScript,
216 llvm::Module &module = pScript.getSource().getModule();
251 if ((err = runPasses(pScript, pResult)) != kSuccess) {
262 enum Compiler::ErrorCode Compiler::compile(Script &pScript,
277 enum Compiler::ErrorCode err = compile(pScript, *out, IRStream);
285 bool Compiler::addInternalizeSymbolsPass(Script &pScript, llvm::legacy::PassManager &pPM)
    [all...]
  /frameworks/compile/mclinker/include/mcld/
Linker.h 36 bool emulate(LinkerScript& pScript, LinkerConfig& pConfig);
69 bool initEmulator(LinkerScript& pScript);
Module.h 60 explicit Module(LinkerScript& pScript);
62 Module(const std::string& pName, LinkerScript& pScript);
  /frameworks/compile/mclinker/lib/Core/
Module.cpp 27 Module::Module(LinkerScript& pScript) : 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) {
Linker.cpp 48 bool Linker::emulate(LinkerScript& pScript, LinkerConfig& pConfig) {
60 if (!initEmulator(pScript))
361 bool Linker::initEmulator(LinkerScript& pScript) {
363 return m_pTarget->emulate(pScript, *m_pConfig);
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSCompilerDriver.h 69 bool setupConfig(const RSScript &pScript);
73 Compiler::ErrorCode compileScript(RSScript& pScript, const char* pScriptName,
156 bool buildForCompatLib(RSScript &pScript, const char *pOut,
RSScript.h 69 static bool LinkRuntime(RSScript &pScript, const char *rt_path = nullptr);
  /frameworks/compile/mclinker/lib/Support/
Target.cpp 53 bool Target::emulate(LinkerScript& pScript, LinkerConfig& pConfig) const {
56 return EmulationFn(pScript, pConfig);
  /frameworks/compile/mclinker/include/mcld/Support/
Target.h 79 bool emulate(LinkerScript& pScript, LinkerConfig& pConfig) const;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
AppleEvents.py 512 pScript = FOUR_CHAR_CODE('scpt')
    [all...]

Completed in 789 milliseconds