HomeSort by relevance Sort by last modified time
    Searched full:objectsize (Results 1 - 25 of 39) sorted by null

1 2

  /external/llvm/test/Transforms/InstCombine/
objsize.ll 1 ; Test a pile of objectsize bounds checking.
12 %1 = call i32 @llvm.objectsize.i32(i8* getelementptr inbounds ([60 x i8]* @a, i32 0, i32 0), i1 false)
20 %0 = call i32 @llvm.objectsize.i32(i8* getelementptr inbounds ([60 x i8]* @a, i32 0, i32 0), i1 false)
37 %1 = call i32 @llvm.objectsize.i32(i8* getelementptr ([60 x i8]* @a, i32 1, i32 0), i1 false)
46 %1 = tail call i32 @llvm.objectsize.i32(i8* getelementptr inbounds ([0 x i8]* @window, i32 0, i32 0), i1 false)
53 ; CHECK: objectsize.i32
55 %0 = call i32 @llvm.objectsize.i32(i8* getelementptr inbounds ([0 x i8]* @window, i32 0, i32 10), i1 false) ; <i64> [#uses=1]
71 %1 = call i32 @llvm.objectsize.i32(i8* getelementptr (i8* bitcast ([9 x i32]* @.str5 to i8*), i32 2), i1 false)
80 declare i32 @llvm.objectsize.i32(i8*, i1) nounwind readonly
92 %2 = call i32 @llvm.objectsize.i32(i8* %1, i1 false) ; <i32> [#uses=1
    [all...]
debuginfo.ll 5 declare i64 @llvm.objectsize.i64(i8*, i1) nounwind readnone
26 %0 = call i64 @llvm.objectsize.i64(i8* %tmp3, i1 false), !dbg !21
  /external/llvm/test/Transforms/CodeGenPrepare/
basic.ll 7 ; objectsize should fold to a constant, which causes the branch to fold to an
12 %0 = tail call i64 @llvm.objectsize.i64(i8* %ptr, i1 false)
28 declare i64 @llvm.objectsize.i64(i8*, i1) nounwind readonly
  /external/llvm/test/CodeGen/X86/
unreachable-stack-protector.ll 5 declare i64 @llvm.objectsize.i64(i8*, i1) nounwind readnone
11 %0 = call i64 @llvm.objectsize.i64(i8* undef, i1 false)
object-size.ll 13 %0 = call i64 @llvm.objectsize.i64(i8* %tmp, i1 0) ; <i64> [#uses=1]
22 %1 = call i64 @llvm.objectsize.i64(i8* %tmp2, i1 1) ; <i64> [#uses=1]
36 declare i64 @llvm.objectsize.i64(i8*, i1) nounwind readonly
50 %0 = call i64 @llvm.objectsize.i64(i8* %tmp2, i1 1) ; <i64> [#uses=1]
2011-05-26-UnreachableBlockElim.ll 11 declare i64 @llvm.objectsize.i64(i8*, i1) nounwind readnone
24 %0 = call i64 @llvm.objectsize.i64(i8* undef, i1 false) nounwind
29 %1 = call i64 @llvm.objectsize.i64(i8* undef, i1 false) nounwind
crash.ll 206 %t1 = tail call i64 @llvm.objectsize.i64(i8* undef, i1 false)
217 declare i64 @llvm.objectsize.i64(i8*, i1) nounwind readnone
  /external/llvm/test/Transforms/SimplifyLibCalls/
StrCpy.ll 14 declare i32 @llvm.objectsize.i32(i8*, i1) nounwind readonly
33 %tmp1 = call i32 @llvm.objectsize.i32(i8* %arg1, i1 false)
  /external/llvm/test/CodeGen/ARM/
divmod.ll 46 %6 = tail call i32 @llvm.objectsize.i32(i8* null, i1 false)
57 declare i32 @llvm.objectsize.i32(i8*, i1) nounwind readnone
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Intermediate.cpp 1086 int objectSize = getType().getObjectSize();
1094 if (constantNode->getType().getObjectSize() == 1 && objectSize > 1)
    [all...]
  /external/llvm/test/CodeGen/Generic/
crash.ll 26 %5 = call i32 @llvm.objectsize.i32(i8* undef, i1 false)
39 declare i32 @llvm.objectsize.i32(i8*, i1)
  /dalvik/vm/alloc/
Alloc.cpp 189 newObj = (Object*)dvmMalloc(clazz->objectSize, flags);
192 dvmTrackAllocation(clazz, clazz->objectSize); /* notify DDMS */
201 * We use the size actually allocated, rather than obj->clazz->objectSize,
219 size = clazz->objectSize;
Copying.cpp 148 static size_t objectSize(const Object *obj);
    [all...]
MarkSweep.cpp 483 static size_t objectSize(const Object *obj)
492 return obj->clazz->objectSize;
537 ptr = (u1*)obj + ALIGN_UP(objectSize(obj), HB_OBJECT_ALIGNMENT);
  /frameworks/base/media/java/android/mtp/
MtpDevice.java 150 * @param objectSize the size of the object (this should match
154 public byte[] getObject(int objectHandle, int objectSize) {
155 return native_get_object(objectHandle, objectSize);
249 private native byte[] native_get_object(int objectHandle, int objectSize);
  /frameworks/base/media/mtp/
MtpDevice.h 101 int objectSize, void* clientData);
MtpDevice.cpp 577 int objectSize, void* clientData) {
586 if (length - MTP_CONTAINER_HEADER_SIZE != objectSize) {
587 LOGE("readObject error objectSize: %d, length: %d",
588 objectSize, length);
  /frameworks/base/media/jni/
android_mtp_MtpDevice.cpp 315 android_mtp_MtpDevice_get_object(JNIEnv *env, jobject thiz, jint objectID, jint objectSize)
321 jbyteArray array = env->NewByteArray(objectSize);
331 if (device->readObject(objectID, get_object_callback, objectSize, &data))
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
MtpClient.java 373 * @param objectSize the size of the object (this should match
377 public byte[] getObject(String deviceName, int objectHandle, int objectSize) {
382 return device.getObject(objectHandle, objectSize);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpClient.java 398 * @param objectSize the size of the object (this should match
402 public byte[] getObject(String deviceName, int objectHandle, int objectSize) {
407 return device.getObject(objectHandle, objectSize);
  /external/clang/test/CodeGen/
object-size.c 43 // CHECK-NEXT:= call i64 @llvm.objectsize.i64(i8* %{{.*}}, i1 false)
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 138 uint64_t ObjectSize = getObjectSize(V, TD);
139 return ObjectSize != AliasAnalysis::UnknownSize && ObjectSize < Size;
146 uint64_t ObjectSize = getObjectSize(V, TD);
147 return ObjectSize != AliasAnalysis::UnknownSize && ObjectSize == Size;
    [all...]
  /dalvik/vm/hprof/
HprofHeap.cpp 304 hprofAddU4ToRecord(rec, thisClass->objectSize); // instance size
  /dalvik/vm/oo/
Object.cpp 752 obj, clazz->descriptor, (int) clazz->objectSize);
753 //printHexDump(obj, clazz->objectSize);
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 532 // Lower all uses of llvm.objectsize.*
534 if (II && II->getIntrinsicID() == Intrinsic::objectsize) {
565 // that have the default "don't know" as the objectsize. Anything else
    [all...]

Completed in 890 milliseconds

1 2