Lines Matching refs:Opcodes
2369 SmallVectorImpl<uint64_t> &Opcodes, in getSalvageOpsForGEP() argument
2378 Opcodes.insert(Opcodes.begin(), {dwarf::DW_OP_LLVM_arg, 0}); in getSalvageOpsForGEP()
2385 Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps++, dwarf::DW_OP_constu, in getSalvageOpsForGEP()
2389 DIExpression::appendOffset(Opcodes, ConstantOffset.getSExtValue()); in getSalvageOpsForGEP()
2424 SmallVectorImpl<uint64_t> &Opcodes, in handleSSAValueOperands() argument
2428 Opcodes.append({dwarf::DW_OP_LLVM_arg, 0}); in handleSSAValueOperands()
2431 Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps}); in handleSSAValueOperands()
2436 SmallVectorImpl<uint64_t> &Opcodes, in getSalvageOpsForBinOp() argument
2452 DIExpression::appendOffset(Opcodes, Offset); in getSalvageOpsForBinOp()
2455 Opcodes.append({dwarf::DW_OP_constu, Val}); in getSalvageOpsForBinOp()
2457 handleSSAValueOperands(CurrentLocOps, Opcodes, AdditionalValues, BI); in getSalvageOpsForBinOp()
2465 Opcodes.push_back(DwarfBinOp); in getSalvageOpsForBinOp()
2495 SmallVectorImpl<uint64_t> &Opcodes, in getSalvageOpsForIcmpOp() argument
2505 Opcodes.push_back(dwarf::DW_OP_consts); in getSalvageOpsForIcmpOp()
2507 Opcodes.push_back(dwarf::DW_OP_constu); in getSalvageOpsForIcmpOp()
2509 Opcodes.push_back(Val); in getSalvageOpsForIcmpOp()
2511 handleSSAValueOperands(CurrentLocOps, Opcodes, AdditionalValues, Icmp); in getSalvageOpsForIcmpOp()
2519 Opcodes.push_back(DwarfIcmpOp); in getSalvageOpsForIcmpOp()