Searched defs:AddressSpace (Results 1 - 13 of 13) sorted by relevance

/external/llvm/lib/CodeGen/
H A DStackProtector.cpp192 unsigned AddressSpace, Offset; local
193 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
198 PointerType::get(PtrTy, AddressSpace));
/external/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXBaseInfo.h22 enum AddressSpace { enum in namespace:llvm
/external/llvm/lib/Target/NVPTX/
H A DNVPTX.h106 enum AddressSpace{ enum in namespace:llvm::NVPTX::PTXLdStInstCode
H A DNVPTXAsmPrinter.cpp1233 void NVPTXAsmPrinter::emitPTXAddressSpace(unsigned int AddressSpace, argument
1235 switch (AddressSpace) {
/external/llvm/lib/VMCore/
H A DGlobals.cpp85 ThreadLocalMode TLMode, unsigned AddressSpace)
86 : GlobalValue(PointerType::get(Ty, AddressSpace),
104 unsigned AddressSpace)
105 : GlobalValue(PointerType::get(Ty, AddressSpace),
83 GlobalVariable(Type *Ty, bool constant, LinkageTypes Link, Constant *InitVal, const Twine &Name, ThreadLocalMode TLMode, unsigned AddressSpace) argument
100 GlobalVariable(Module &M, Type *Ty, bool constant, LinkageTypes Link, Constant *InitVal, const Twine &Name, GlobalVariable *Before, ThreadLocalMode TLMode, unsigned AddressSpace) argument
H A DType.cpp756 PointerType *PointerType::get(Type *EltTy, unsigned AddressSpace) { argument
762 // Since AddressSpace #0 is the common case, we special case it.
763 PointerType *&Entry = AddressSpace == 0 ? CImpl->PointerTypes[EltTy]
764 : CImpl->ASPointerTypes[std::make_pair(EltTy, AddressSpace)];
767 Entry = new (CImpl->TypeAllocator) PointerType(EltTy, AddressSpace);
H A DAsmWriter.cpp246 if (unsigned AddressSpace = PTy->getAddressSpace())
247 OS << " addrspace(" << AddressSpace << ')'; local
1422 if (unsigned AddressSpace = GV->getType()->getAddressSpace())
1423 Out << "addrspace(" << AddressSpace << ") "; local
H A DCore.cpp380 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) { argument
381 return wrap(PointerType::get(unwrap(ElementType), AddressSpace));
1210 unsigned AddressSpace) {
1213 GlobalVariable::NotThreadLocal, AddressSpace));
1208 LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name, unsigned AddressSpace) argument
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp588 unsigned AddressSpace = 0; local
590 AddressSpace = Record[1];
593 ResultTy = PointerType::get(ResultTy, AddressSpace);
1570 unsigned AddressSpace = cast<PointerType>(Ty)->getAddressSpace(); local
1596 TLM, AddressSpace);
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp281 unsigned AddressSpace = PTy->getAddressSpace(); local
282 TypeVals.push_back(AddressSpace);
283 if (AddressSpace == 0) AbbrevToUse = PtrAbbrev;
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp986 unsigned AddressSpace = local
988 llvm::Type *BaseType = ConvertType(eltType)->getPointerTo(AddressSpace);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c353 value AddressSpace) {
354 return LLVMPointerType(ElementTy, Int_val(AddressSpace));
871 value AddressSpace,
877 LLVMPointerType(Ty, Int_val(AddressSpace)));
907 value AddressSpace,
912 Int_val(AddressSpace));
352 llvm_qualified_pointer_type(LLVMTypeRef ElementTy, value AddressSpace) argument
870 llvm_declare_qualified_global(LLVMTypeRef Ty, value Name, value AddressSpace, LLVMModuleRef M) argument
905 llvm_define_qualified_global(value Name, LLVMValueRef Initializer, value AddressSpace, LLVMModuleRef M) argument
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp1447 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace, argument
1456 AddressSpace = 256;
1458 AddressSpace = 257;
1462 AddressSpace = 256;

Completed in 455 milliseconds