Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp1003 unsigned StoreBytes) { in StoreIntToMemory() argument
1004 assert((IntVal.getBitWidth()+7)/8 >= StoreBytes && "Integer too small!"); in StoreIntToMemory()
1010 memcpy(Dst, Src, StoreBytes); in StoreIntToMemory()
1015 while (StoreBytes > sizeof(uint64_t)) { in StoreIntToMemory()
1016 StoreBytes -= sizeof(uint64_t); in StoreIntToMemory()
1018 memcpy(Dst + StoreBytes, Src, sizeof(uint64_t)); in StoreIntToMemory()
1022 memcpy(Dst, Src + sizeof(uint64_t) - StoreBytes, StoreBytes); in StoreIntToMemory()
1028 const unsigned StoreBytes = getDataLayout()->getTypeStoreSize(Ty); in StoreValueToMemory() local
1035 StoreIntToMemory(Val.IntVal, (uint8_t*)Ptr, StoreBytes); in StoreValueToMemory()
1048 if (StoreBytes != sizeof(PointerTy)) in StoreValueToMemory()
[all …]