Lines Matching refs:CurrentLocOps
2202 uint64_t CurrentLocOps = 0; in salvageDbgAssignAddress() local
2205 Value *NewV = salvageDebugInfoImpl(*I, CurrentLocOps, Ops, AdditionalValues); in salvageDbgAssignAddress()
2263 uint64_t CurrentLocOps = SalvagedExpr->getNumLocationOperands(); in salvageDebugInfoForDbgValues() local
2264 Op0 = salvageDebugInfoImpl(I, CurrentLocOps, Ops, AdditionalValues); in salvageDebugInfoForDbgValues()
2323 uint64_t CurrentLocOps = SalvagedExpr->getNumLocationOperands(); in salvageDebugInfoForDbgValues() local
2324 Op0 = salvageDebugInfoImpl(I, CurrentLocOps, Ops, AdditionalValues); in salvageDebugInfoForDbgValues()
2368 uint64_t CurrentLocOps, in getSalvageOpsForGEP() argument
2377 if (!VariableOffsets.empty() && !CurrentLocOps) { in getSalvageOpsForGEP()
2379 CurrentLocOps = 1; in getSalvageOpsForGEP()
2385 Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps++, dwarf::DW_OP_constu, in getSalvageOpsForGEP()
2423 static void handleSSAValueOperands(uint64_t CurrentLocOps, in handleSSAValueOperands() argument
2427 if (!CurrentLocOps) { in handleSSAValueOperands()
2429 CurrentLocOps = 1; in handleSSAValueOperands()
2431 Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps}); in handleSSAValueOperands()
2435 Value *getSalvageOpsForBinOp(BinaryOperator *BI, uint64_t CurrentLocOps, in getSalvageOpsForBinOp() argument
2457 handleSSAValueOperands(CurrentLocOps, Opcodes, AdditionalValues, BI); in getSalvageOpsForBinOp()
2494 Value *getSalvageOpsForIcmpOp(ICmpInst *Icmp, uint64_t CurrentLocOps, in getSalvageOpsForIcmpOp() argument
2511 handleSSAValueOperands(CurrentLocOps, Opcodes, AdditionalValues, Icmp); in getSalvageOpsForIcmpOp()
2523 Value *llvm::salvageDebugInfoImpl(Instruction &I, uint64_t CurrentLocOps, in salvageDebugInfoImpl() argument
2559 return getSalvageOpsForGEP(GEP, DL, CurrentLocOps, Ops, AdditionalValues); in salvageDebugInfoImpl()
2561 return getSalvageOpsForBinOp(BI, CurrentLocOps, Ops, AdditionalValues); in salvageDebugInfoImpl()
2563 return getSalvageOpsForIcmpOp(IC, CurrentLocOps, Ops, AdditionalValues); in salvageDebugInfoImpl()