Searched refs:LoadBytes (Results 1 – 4 of 4) sorted by relevance
3078 unsigned LoadBytes) { in LoadIntFromMemory() argument3079 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!"); in LoadIntFromMemory()3086 memcpy(Dst, Src, LoadBytes); in LoadIntFromMemory()3092 while (LoadBytes > sizeof(uint64_t)) { in LoadIntFromMemory()3093 LoadBytes -= sizeof(uint64_t); in LoadIntFromMemory()3095 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t)); in LoadIntFromMemory()3099 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes); in LoadIntFromMemory()
1093 const unsigned LoadBytes = getDataLayout().getTypeStoreSize(Ty); in LoadValueFromMemory() local1099 LoadIntFromMemory(Result.IntVal, (uint8_t*)Ptr, LoadBytes); in LoadValueFromMemory()
2421 unsigned LoadBytes);
16518 uint64_t LoadBytes = Mem->getMemoryVT().getSizeInBits()/8; in shouldReduceLoadWidth() local16519 if (ShiftAmount == Log2_32(LoadBytes)) in shouldReduceLoadWidth()