Home
last modified time | relevance | path

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

/external/llvm/tools/llvm-mc/
DDisassembler.cpp114 unsigned ByteVal; in ByteArrayFromString() local
115 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString()
125 ByteArray.first.push_back(ByteVal); in ByteArrayFromString()
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp66 SDValue Dst, uint64_t ByteVal, uint64_t Size, in memsetStore() argument
68 uint64_t StoreVal = ByteVal; in memsetStore()
70 StoreVal |= ByteVal << (I * 8); in memsetStore()
95 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local
96 if (ByteVal == 0 || ByteVal == 255 ? in EmitTargetCodeForMemset()
101 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
108 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
/external/swiftshader/third_party/LLVM/tools/llvm-mc/
DDisassembler.cpp125 unsigned ByteVal; in ByteArrayFromString() local
126 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString()
135 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data())); in ByteArrayFromString()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp340 Value *ByteVal);
365 Value *StartPtr, Value *ByteVal) { in INITIALIZE_PASS_DEPENDENCY()
390 if (ByteVal != isBytewiseValue(NextStore->getOperand(0))) in INITIALIZE_PASS_DEPENDENCY()
403 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in INITIALIZE_PASS_DEPENDENCY()
457 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment); in INITIALIZE_PASS_DEPENDENCY()
534 if (Value *ByteVal = isBytewiseValue(SI->getOperand(0))) in processStore() local
536 ByteVal)) { in processStore()
795 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) { in processMemCpy() local
797 Builder.CreateMemSet(M->getRawDest(), ByteVal, CopySize, in processMemCpy()
/external/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp337 Value *ByteVal);
365 Value *ByteVal) { in INITIALIZE_PASS_DEPENDENCY()
390 if (ByteVal != isBytewiseValue(NextStore->getOperand(0))) in INITIALIZE_PASS_DEPENDENCY()
403 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in INITIALIZE_PASS_DEPENDENCY()
455 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment); in INITIALIZE_PASS_DEPENDENCY()
713 if (Value *ByteVal = isBytewiseValue(V)) { in processStore() local
715 ByteVal)) { in processStore()
730 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, in processStore()
1149 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) { in processMemCpy() local
1151 Builder.CreateMemSet(M->getRawDest(), ByteVal, M->getLength(), in processMemCpy()
/external/llvm/include/llvm/Transforms/Scalar/
DMemCpyOptimizer.h62 Value *ByteVal);
/external/clang/lib/CodeGen/
DCGBuiltin.cpp1044 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
1049 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
1061 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
1064 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp2776 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) { in SplatByte() argument
2777 APInt Val = APInt(NumBits, ByteVal); in SplatByte()
DSelectionDAG.cpp3239 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) { in SplatByte() argument
3240 APInt Val = APInt(NumBits, ByteVal); in SplatByte()