Home
last modified time | relevance | path

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

/external/llvm-project/llvm/tools/llvm-mc/
DDisassembler.cpp113 unsigned ByteVal; in ByteArrayFromString() local
114 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString()
124 ByteArray.first.push_back(ByteVal); in ByteArrayFromString()
/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-project/llvm/tools/llvm-ml/
DDisassembler.cpp107 unsigned ByteVal; in ByteArrayFromString() local
108 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString()
118 ByteArray.first.push_back(ByteVal); in ByteArrayFromString()
/external/llvm-project/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp65 SDValue Dst, uint64_t ByteVal, uint64_t Size, in memsetStore() argument
67 uint64_t StoreVal = ByteVal; in memsetStore()
69 StoreVal |= ByteVal << (I * 8); in memsetStore()
93 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local
94 if (ByteVal == 0 || ByteVal == 255 ? in EmitTargetCodeForMemset()
99 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
107 DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
/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-10.0/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp65 SDValue Dst, uint64_t ByteVal, uint64_t Size, in memsetStore() argument
67 uint64_t StoreVal = ByteVal; in memsetStore()
69 StoreVal |= ByteVal << (I * 8); in memsetStore()
93 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local
94 if (ByteVal == 0 || ByteVal == 255 ? in EmitTargetCodeForMemset()
99 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
106 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp307 Value *ByteVal) { in INITIALIZE_PASS_DEPENDENCY()
333 if (isa<UndefValue>(ByteVal) && StoredByte) in INITIALIZE_PASS_DEPENDENCY()
334 ByteVal = StoredByte; in INITIALIZE_PASS_DEPENDENCY()
335 if (ByteVal != StoredByte) in INITIALIZE_PASS_DEPENDENCY()
348 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in INITIALIZE_PASS_DEPENDENCY()
395 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in INITIALIZE_PASS_DEPENDENCY()
665 if (Value *ByteVal = isBytewiseValue(V, DL)) { in processStore() local
667 ByteVal)) { in processStore()
682 Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Size, MA); in processStore()
1144 if (Value *ByteVal = isBytewiseValue(GV->getInitializer(), in processMemCpy() local
[all …]
/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-project/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp370 Value *ByteVal) { in tryMergingIntoMemset() argument
423 if (isa<UndefValue>(ByteVal) && StoredByte) in tryMergingIntoMemset()
424 ByteVal = StoredByte; in tryMergingIntoMemset()
425 if (ByteVal != StoredByte) in tryMergingIntoMemset()
438 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in tryMergingIntoMemset()
480 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in tryMergingIntoMemset()
798 if (Value *ByteVal = isBytewiseValue(V, DL)) { in processStore() local
800 ByteVal)) { in processStore()
812 auto *M = Builder.CreateMemSet(SI->getPointerOperand(), ByteVal, Size, in processStore()
1346 if (Value *ByteVal = isBytewiseValue(GV->getInitializer(), in processMemCpy() local
[all …]
/external/llvm/include/llvm/Transforms/Scalar/
DMemCpyOptimizer.h62 Value *ByteVal);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/
DMemCpyOptimizer.h71 Value *ByteVal);
/external/llvm-project/llvm/include/llvm/Transforms/Scalar/
DMemCpyOptimizer.h75 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/llvm-project/clang/lib/CodeGen/
DCGBuiltin.cpp3185 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
3190 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()
3204 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local
3207 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); in EmitBuiltinExpr()