Searched refs:InsertAtHead (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DebugProgramInstruction.cpp | 653 void DbgMarker::insertDbgRecord(DbgRecord *New, bool InsertAtHead) { in insertDbgRecord() argument 654 auto It = InsertAtHead ? StoredDbgRecords.begin() : StoredDbgRecords.end(); in insertDbgRecord() 671 void DbgMarker::absorbDebugValues(DbgMarker &Src, bool InsertAtHead) { in absorbDebugValues() argument 672 auto It = InsertAtHead ? StoredDbgRecords.begin() : StoredDbgRecords.end(); in absorbDebugValues() 681 bool InsertAtHead) { in absorbDebugValues() argument 686 (InsertAtHead) ? StoredDbgRecords.begin() : StoredDbgRecords.end(); in absorbDebugValues() 694 bool InsertAtHead) { in cloneDebugInfoFrom() argument 706 auto Pos = (InsertAtHead) ? StoredDbgRecords.begin() : StoredDbgRecords.end(); in cloneDebugInfoFrom() 718 if (InsertAtHead) in cloneDebugInfoFrom()
|
H A D | Instruction.cpp | 138 bool InsertAtHead = InsertPos.getHeadBit(); in insertBefore() local 139 if (!InsertAtHead) { in insertBefore() 203 bool InsertAtHead = I.getHeadBit(); in moveBeforeImpl() local 208 if (I != this->getIterator() || InsertAtHead) { in moveBeforeImpl() 224 if (!InsertAtHead && NextMarker && !NextMarker->empty()) { in moveBeforeImpl() 235 bool InsertAtHead) { in cloneDebugInfoFrom() argument 247 InsertAtHead); in cloneDebugInfoFrom() 267 bool InsertAtHead) { in adoptDbgRecords() argument 287 DebugMarker->absorbDebugValues(*SrcMarker, InsertAtHead); in adoptDbgRecords()
|
H A D | BasicBlock.cpp | 772 bool InsertAtHead = Dest.getHeadBit(); in spliceDebugInfoEmptyBlock() local 784 Dest->adoptDbgRecords(Src, Src->end(), InsertAtHead); in spliceDebugInfoEmptyBlock() 800 createMarker(Dest)->absorbDebugValues(*First->DebugMarker, InsertAtHead); in spliceDebugInfoEmptyBlock() 893 bool InsertAtHead = Dest.getHeadBit(); in spliceDebugInfoImpl() local 1012 if (InsertAtHead) { in spliceDebugInfoImpl() 1071 bool InsertAtHead = Where.getHeadBit(); in insertDbgRecordBefore() local 1073 M->insertDbgRecord(DR, InsertAtHead); in insertDbgRecordBefore()
|
H A D | DIBuilder.cpp | 1116 bool InsertAtHead) { in insertDbgVariableRecord() argument 1128 InsertPt.setHeadBit(InsertAtHead); in insertDbgVariableRecord()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DebugProgramInstruction.h | 607 void absorbDebugValues(DbgMarker &Src, bool InsertAtHead); 612 DbgMarker &Src, bool InsertAtHead); 615 void insertDbgRecord(DbgRecord *New, bool InsertAtHead); 631 bool InsertAtHead = false);
|
H A D | Instruction.h | 101 bool InsertAtHead = false); 120 bool InsertAtHead);
|
H A D | BasicBlock.h | 195 bool InsertAtHead);
|
H A D | DIBuilder.h | 107 bool InsertAtHead = false);
|