HomeSort by relevance Sort by last modified time
    Searched refs:ObjSize (Results 1 - 18 of 18) sorted by null

  /external/clang/test/SemaCXX/
pass-object-size.cpp 95 void ObjSize(int, void *const __attribute__((pass_object_size(0))));
98 TakeFn(ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has pass_object_size attribute}}
99 TakeFn(&ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has pass_object_size attribute}}
100 TakeFn(*ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has pass_object_size attribute}}
101 TakeFn(*****ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has pass_object_size attribute}}
102 TakeFn(*****&ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has pass_object_ (…)
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 68 /// the Len and ObjSize have type 'intptr_t' and Dst/Src are pointers.
69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
BuildLibCalls.h 52 /// This expects that the Len and ObjSize have type 'intptr_t' and Dst/Src
54 Value *EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
  /external/llvm/lib/CodeGen/
PrologEpilogInserter.cpp 605 int ObjSize = MFI->getObjectSize(i);
609 ObjStart = -ObjOffset - ObjSize;
613 ObjEnd = ObjOffset + ObjSize;
641 int64_t ObjSize = MFI->getObjectSize(FrameIdx);
647 unsigned ObjStart = StackGrowsDown ? FreeStart + ObjSize : FreeStart;
651 if (FreeStart + ObjSize > StackBytesFree.size())
655 for (unsigned Byte = 0; Byte < ObjSize; ++Byte)
668 int ObjStart = -(FreeStart + ObjSize);
678 StackBytesFree.reset(FreeStart, FreeStart + ObjSize);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 153 Value *ObjSize = Builder->CreateSub(Size, Offset);
155 Value *Cmp3 = Builder->CreateICmpULT(ObjSize, NeededSizeVal);
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 277 unsigned ObjSize = DL.getTypeAllocSize(ObjType);
278 return ObjSize < CodeModelLargeSize && ObjSize != 0;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BuildLibCalls.cpp 135 /// This expects that the Len and ObjSize have type 'intptr_t' and Dst/Src
137 Value *llvm::EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
152 CallInst *CI = B.CreateCall4(MemCpy, Dst, Src, Len, ObjSize);
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinISelLowering.cpp 211 unsigned ObjSize = VA.getLocVT().getStoreSize();
212 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true);
  /external/llvm/lib/Target/Lanai/
LanaiISelLowering.cpp 476 unsigned ObjSize = VA.getLocVT().getSizeInBits() / 8;
478 if (ObjSize > 4) {
483 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true);
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 479 unsigned ObjSize = VA.getLocVT().getSizeInBits()/8;
480 if (ObjSize > 2) {
486 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430ISelLowering.cpp 361 unsigned ObjSize = VA.getLocVT().getSizeInBits()/8;
362 if (ObjSize > 2) {
368 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true);
    [all...]
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 805 Value *llvm::emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
822 CallInst *CI = B.CreateCall(MemCpy, {Dst, Src, Len, ObjSize});
    [all...]
SimplifyLibCalls.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUISelLowering.cpp     [all...]

Completed in 1088 milliseconds