Lines Matching refs:CurrentLocOps
2225 uint64_t CurrentLocOps = 0; in salvageDbgAssignAddress() local
2228 Value *NewV = salvageDebugInfoImpl(*I, CurrentLocOps, Ops, AdditionalValues); in salvageDbgAssignAddress()
2288 uint64_t CurrentLocOps = SalvagedExpr->getNumLocationOperands(); in salvageDebugInfoForDbgValues() local
2289 Op0 = salvageDebugInfoImpl(I, CurrentLocOps, Ops, AdditionalValues); in salvageDebugInfoForDbgValues()
2350 uint64_t CurrentLocOps = SalvagedExpr->getNumLocationOperands(); in salvageDebugInfoForDbgValues() local
2351 Op0 = salvageDebugInfoImpl(I, CurrentLocOps, Ops, AdditionalValues); in salvageDebugInfoForDbgValues()
2396 uint64_t CurrentLocOps, in getSalvageOpsForGEP() argument
2405 if (!VariableOffsets.empty() && !CurrentLocOps) { in getSalvageOpsForGEP()
2407 CurrentLocOps = 1; in getSalvageOpsForGEP()
2413 Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps++, dwarf::DW_OP_constu, in getSalvageOpsForGEP()
2451 static void handleSSAValueOperands(uint64_t CurrentLocOps, in handleSSAValueOperands() argument
2455 if (!CurrentLocOps) { in handleSSAValueOperands()
2457 CurrentLocOps = 1; in handleSSAValueOperands()
2459 Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps}); in handleSSAValueOperands()
2463 Value *getSalvageOpsForBinOp(BinaryOperator *BI, uint64_t CurrentLocOps, in getSalvageOpsForBinOp() argument
2485 handleSSAValueOperands(CurrentLocOps, Opcodes, AdditionalValues, BI); in getSalvageOpsForBinOp()
2522 Value *getSalvageOpsForIcmpOp(ICmpInst *Icmp, uint64_t CurrentLocOps, in getSalvageOpsForIcmpOp() argument
2539 handleSSAValueOperands(CurrentLocOps, Opcodes, AdditionalValues, Icmp); in getSalvageOpsForIcmpOp()
2551 Value *llvm::salvageDebugInfoImpl(Instruction &I, uint64_t CurrentLocOps, in salvageDebugInfoImpl() argument
2587 return getSalvageOpsForGEP(GEP, DL, CurrentLocOps, Ops, AdditionalValues); in salvageDebugInfoImpl()
2589 return getSalvageOpsForBinOp(BI, CurrentLocOps, Ops, AdditionalValues); in salvageDebugInfoImpl()
2591 return getSalvageOpsForIcmpOp(IC, CurrentLocOps, Ops, AdditionalValues); in salvageDebugInfoImpl()