Searched refs:Tramp (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | SymbolRecordMapping.cpp | 75 TrampolineSym &Tramp) { in visitKnownRecord() argument 77 error(IO.mapEnum(Tramp.Type)); in visitKnownRecord() 78 error(IO.mapInteger(Tramp.Size)); in visitKnownRecord() 79 error(IO.mapInteger(Tramp.ThunkOffset)); in visitKnownRecord() 80 error(IO.mapInteger(Tramp.TargetOffset)); in visitKnownRecord() 81 error(IO.mapInteger(Tramp.ThunkSection)); in visitKnownRecord() 82 error(IO.mapInteger(Tramp.TargetSection)); in visitKnownRecord()
|
H A D | SymbolDumper.cpp | 146 TrampolineSym &Tramp) { in visitKnownRecord() argument 147 W.printEnum("Type", uint16_t(Tramp.Type), getTrampolineNames()); in visitKnownRecord() 148 W.printNumber("Size", Tramp.Size); in visitKnownRecord() 149 W.printNumber("ThunkOff", Tramp.ThunkOffset); in visitKnownRecord() 150 W.printNumber("TargetOff", Tramp.TargetOffset); in visitKnownRecord() 151 W.printNumber("ThunkSection", Tramp.ThunkSection); in visitKnownRecord() 152 W.printNumber("TargetSection", Tramp.TargetSection); in visitKnownRecord()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | MinimalSymbolDumper.cpp | 184 static std::string formatTrampolineType(TrampolineType Tramp) { in formatTrampolineType() argument 185 switch (Tramp) { in formatTrampolineType() 189 return formatUnknownEnum(Tramp); in formatTrampolineType() 450 TrampolineSym &Tramp) { in visitKnownRecord() argument 453 formatTrampolineType(Tramp.Type), Tramp.Size, in visitKnownRecord() 454 formatSegmentOffset(Tramp.ThunkSection, Tramp.ThunkOffset), in visitKnownRecord() 455 formatSegmentOffset(Tramp.TargetSection, Tramp.ThunkOffset)); in visitKnownRecord()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLSymbols.cpp | 186 IO &io, TrampolineType &Tramp) { in enumeration() argument 189 io.enumCase(Tramp, E.Name.str().c_str(), in enumeration()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineInternal.h | 283 IntrinsicInst &Tramp);
|
H A D | InstCombineCalls.cpp | 4348 IntrinsicInst &Tramp) { in transformCallThroughTrampoline() argument 4357 Function *NestF = cast<Function>(Tramp.getArgOperand(1)->stripPointerCasts()); in transformCallThroughTrampoline() 4394 Value *NestVal = Tramp.getArgOperand(2); in transformCallThroughTrampoline()
|