HomeSort by relevance Sort by last modified time
    Searched refs:AddressSpace (Results 1 - 25 of 35) 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 80 uint32_t AddressSpace; ///< Address space for the pointer type
346 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
489 if (PI.AddressSpace) {
490 OS << PI.AddressSpace;
648 unsigned AddressSpace) const {
649 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 265 if (unsigned AddressSpace = PTy->getAddressSpace())
266 OS << " addrspace(" << AddressSpace << ')';
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 105 enum AddressSpace{
NVPTXAsmPrinter.h 272 void emitPTXAddressSpace(unsigned int AddressSpace,
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 257 unsigned AddressSpace = PT->getAddressSpace();
279 BSSGlobals[AddressSpace].push_back(I);
281 ConstGlobals[AddressSpace].push_back(I);
283 Globals[AddressSpace].push_back(I);
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 100 unsigned AddressSpace) const;
219 unsigned AddressSpace) const {
  /external/llvm/lib/CodeGen/
StackProtector.cpp 279 unsigned AddressSpace, Offset;
280 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
285 PointerType::get(PtrTy, AddressSpace));
BasicTargetTransformInfo.cpp 100 unsigned AddressSpace) const;
374 unsigned AddressSpace) const {
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 309 unsigned AddressSpace) const;
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 183 unsigned AddressSpace) const {
184 return PrevTTI->getMemoryOpCost(Opcode, Src, Alignment, AddressSpace);
528 unsigned AddressSpace) const {
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp 100 unsigned AddressSpace) const;
358 unsigned AddressSpace) const {
X86ISelLowering.h 714 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 915 LLVMTypeRef LLVMPointerType(LLVMTypeRef ElementType, unsigned AddressSpace);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 670 unsigned AddressSpace = 0;
672 AddressSpace = Record[1];
675 ResultTy = PointerType::get(ResultTy, AddressSpace);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 323 unsigned AddressSpace = PTy->getAddressSpace();
324 TypeVals.push_back(AddressSpace);
325 if (AddressSpace == 0) AbbrevToUse = PtrAbbrev;
    [all...]

Completed in 526 milliseconds

1 2