Searched refs:LoadBytes (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp530 unsigned LoadBytes = WideBytes; local
532 if (RemainingBytes >= LoadBytes) {
541 while (RemainingBytes < LoadBytes) {
542 LoadBytes >>= 1; // Reduce the load size by half.
543 LoadVT = EVT::getIntegerVT(*DAG.getContext(), LoadBytes << 3);
553 RemainingBytes -= LoadBytes;
554 Offset += LoadBytes;
556 DAG.getConstant(LoadBytes, dl,
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp1095 /// LoadIntFromMemory - Loads the integer stored in the LoadBytes bytes starting
1097 static void LoadIntFromMemory(APInt &IntVal, uint8_t *Src, unsigned LoadBytes) { argument
1098 assert((IntVal.getBitWidth()+7)/8 >= LoadBytes && "Integer too small!");
1105 memcpy(Dst, Src, LoadBytes);
1111 while (LoadBytes > sizeof(uint64_t)) {
1112 LoadBytes -= sizeof(uint64_t);
1114 memcpy(Dst, Src + LoadBytes, sizeof(uint64_t));
1118 memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
1127 const unsigned LoadBytes local
[all...]

Completed in 99 milliseconds