Lines Matching refs:Opcodes
2397 SmallVectorImpl<uint64_t> &Opcodes, in getSalvageOpsForGEP() argument
2406 Opcodes.insert(Opcodes.begin(), {dwarf::DW_OP_LLVM_arg, 0}); in getSalvageOpsForGEP()
2413 Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps++, dwarf::DW_OP_constu, in getSalvageOpsForGEP()
2417 DIExpression::appendOffset(Opcodes, ConstantOffset.getSExtValue()); in getSalvageOpsForGEP()
2452 SmallVectorImpl<uint64_t> &Opcodes, in handleSSAValueOperands() argument
2456 Opcodes.append({dwarf::DW_OP_LLVM_arg, 0}); in handleSSAValueOperands()
2459 Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps}); in handleSSAValueOperands()
2464 SmallVectorImpl<uint64_t> &Opcodes, in getSalvageOpsForBinOp() argument
2480 DIExpression::appendOffset(Opcodes, Offset); in getSalvageOpsForBinOp()
2483 Opcodes.append({dwarf::DW_OP_constu, Val}); in getSalvageOpsForBinOp()
2485 handleSSAValueOperands(CurrentLocOps, Opcodes, AdditionalValues, BI); in getSalvageOpsForBinOp()
2493 Opcodes.push_back(DwarfBinOp); in getSalvageOpsForBinOp()
2523 SmallVectorImpl<uint64_t> &Opcodes, in getSalvageOpsForIcmpOp() argument
2533 Opcodes.push_back(dwarf::DW_OP_consts); in getSalvageOpsForIcmpOp()
2535 Opcodes.push_back(dwarf::DW_OP_constu); in getSalvageOpsForIcmpOp()
2537 Opcodes.push_back(Val); in getSalvageOpsForIcmpOp()
2539 handleSSAValueOperands(CurrentLocOps, Opcodes, AdditionalValues, Icmp); in getSalvageOpsForIcmpOp()
2547 Opcodes.push_back(DwarfIcmpOp); in getSalvageOpsForIcmpOp()