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

  /external/compiler-rt/lib/ubsan/
ubsan_handlers_cxx.h 39 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash);
42 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash);
47 __ubsan_handle_cfi_bad_type(CFIBadTypeData *Data, ValueHandle Vtable);
49 __ubsan_handle_cfi_bad_type_abort(CFIBadTypeData *Data, ValueHandle Vtable);
ubsan_handlers.h 40 RECOVERABLE(type_mismatch, TypeMismatchData *Data, ValueHandle Pointer)
48 RECOVERABLE(add_overflow, OverflowData *Data, ValueHandle LHS, ValueHandle RHS)
51 RECOVERABLE(sub_overflow, OverflowData *Data, ValueHandle LHS, ValueHandle RHS)
54 RECOVERABLE(mul_overflow, OverflowData *Data, ValueHandle LHS, ValueHandle RHS)
57 RECOVERABLE(negate_overflow, OverflowData *Data, ValueHandle OldVal)
61 ValueHandle LHS, ValueHandle RHS
    [all...]
ubsan_handlers_cxx.cc 34 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash,
78 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) {
83 DynamicTypeCacheMissData *Data, ValueHandle Pointer, ValueHandle Hash) {
90 static void HandleCFIBadType(CFIBadTypeData *Data, ValueHandle Vtable,
121 ValueHandle Vtable) {
127 ValueHandle Vtable) {
ubsan_value.h 89 /// interpret the meaning of a ValueHandle of this type.
100 /// the integer itself if it fits into a ValueHandle, and a pointer to the
137 typedef uptr ValueHandle;
143 /// as an operand to a handler function) and a ValueHandle (which is passed at
149 ValueHandle Val;
154 const unsigned InlineBits = sizeof(ValueHandle) * 8;
162 const unsigned InlineBits = sizeof(ValueHandle) * 8;
168 Value(const TypeDescriptor &Type, ValueHandle Val) : Type(Type), Val(Val) {}
ubsan_handlers.cc 44 static void handleTypeMismatchImpl(TypeMismatchData *Data, ValueHandle Pointer,
94 ValueHandle Pointer) {
99 ValueHandle Pointer) {
107 static void handleIntegerOverflowImpl(OverflowData *Data, ValueHandle LHS,
127 void __ubsan::handler_name(OverflowData *Data, ValueHandle LHS, \
128 ValueHandle RHS) { \
142 static void handleNegateOverflowImpl(OverflowData *Data, ValueHandle OldVal,
165 ValueHandle OldVal) {
170 ValueHandle OldVal) {
176 static void handleDivremOverflowImpl(OverflowData *Data, ValueHandle LHS
    [all...]
  /external/llvm/unittests/IR/
ValueHandleTest.cpp 1 //===- ValueHandleTest.cpp - ValueHandle tests ----------------------------===//
10 #include "llvm/IR/ValueHandle.h"
21 class ValueHandle : public testing::Test {
26 ValueHandle() :
37 TEST_F(ValueHandle, WeakVH_BasicOperation) {
49 TEST_F(ValueHandle, WeakVH_Comparisons) {
82 TEST_F(ValueHandle, WeakVH_FollowsRAUW) {
92 TEST_F(ValueHandle, WeakVH_NullOnDeletion) {
104 TEST_F(ValueHandle, AssertingVH_BasicOperation) {
120 TEST_F(ValueHandle, AssertingVH_Const)
    [all...]

Completed in 9527 milliseconds