Searched refs:llvm (Results 201 - 225 of 405) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/LD/
H A DELFObjectReader.cpp21 #include <llvm/Support/ELF.h>
22 #include <llvm/ADT/Twine.h>
23 #include <llvm/ADT/StringRef.h>
72 llvm::StringRef region = pInput.memArea()->request(pInput.fileOffset(),
102 llvm::StringRef region = pInput.memArea()->request(pInput.fileOffset(),
141 llvm::StringRef region = pInput.memArea()->request(
143 const llvm::ELF::Elf32_Word* value =
144 reinterpret_cast<const llvm::ELF::Elf32_Word*>(region.begin());
146 size_t size = region.size() / sizeof(llvm::ELF::Elf32_Word);
147 if (llvm
[all...]
H A DRelocData.cpp12 #include <llvm/Support/ManagedStatic.h>
18 static llvm::ManagedStatic<RelocDataFactory> g_RelocDataFactory;
H A DSectionData.cpp14 #include <llvm/Support/ManagedStatic.h>
20 static llvm::ManagedStatic<SectDataFactory> g_SectDataFactory;
H A DLDSymbol.cpp18 #include <llvm/Support/ManagedStatic.h>
24 static llvm::ManagedStatic<LDSymbol> g_NullSymbol;
25 static llvm::ManagedStatic<NullFragment> g_NullSymbolFragment;
26 static llvm::ManagedStatic<LDSymbolFactory> g_LDSymbolFactory;
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFReaderIf.h12 #include <llvm/ADT/StringRef.h>
13 #include <llvm/Support/ELF.h>
14 #include <llvm/Support/Host.h>
72 llvm::StringRef pRegion,
84 llvm::StringRef pRegion) const = 0;
89 llvm::StringRef pRegion) const = 0;
H A DLDContext.h14 #include <llvm/Support/DataTypes.h>
18 namespace llvm { namespace
66 const LDSymbol* getSymbol(const llvm::StringRef& pName) const;
67 LDSymbol* getSymbol(const llvm::StringRef& pName);
H A DSectionData.h12 #include <llvm/ADT/ilist.h>
13 #include <llvm/ADT/ilist_node.h>
14 #include <llvm/Support/DataTypes.h>
39 typedef llvm::iplist<Fragment> FragmentListType;
/frameworks/compile/mclinker/lib/Support/Unix/
H A DSystem.inc18 #include <llvm/ADT/StringRef.h>
40 llvm::StringRef TargetTripleString(MCLD_DEFAULT_TARGET_TRIPLE);
41 std::pair<llvm::StringRef, llvm::StringRef> ArchSplit = TargetTripleString.split('-');
/frameworks/compile/mclinker/lib/Target/
H A DELFAttribute.cpp23 #include <llvm/ADT/STLExtras.h>
24 #include <llvm/Support/Host.h>
35 llvm::DeleteContainerPointers(m_Subsections);
51 (!llvm::isa<RegionFragment>(sect_data->front()))) {
56 llvm::cast<RegionFragment>(sect_data->front());
58 llvm::StringRef region = region_frag.getRegion();
85 if(llvm::sys::IsLittleEndianHost != m_Config.targets().isLittleEndian())
130 for (llvm::SmallVectorImpl<Subsection*>::const_iterator
148 for (llvm::SmallVectorImpl<Subsection*>::const_iterator
167 ELFAttribute::getSubsection(llvm
[all...]
H A DELFAttributeValue.cpp12 #include <llvm/Support/ErrorHandling.h>
30 llvm::report_fatal_error("Unknown type of attribtue value!");
/frameworks/compile/slang/
H A Dslang_rs_context.h28 #include "llvm/ADT/StringSet.h"
29 #include "llvm/ADT/StringMap.h"
33 namespace llvm { namespace
36 } // namespace llvm
54 typedef llvm::StringSet<> NeedExportVarSet;
55 typedef llvm::StringSet<> NeedExportFuncSet;
56 typedef llvm::StringSet<> NeedExportTypeSet;
63 typedef llvm::StringMap<RSExportType*> ExportTypeMap;
75 llvm::DataLayout *mDataLayout;
76 llvm
[all...]
H A Dslang_diagnostic_buffer.h24 #include "llvm/Support/raw_ostream.h"
26 namespace llvm { namespace
36 std::unique_ptr<llvm::raw_string_ostream> mSOS;
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp17 #include <llvm/ADT/Twine.h>
18 #include <llvm/Support/DataTypes.h>
19 #include <llvm/Support/ELF.h>
20 #include <llvm/Support/Host.h>
161 case llvm::ELF::R_AARCH64_ABS64:
179 case llvm::ELF::R_AARCH64_ABS32:
180 case llvm::ELF::R_AARCH64_ABS16:
196 case llvm::ELF::R_AARCH64_ADR_GOT_PAGE:
197 case llvm::ELF::R_AARCH64_LD64_GOT_LO12_NC: {
225 case llvm
[all...]
/frameworks/compile/libbcc/bcinfo/Wrap/
H A DAndroid.mk19 LLVM_ROOT_PATH := $(LOCAL_PATH)/../../../../../external/llvm
20 include $(LLVM_ROOT_PATH)/llvm.mk
/frameworks/compile/libbcc/lib/Core/
H A DBCCContext.cpp62 llvm::LLVMContext &BCCContext::getLLVMContext()
65 const llvm::LLVMContext &BCCContext::getLLVMContext() const
/frameworks/compile/mclinker/include/mcld/Script/
H A DWildcardPattern.h15 #include <llvm/ADT/StringRef.h>
48 llvm::StringRef prefix() const;
/frameworks/compile/mclinker/include/mcld/Support/
H A DMemoryAreaFactory.h15 #include <llvm/ADT/StringMap.h>
64 llvm::StringMap<MemoryArea*> m_AreaMap;
/frameworks/compile/mclinker/lib/Script/
H A DFileToken.cpp11 #include <llvm/Support/ManagedStatic.h>
16 static llvm::ManagedStatic<FileTokenFactory> g_FileTokenFactory;
H A DNameSpec.cpp11 #include <llvm/Support/ManagedStatic.h>
16 static llvm::ManagedStatic<NameSpecFactory> g_NameSpecFactory;
H A DStrToken.cpp11 #include <llvm/Support/ManagedStatic.h>
16 static llvm::ManagedStatic<StrTokenFactory> g_StrTokenFactory;
/frameworks/compile/mclinker/
H A Dmcld.mk12 include $(LLVM_ROOT_PATH)/llvm.mk
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSectionHeaderTable.h22 #include <llvm/ADT/StringMap.h>
34 llvm::StringMap<ELFSectionHeaderTy *> name_map;
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSectionBits.hxx23 #include <llvm/Support/raw_ostream.h>
33 using namespace llvm;
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOT.cpp14 #include <llvm/Support/Casting.h>
/frameworks/compile/slang/BitWriter_3_2/
H A DAndroid.mk3 LLVM_ROOT_PATH := $(LOCAL_PATH)/../../../../external/llvm
4 include $(LLVM_ROOT_PATH)/llvm.mk

Completed in 578 milliseconds

1234567891011>>