Home
last modified time | relevance | path

Searched refs:createBitCast (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/src/Reactor/
DSubzeroReactor.cpp1683 Value *Nucleus::createBitCast(Value *v, Type *destType) in createBitCast() function in rr::Nucleus
2489 Value *short8 = Nucleus::createBitCast(cast.value(), Short8::type()); in Short4()
2493 Value *short4 = Nucleus::createBitCast(int2, Short4::type()); in Short4()
3234 Value *x = Nucleus::createBitCast(cast.value(), Int::type()); in Int4()
3239 Value *b = Nucleus::createBitCast(a, Byte16::type()); in Int4()
3243 Value *d = Nucleus::createBitCast(c, Short8::type()); in Int4()
3246 Value *f = Nucleus::createBitCast(e, Int4::type()); in Int4()
3254 Value *x = Nucleus::createBitCast(cast.value(), Int::type()); in Int4()
3258 Value *b = Nucleus::createBitCast(a, Byte16::type()); in Int4()
3262 Value *d = Nucleus::createBitCast(c, Short8::type()); in Int4()
[all …]
DLLVMReactor.cpp862 return createBitCast( in createLoad()
865 …createLoad(createBitCast(ptr, Pointer<Long>::type()), Long::type(), isVolatile, alignment, atomic,… in createLoad()
873 …Value *i = createLoad(createBitCast(ptr, Pointer<Int>::type()), Int::type(), isVolatile, alignment… in createLoad()
876 return createBitCast(v, type); in createLoad()
947createBitCast(value, T(llvm::VectorType::get(T(Long::type()), 2, false))), Long::type(), 0), in createStore()
948 createBitCast(ptr, Pointer<Long>::type()), in createStore()
956 createExtractElement(createBitCast(value, Int4::type()), Int::type(), 0), in createStore()
957 createBitCast(ptr, Pointer<Int>::type()), in createStore()
1272 return createBitCast( in createGEP()
1273 …V(jit->builder->CreateGEP(T(Byte::type()), V(createBitCast(ptr, T(llvm::PointerType::get(T(Byte::t… in createGEP()
[all …]
DNucleus.hpp156 static Value *createBitCast(Value *V, Type *destType);
DReactor.cpp1258 storeValue(Nucleus::createBitCast(cast.value(), type())); in Byte4()
1524 storeValue(Nucleus::createBitCast(vector, type())); in SByte8()
1743 storeValue(Nucleus::createBitCast(cast.value(), type())); in Short2()
1748 storeValue(Nucleus::createBitCast(cast.value(), type())); in UShort2()
2919 storeValue(Nucleus::createBitCast(cast.value(), type())); in Int2()
2948 storeValue(Nucleus::createBitCast(packed, Int2::type())); in Int2()
3992 storeValue(Nucleus::createBitCast(cast.value(), type())); in Float2()
DReactor.hpp2183 Value *pointerT = Nucleus::createBitCast(pointerS.value(), Nucleus::getPointerType(T::type())); in Pointer()
2192 Value *pointerT = Nucleus::createBitCast(pointerS, Nucleus::getPointerType(T::type())); in Pointer()
2494 …assert(Nucleus::createBitCast(value, T::type()) == value); // Run-time type should match T, so bi… in RValue()
3016 return RValue<T>(Nucleus::createBitCast(val.value(), T::type())); in ReinterpretCast()
3025 return RValue<T>(Nucleus::createBitCast(val, T::type())); in ReinterpretCast()
3038 return RValue<T>(Nucleus::createBitCast(val, T::type())); in As()