Home
last modified time | relevance | path

Searched refs:debugLine (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lld/MachO/
H A DDwarf.cpp32 .Case(section_names::debugLine, &dObj->lineSection.Data) in create()
H A DInputSection.h303 constexpr const char debugLine[] = "__debug_line"; variable
/llvm-project-15.0.7/mlir/lib/Target/SPIRV/Deserialization/
H A DDeserializer.cpp2044 if (!debugLine) in createFileLineColLoc()
2047 auto fileName = debugInfoMap.lookup(debugLine->fileID).str(); in createFileLineColLoc()
2050 return FileLineColLoc::get(opBuilder.getStringAttr(fileName), debugLine->line, in createFileLineColLoc()
2051 debugLine->column); in createFileLineColLoc()
2063 debugLine = DebugLine{operands[0], operands[1], operands[2]}; in processDebugLine()
2067 void spirv::Deserializer::clearDebugLine() { debugLine = llvm::None; } in clearDebugLine()
H A DDeserializer.h482 llvm::Optional<DebugLine> debugLine; variable