Searched refs:AddressSpace (Results 1 - 17 of 17) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXBaseInfo.h22 enum AddressSpace { enum in namespace:llvm
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DGlobalVariable.h65 ThreadLocalMode = NotThreadLocal, unsigned AddressSpace = 0);
73 unsigned AddressSpace = 0);
H A DDerivedTypes.h439 static PointerType *get(Type *ElementType, unsigned AddressSpace);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/NVPTX/
H A DNVPTX.h106 enum AddressSpace{ enum in namespace:llvm::NVPTX::PTXLdStInstCode
H A DNVPTXAsmPrinter.h272 void emitPTXAddressSpace(unsigned int AddressSpace,
H A DNVPTXAsmPrinter.cpp1233 void NVPTXAsmPrinter::emitPTXAddressSpace(unsigned int AddressSpace, argument
1235 switch (AddressSpace) {
/macosx-10.9.5/llvmCore-3425.0.33/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.cpp747 PointerType *PointerType::get(Type *EltTy, unsigned AddressSpace) { argument
753 // Since AddressSpace #0 is the common case, we special case it.
754 PointerType *&Entry = AddressSpace == 0 ? CImpl->PointerTypes[EltTy]
755 : CImpl->ASPointerTypes[std::make_pair(EltTy, AddressSpace)];
758 Entry = new (CImpl->TypeAllocator) PointerType(EltTy, AddressSpace);
H A DAsmWriter.cpp265 if (unsigned AddressSpace = PTy->getAddressSpace())
266 OS << " addrspace(" << AddressSpace << ')'; local
1442 if (unsigned AddressSpace = GV->getType()->getAddressSpace())
1443 Out << "addrspace(" << AddressSpace << ") "; local
H A DCore.cpp380 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace) { argument
381 return wrap(PointerType::get(unwrap(ElementType), AddressSpace));
1223 unsigned AddressSpace) {
1226 GlobalVariable::NotThreadLocal, AddressSpace));
1221 LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name, unsigned AddressSpace) argument
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DStackProtector.cpp192 unsigned AddressSpace, Offset; local
193 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
198 PointerType::get(PtrTy, AddressSpace));
/macosx-10.9.5/llvmCore-3425.0.33/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
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/
H A DX86ISelLowering.h690 virtual bool getStackCookieLocation(unsigned &AddressSpace, unsigned &Offset) const;
H A DX86ISelLowering.cpp1454 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace, argument
1463 AddressSpace = 256;
1465 AddressSpace = 257;
1469 AddressSpace = 256;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm-c/
H A DCore.h909 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace);
1590 unsigned AddressSpace);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Reader/
H A DBitcodeReader.cpp590 unsigned AddressSpace = 0; local
592 AddressSpace = Record[1];
595 ResultTy = PointerType::get(ResultTy, AddressSpace);
1586 unsigned AddressSpace = cast<PointerType>(Ty)->getAddressSpace(); local
1612 TLM, AddressSpace);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp281 unsigned AddressSpace = PTy->getAddressSpace(); local
282 TypeVals.push_back(AddressSpace);
283 if (AddressSpace == 0) AbbrevToUse = PtrAbbrev;

Completed in 411 milliseconds