Searched refs:pTriple (Results 1 - 25 of 48) sorted by path

12

/frameworks/compile/libbcc/include/bcc/AndroidBitcode/
H A DABCCompilerDriver.h70 static ABCCompilerDriver *Create(const std::string &pTriple);
/frameworks/compile/libbcc/include/bcc/Support/
H A DCompilerConfig.h110 CompilerConfig(const std::string &pTriple);
H A DDisassembler.h42 DisassembleResult Disassemble(llvm::raw_ostream &pOutput, const char *pTriple,
46 DisassembleResult Disassemble(OutputFile &pOutput, const char *pTriple,
H A DLinkerConfig.h113 LinkerConfig(const std::string& pTriple);
H A DTargetCompilerConfigs.h40 ARMBaseCompilerConfig(const std::string &pTriple, bool pInThumbMode);
83 X86FamilyCompilerConfigBase(const std::string &pTriple) argument
84 : CompilerConfig(pTriple) {
H A DTargetLinkerConfigs.h53 X86FamilyLinkerConfigBase(const std::string& pTriple);
90 GeneralLinkerConfig(const std::string& pTriple);
/frameworks/compile/libbcc/lib/AndroidBitcode/
H A DABCCompilerDriver.cpp216 ABCCompilerDriver *ABCCompilerDriver::Create(const std::string &pTriple) { argument
219 llvm::TargetRegistry::lookupTarget(pTriple, error);
222 ALOGE("Unsupported target '%s' (detail: %s)!", pTriple.c_str(),
248 pTriple.c_str());
/frameworks/compile/libbcc/lib/Support/
H A DCompilerConfig.cpp28 CompilerConfig::CompilerConfig(const std::string &pTriple) argument
29 : mTriple(pTriple), mTarget(NULL) {
H A DDisassembler.cpp68 DisassembleResult Disassemble(llvm::raw_ostream &pOutput, const char *pTriple, argument
85 llvm::TargetRegistry::lookupTarget(pTriple, error);
89 pTriple, error.c_str());
94 target->createMCSubtargetInfo(pTriple, /* CPU */"", /* Features */"");;
105 mc_reg_info = target->createMCRegInfo(pTriple);
107 asm_info = target->createMCAsmInfo(pTriple);
145 "under %s.", i, pFuncName, pTriple);
151 "of function %s under %s.", i, pFuncName, pTriple);
186 DisassembleResult Disassemble(OutputFile &pOutput, const char *pTriple, argument
202 Disassemble(*output, pTriple, pFuncNam
[all...]
H A DLinkerConfig.cpp32 LinkerConfig::LinkerConfig(const std::string &pTriple) argument
33 : mTriple(pTriple), mSOName(), mTarget(NULL), mLDConfig(NULL),
H A DTargetCompilerConfigs.cpp78 ARMBaseCompilerConfig::ARMBaseCompilerConfig(const std::string &pTriple, argument
80 : CompilerConfig(pTriple), mInThumbMode(pInThumbMode) {
H A DTargetLinkerConfigs.cpp114 X86FamilyLinkerConfigBase::X86FamilyLinkerConfigBase(const std::string& pTriple) argument
115 : LinkerConfig(pTriple) {
155 GeneralLinkerConfig::GeneralLinkerConfig(const std::string& pTriple) argument
156 : LinkerConfig(pTriple) {
/frameworks/compile/mclinker/include/mcld/Support/
H A DTargetRegistry.h48 typedef MCLinker *(*MCLinkerCtorTy)(const std::string& pTriple,
53 typedef bool (*EmulationFnTy)(const std::string& pTriple, LinkerConfig&);
67 mcld::MCLDTargetMachine *createTargetMachine(const std::string &pTriple, argument
75 llvm::TargetMachine *tm = m_pT->createTargetMachine(pTriple, pCPU, pFeatures, Options, RM, CM, OL);
77 return TargetMachineCtorFn(*this, *tm, pTriple);
85 MCLinker *createMCLinker(const std::string &pTriple, argument
91 return MCLinkerCtorFn(pTriple, pConfig, pModule, pOutput);
96 bool emulate(const std::string& pTriple, LinkerConfig& pConfig) const { argument
99 return EmulationFn(pTriple, pConfig);
114 const std::string& pTriple) cons
[all...]
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNUInfo.h25 GNUInfo(const llvm::Triple& pTriple);
H A DTargetMachine.h57 const std::string &pTriple);
/frameworks/compile/mclinker/include/mcld/
H A DTargetOptions.h37 TargetOptions(const std::string& pTriple);
43 void setTriple(const std::string& pTriple);
45 void setTriple(const llvm::Triple& pTriple);
/frameworks/compile/mclinker/lib/CodeGen/
H A DMCLDTargetMachine.cpp98 const std::string& pTriple)
99 : m_TM(pTM), m_pTarget(&pTarget), m_Triple(pTriple) {
96 MCLDTargetMachine(llvm::TargetMachine &pTM, const mcld::Target& pTarget, const std::string& pTriple) argument
/frameworks/compile/mclinker/lib/Core/
H A DTargetOptions.cpp21 TargetOptions::TargetOptions(const std::string& pTriple) argument
22 : m_Triple(pTriple),
31 void TargetOptions::setTriple(const llvm::Triple& pTriple) argument
33 m_Triple = pTriple;
36 void TargetOptions::setTriple(const std::string& pTriple) argument
38 m_Triple.setTriple(pTriple);
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp34 mcld::TargetRegistry::lookupTarget(const std::string &pTriple, argument
37 const llvm::Target* target = llvm::TargetRegistry::lookupTarget(pTriple, pError);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMDiagnostic.cpp25 const std::string &pTriple)
24 createARMDiagLineInfo(const mcld::Target& pTarget, const std::string &pTriple) argument
H A DARMEmulation.cpp48 bool emulateARMLD(const std::string& pTriple, LinkerConfig& pConfig) argument
50 llvm::Triple theTriple(pTriple);
H A DARMGNUInfo.h20 ARMGNUInfo(const llvm::Triple& pTriple) : GNUInfo(pTriple) { } argument
H A DARMMCLinker.cpp22 MCLinker* createARMMCLinker(const std::string& pTriple, argument
27 Triple theTriple(pTriple);
H A DARMTargetMachine.cpp16 const std::string& pTriple)
17 : mcld::MCLDTargetMachine(pPM, pTarget, pTriple) {
14 ARMBaseTargetMachine(llvm::TargetMachine& pPM, const mcld::Target &pTarget, const std::string& pTriple) argument
H A DARMTargetMachine.h22 const std::string &pTriple);

Completed in 312 milliseconds

12