Home
last modified time | relevance | path

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

/external/swiftshader/src/Reactor/
DLLVMReactor.cpp1162 return createBitCast( in createLoad()
1165 … createLoad(createBitCast(ptr, Pointer<Long>::getType()), Long::getType(), isVolatile, alignment), in createLoad()
1173 …Value *i = createLoad(createBitCast(ptr, Pointer<Int>::getType()), Int::getType(), isVolatile, ali… in createLoad()
1176 return createBitCast(v, type); in createLoad()
1201 createBitCast(value, T(llvm::VectorType::get(T(Long::getType()), 2))), Long::getType(), 0), in createStore()
1202 createBitCast(ptr, Pointer<Long>::getType()), in createStore()
1210 createExtractElement(createBitCast(value, Int4::getType()), Int::getType(), 0), in createStore()
1211 createBitCast(ptr, Pointer<Int>::getType()), in createStore()
1247 return createBitCast( in createGEP()
1248 …V(::builder->CreateGEP(V(createBitCast(ptr, T(llvm::PointerType::get(T(Byte::getType()), 0)))), V(… in createGEP()
[all …]
DNucleus.hpp113 static Value *createBitCast(Value *V, Type *destType);
DSubzeroReactor.cpp1062 Value *Nucleus::createBitCast(Value *v, Type *destType) in createBitCast() function in rr::Nucleus
2548 storeValue(Nucleus::createBitCast(cast.value, getType())); in Byte4()
2907 storeValue(Nucleus::createBitCast(vector, getType())); in SByte8()
3230 storeValue(Nucleus::createBitCast(cast.value, getType())); in Short2()
3240 storeValue(Nucleus::createBitCast(cast.value, getType())); in UShort2()
3261 Value *short8 = Nucleus::createBitCast(cast.value, Short8::getType()); in Short4()
3265 Value *short4 = Nucleus::createBitCast(int2, Short4::getType()); in Short4()
5142 storeValue(Nucleus::createBitCast(cast.value, getType())); in Int2()
5173 storeValue(Nucleus::createBitCast(packed, Int2::getType())); in Int2()
5568 Value *x = Nucleus::createBitCast(cast.value, Int::getType()); in Int4()
[all …]
DReactor.hpp2148 Value *pointerT = Nucleus::createBitCast(pointerS.value, Nucleus::getPointerType(T::getType())); in Pointer()
2156 Value *pointerT = Nucleus::createBitCast(pointerS, Nucleus::getPointerType(T::getType())); in Pointer()
2357 …assert(Nucleus::createBitCast(rvalue, T::getType()) == rvalue); // Run-time type should match T,… in RValue()
2775 return RValue<T>(Nucleus::createBitCast(val.value, T::getType())); in ReinterpretCast()
2783 return RValue<T>(Nucleus::createBitCast(val, T::getType())); in ReinterpretCast()
2795 return RValue<T>(Nucleus::createBitCast(val, T::getType())); in As()