Home | History | Annotate | Download | only in IR

Lines Matching refs:DIB

341   DIBuilder DIB(*M);
342 auto File = DIB.createFile("F.CBL", "/");
343 auto CU = DIB.createCompileUnit(dwarf::DW_LANG_Cobol74, "F.CBL", "/",
345 auto Type = DIB.createSubroutineType(DIB.getOrCreateTypeArray(None));
347 DIB.createFunction(CU, "foo", "", File, 1, Type, false, true, 1, 0, true);
351 DIB.createFunction(CU, "bar", "", File, 1, Type, false, true, 1, 0, true);
352 auto BadScope = DIB.createLexicalBlockFile(BarSP, File, 0);
354 DIB.finalize();
393 DIBuilder DIB(*M);
394 auto File = DIB.createFile("tmp.cpp", "/");
395 auto CU = DIB.createCompileUnit(dwarf::DW_LANG_C_plus_plus_11, "tmp.cpp", "/",
397 auto SPType = DIB.createSubroutineType(DIB.getOrCreateTypeArray(None));
399 DIB.createFunction(CU, "foo", "foo", File, 1, SPType, false, true, 1);
419 DIB.finalize();
424 DIBuilder DIB(*M);
425 auto CU = DIB.createCompileUnit(dwarf::DW_LANG_Cobol74, "F.CBL", "/",
427 DIB.createImportedDeclaration(CU, nullptr, 1);
428 DIB.createImportedDeclaration(CU, nullptr, 1);
429 DIB.createImportedModule(CU, (DIImportedEntity *)nullptr, 2);
430 DIB.createImportedModule(CU, (DIImportedEntity *)nullptr, 2);
431 DIB.finalize();