HomeSort by relevance Sort by last modified time
    Searched refs:AddressSpace (Results 1 - 25 of 36) sorted by null

1 2

  /external/llvm/lib/Target/NVPTX/MCTargetDesc/
NVPTXBaseInfo.h 22 enum AddressSpace {
  /external/llvm/include/llvm/IR/
GlobalVariable.h 70 ThreadLocalMode = NotThreadLocal, unsigned AddressSpace = 0,
77 ThreadLocalMode = NotThreadLocal, unsigned AddressSpace = 0,
DataLayout.h 82 uint32_t AddressSpace; ///< Address space for the pointer type
361 IntegerType *getIntPtrType(LLVMContext &C, unsigned AddressSpace = 0) const;
DerivedTypes.h 432 static PointerType *get(Type *ElementType, unsigned AddressSpace);
  /external/llvm/lib/IR/
Globals.cpp 87 unsigned AddressSpace,
89 : GlobalValue(PointerType::get(Ty, AddressSpace),
108 unsigned AddressSpace,
110 : GlobalValue(PointerType::get(Ty, AddressSpace),
DataLayout.cpp 132 retval.AddressSpace = addr_space;
142 && AddressSpace == rhs.AddressSpace
487 if (PI.AddressSpace) {
488 OS << PI.AddressSpace;
611 unsigned AddressSpace) const {
612 return IntegerType::get(C, getPointerSizeInBits(AddressSpace));
Type.cpp 734 PointerType *PointerType::get(Type *EltTy, unsigned AddressSpace) {
740 // Since AddressSpace #0 is the common case, we special case it.
741 PointerType *&Entry = AddressSpace == 0 ? CImpl->PointerTypes[EltTy]
742 : CImpl->ASPointerTypes[std::make_pair(EltTy, AddressSpace)];
745 Entry = new (CImpl->TypeAllocator) PointerType(EltTy, AddressSpace);
AsmWriter.cpp 243 if (unsigned AddressSpace = PTy->getAddressSpace())
244 OS << " addrspace(" << AddressSpace << ')';
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 102 unsigned AddressSpace) const;
223 unsigned AddressSpace) const {
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 112 enum AddressSpace {
NVPTXAsmPrinter.h 257 void emitPTXAddressSpace(unsigned int AddressSpace, raw_ostream &O) const;
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 252 unsigned AddressSpace = PT->getAddressSpace();
272 BSSGlobals[AddressSpace].push_back(I);
274 ConstGlobals[AddressSpace].push_back(I);
276 Globals[AddressSpace].push_back(I);
  /external/llvm/lib/CodeGen/
StackProtector.cpp 280 unsigned AddressSpace, Offset;
281 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
287 AddressSpace));
BasicTargetTransformInfo.cpp 109 unsigned AddressSpace) const;
406 unsigned AddressSpace) const {
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 334 unsigned AddressSpace) const;
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 197 unsigned AddressSpace) const {
198 return PrevTTI->getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
555 unsigned AddressSpace) const {
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp 101 unsigned AddressSpace) const;
559 unsigned AddressSpace) const {
580 AddressSpace);
X86ISelLowering.h 753 virtual bool getStackCookieLocation(unsigned &AddressSpace, unsigned &Offset) const;
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 353 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));
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 620 unsigned AddressSpace = 0;
622 AddressSpace = Record[1];
625 ResultTy = PointerType::get(ResultTy, AddressSpace);
877 unsigned AddressSpace = 0;
879 AddressSpace = Record[1];
881 ResultTy = PointerType::get(ResultTy, AddressSpace);
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 901 unsigned AddressSpace = 0;
903 AddressSpace = Record[1];
906 ResultTy = PointerType::get(ResultTy, AddressSpace);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp     [all...]
  /external/llvm/include/llvm-c/
Core.h 962 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 798 unsigned AddressSpace = 0;
800 AddressSpace = Record[1];
803 ResultTy = PointerType::get(ResultTy, AddressSpace);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 406 unsigned AddressSpace = PTy->getAddressSpace();
407 TypeVals.push_back(AddressSpace);
408 if (AddressSpace == 0) AbbrevToUse = PtrAbbrev;
    [all...]

Completed in 533 milliseconds

1 2