Searched refs:createBitCast (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | LLVMReactor.cpp | 900 return createBitCast( in createLoad() 903 …createLoad(createBitCast(ptr, Pointer<Long>::type()), Long::type(), isVolatile, alignment, atomic,… in createLoad() 911 …Value *i = createLoad(createBitCast(ptr, Pointer<Int>::type()), Int::type(), isVolatile, alignment… in createLoad() 914 return createBitCast(v, type); in createLoad() 986 … createBitCast(value, T(llvm::VectorType::get(T(Long::type()), 2, false))), Long::type(), 0), in createStore() 987 createBitCast(ptr, Pointer<Long>::type()), in createStore() 995 createExtractElement(createBitCast(value, Int4::type()), Int::type(), 0), in createStore() 996 createBitCast(ptr, Pointer<Int>::type()), in createStore() 1312 return createBitCast( in createGEP() 1313 …V(jit->builder->CreateGEP(T(Byte::type()), V(createBitCast(ptr, T(llvm::PointerType::get(T(Byte::t… in createGEP() [all …]
|
D | SubzeroReactor.cpp | 1700 Value *Nucleus::createBitCast(Value *v, Type *destType) in createBitCast() function in rr::Nucleus 2536 Value *short8 = Nucleus::createBitCast(cast.value(), Short8::type()); in Short4() 2540 Value *short4 = Nucleus::createBitCast(int2, Short4::type()); in Short4() 3417 Value *x = Nucleus::createBitCast(cast.value(), Int::type()); in Int4() 3422 Value *b = Nucleus::createBitCast(a, Byte16::type()); in Int4() 3426 Value *d = Nucleus::createBitCast(c, Short8::type()); in Int4() 3429 Value *f = Nucleus::createBitCast(e, Int4::type()); in Int4() 3437 Value *x = Nucleus::createBitCast(cast.value(), Int::type()); in Int4() 3441 Value *b = Nucleus::createBitCast(a, Byte16::type()); in Int4() 3445 Value *d = Nucleus::createBitCast(c, Short8::type()); in Int4() [all …]
|
D | Nucleus.hpp | 274 static Value *createBitCast(Value *V, Type *destType);
|
D | Reactor.cpp | 1281 storeValue(Nucleus::createBitCast(cast.value(), type())); in Byte4() 1542 storeValue(Nucleus::createBitCast(vector, type())); in SByte8() 1761 storeValue(Nucleus::createBitCast(cast.value(), type())); in Short2() 1766 storeValue(Nucleus::createBitCast(cast.value(), type())); in UShort2() 2929 storeValue(Nucleus::createBitCast(cast.value(), type())); in Int2() 2958 storeValue(Nucleus::createBitCast(packed, Int2::type())); in Int2() 3997 storeValue(Nucleus::createBitCast(cast.value(), type())); in Float2() 4230 Value *vector = Nucleus::createBitCast(x.value(), Int4::type()); in Abs()
|
D | Reactor.hpp | 2454 Value *pointerT = Nucleus::createBitCast(pointerS.value(), Nucleus::getPointerType(T::type())); in Pointer() 2463 Value *pointerT = Nucleus::createBitCast(pointerS, Nucleus::getPointerType(T::type())); in Pointer() 2759 …assert(Nucleus::createBitCast(value, T::type()) == value); // Run-time type should match T, so bi… in RValue() 3235 return RValue<T>(Nucleus::createBitCast(val.value(), T::type())); in ReinterpretCast() 3244 return RValue<T>(Nucleus::createBitCast(val, T::type())); in ReinterpretCast() 3257 return RValue<T>(Nucleus::createBitCast(val, T::type())); in As()
|