| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerTracePC.cpp | 135 return (PC - 3) & (~1); in GetPreviousInstructionPc() 137 return PC - 8; in GetPreviousInstructionPc() 139 return PC - 2; in GetPreviousInstructionPc() 141 return PC - 1; in GetPreviousInstructionPc() 143 return PC - 4; in GetPreviousInstructionPc() 151 return PC + 8; in GetNextInstructionPc() 154 return PC + 4; in GetNextInstructionPc() 156 return PC + 1; in GetNextInstructionPc() 314 for (auto PC : UncoveredPCs) in PrintCoverage() local 319 for (auto PC : CoveredPCs) in PrintCoverage() local [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
| H A D | M68k.def | 9 ELF_RELOC(R_68K_PC32, 4) /* PC relative 32 bit */ 10 ELF_RELOC(R_68K_PC16, 5) /* PC relative 16 bit */ 11 ELF_RELOC(R_68K_PC8, 6) /* PC relative 8 bit */ 12 ELF_RELOC(R_68K_GOTPCREL32, 7) /* 32 bit PC relative GOT entry */ 13 ELF_RELOC(R_68K_GOTPCREL16, 8) /* 16 bit PC relative GOT entry */ 14 ELF_RELOC(R_68K_GOTPCREL8, 9) /* 8 bit PC relative GOT entry */ 18 ELF_RELOC(R_68K_PLT32, 13) /* 32 bit PC relative PLT address */ 19 ELF_RELOC(R_68K_PLT16, 14) /* 16 bit PC relative PLT address */ 20 ELF_RELOC(R_68K_PLT8, 15) /* 8 bit PC relative PLT address */
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | EHFrameSupport.cpp | 51 ParseContext PC(G); in operator ()() local 59 auto &CurSym = PC.AddrToSym[Sym->getAddress()]; in operator ()() 82 if (auto Err = processBlock(PC, *B)) in operator ()() 150 PC.G.getEndianness()); in processBlock() 188 PC.G.getEndianness()); in processCIE() 302 PC.G.getEndianness()); in processFDE() 586 auto TargetSym = getOrCreateSymbol(PC, Target); in getOrCreateEncodedPointerEdge() 606 auto CanonicalSymI = PC.AddrToSym.find(Addr); in getOrCreateSymbol() 607 if (CanonicalSymI != PC.AddrToSym.end()) in getOrCreateSymbol() 611 auto *B = PC.AddrToBlock.getBlockCovering(Addr); in getOrCreateSymbol() [all …]
|
| H A D | EHFrameSupportImpl.h | 87 Error processBlock(ParseContext &PC, Block &B); 88 Error processCIE(ParseContext &PC, Block &B, size_t CIEDeltaFieldOffset, 90 Error processFDE(ParseContext &PC, Block &B, size_t CIEDeltaFieldOffset, 101 ParseContext &PC, const BlockEdgesInfo &BlockEdges, 105 Expected<Symbol &> getOrCreateSymbol(ParseContext &PC,
|
| /freebsd-14.2/contrib/arm-optimized-routines/math/ |
| H A D | erf.c | 19 #define PC __erf_data.erfc_poly_C macro 116 double r1 = fma (a, PC[1], PC[0]); in erf() 117 double r2 = fma (a, PC[3], PC[2]); in erf() 118 double r3 = fma (a, PC[5], PC[4]); in erf() 119 double r4 = fma (a, PC[7], PC[6]); in erf() 120 double r5 = fma (a, PC[9], PC[8]); in erf() 121 double r6 = fma (a, PC[11], PC[10]); in erf() 122 double r7 = fma (a, PC[13], PC[12]); in erf() 123 double r8 = fma (a, PC[15], PC[14]); in erf()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Source.cpp | 41 const Expr *SourceMapper::getExpr(const Function *F, CodePtr PC) const { in getExpr() 42 if (const Expr *E = getSource(F, PC).asExpr()) in getExpr() 47 SourceLocation SourceMapper::getLocation(const Function *F, CodePtr PC) const { in getLocation() 48 return getSource(F, PC).getLoc(); in getLocation() 51 SourceRange SourceMapper::getRange(const Function *F, CodePtr PC) const { in getRange() 52 return getSource(F, PC).getRange(); in getRange()
|
| H A D | Function.cpp | 36 SourceInfo Function::getSource(CodePtr PC) const { in getSource() 37 assert(PC >= getCodeBegin() && "PC does not belong to this function"); in getSource() 38 assert(PC <= getCodeEnd() && "PC Does not belong to this function"); in getSource() 40 unsigned Offset = PC - getCodeBegin(); in getSource()
|
| H A D | InterpFrame.cpp | 228 SourceInfo InterpFrame::getSource(CodePtr PC) const { in getSource() 234 return S.getSource(Func, PC); in getSource() 237 const Expr *InterpFrame::getExpr(CodePtr PC) const { in getExpr() 238 return S.getExpr(Func, PC); in getExpr() 241 SourceLocation InterpFrame::getLocation(CodePtr PC) const { in getLocation() 242 return S.getLocation(Func, PC); in getLocation() 245 SourceRange InterpFrame::getRange(CodePtr PC) const { in getRange() 249 return S.getRange(Func, PC); in getRange()
|
| H A D | Disasm.cpp | 56 for (CodePtr Start = getCodeBegin(), PC = Start; PC != getCodeEnd();) { in dump() local 57 size_t Addr = PC - Start; in dump() 58 auto Op = PC.read<Opcode>(); in dump()
|
| H A D | Source.h | 99 virtual SourceInfo getSource(const Function *F, CodePtr PC) const = 0; 102 const Expr *getExpr(const Function *F, CodePtr PC) const; 104 SourceLocation getLocation(const Function *F, CodePtr PC) const; 105 SourceRange getRange(const Function *F, CodePtr PC) const;
|
| H A D | InterpFrame.h | 118 virtual SourceInfo getSource(CodePtr PC) const; 119 const Expr *getExpr(CodePtr PC) const; 120 SourceLocation getLocation(CodePtr PC) const; 121 SourceRange getRange(CodePtr PC) const;
|
| H A D | InterpState.h | 91 SourceInfo getSource(const Function *F, CodePtr PC) const override { in getSource() argument 92 return M ? M->getSource(F, PC) : F->getSource(PC); in getSource()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMFeatures.h | 79 return Instr->getOperand(2).getReg() != ARM::PC; in isV8EligibleForIT() 84 return Instr->getOperand(0).getReg() != ARM::PC; in isV8EligibleForIT() 86 return Instr->getOperand(0).getReg() != ARM::PC && in isV8EligibleForIT() 87 Instr->getOperand(2).getReg() != ARM::PC; in isV8EligibleForIT() 90 return Instr->getOperand(0).getReg() != ARM::PC && in isV8EligibleForIT() 91 Instr->getOperand(1).getReg() != ARM::PC; in isV8EligibleForIT()
|
| /freebsd-14.2/sys/arm/arm/ |
| H A D | db_trace.c | 90 ~((1 << SP) | (1 << FP) | (1 << LR) | (1 << PC)); in db_stack_trace_cmd() 119 if (state->registers[PC] < VM_MIN_KERNEL_ADDRESS) { in db_stack_trace_cmd() 148 state.registers[PC] = ctx->pcb_regs.sf_pc; in db_trace_thread() 168 state.registers[PC] = (uint32_t)db_trace_self; in db_trace_self()
|
| H A D | stack_machdep.c | 45 if (stack_put(st, state->registers[PC]) == -1) in stack_capture() 62 state.registers[PC] = (uint32_t)stack_save; in stack_save() 82 state.registers[PC] = td->td_pcb->pcb_regs.sf_pc; in stack_save_td()
|
| H A D | unwind.c | 509 state->registers[PC]); in unwind_exec_insn() 522 state->registers[PC] = 0; in unwind_tab() 548 if (state->registers[PC] == 0) { in unwind_tab() 549 state->registers[PC] = state->registers[LR]; in unwind_tab() 554 if (state->start_pc != state->registers[PC]) in unwind_tab() 555 state->update_mask |= 1 << PC; in unwind_tab() 577 state->start_pc = state->registers[PC]; in unwind_stack_one()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64TargetObjectFile.cpp | 55 const MCExpr *PC = MCSymbolRefExpr::create(PCSym, getContext()); in getTTypeGlobalReference() local 56 return MCBinaryExpr::createSub(Res, PC, getContext()); in getTTypeGlobalReference() 80 const MCExpr *PC = MCSymbolRefExpr::create(PCSym, getContext()); in getIndirectSymViaGOTPCRel() local 81 return MCBinaryExpr::createSub(Res, PC, getContext()); in getIndirectSymViaGOTPCRel()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ProgramPoint.cpp | 102 ImplicitCallPoint PC = castAs<ImplicitCallPoint>(); in printJson() local 104 << PC.getDecl()->getAsFunction()->getQualifiedNameAsString() in printJson() 106 printSourceLocationAsJson(Out, PC.getLocation(), SM); in printJson() 111 ImplicitCallPoint PC = castAs<ImplicitCallPoint>(); in printJson() local 113 << PC.getDecl()->getAsFunction()->getQualifiedNameAsString() in printJson() 115 printSourceLocationAsJson(Out, PC.getLocation(), SM); in printJson()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCInstrDesc.cpp | 24 unsigned PC = RI.getProgramCounter(); in mayAffectControlFlow() local 25 if (PC == 0) in mayAffectControlFlow() 27 if (hasDefOfPhysReg(MI, PC, RI)) in mayAffectControlFlow()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | CommentParser.cpp | 270 S.actOnParamCommandDirectionArg(PC, in parseParamCommandArgs() 276 S.actOnParamCommandParamNameArg(PC, in parseParamCommandArgs() 310 ParamCommandComment *PC = nullptr; in parseBlockCommand() local 338 if (PC) { in parseBlockCommand() 340 return PC; in parseBlockCommand() 350 if (PC || TPC || Info->NumArgs > 0) { in parseBlockCommand() 355 if (PC) in parseBlockCommand() 356 parseParamCommandArgs(PC, Retokenizer); in parseBlockCommand() 387 if (PC) { in parseBlockCommand() 388 S.actOnParamCommandFinish(PC, Paragraph); in parseBlockCommand() [all …]
|
| /freebsd-14.2/sys/amd64/include/ |
| H A D | pmc_mdep.h | 106 #define PMC_IN_TRAP_HANDLER(PC) \ argument 107 ((PC) >= (uintptr_t) start_exceptions && \ 108 (PC) < (uintptr_t) end_exceptions)
|
| /freebsd-14.2/sys/i386/include/ |
| H A D | pmc_mdep.h | 126 #define PMC_IN_TRAP_HANDLER(PC) \ argument 127 ((PC) >= (uintptr_t)start_exceptions + setidt_disp && \ 128 (PC) < (uintptr_t) end_exceptions + setidt_disp)
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | FlattenCFG.cpp | 175 Value *PC = PBI->getCondition(); in FlattenParallelAndOr() local 176 if (!PC || !PC->hasOneUse()) in FlattenParallelAndOr() 282 Value *PC = PBI->getCondition(); in FlattenParallelAndOr() local 296 NC = Builder.CreateOr(PC, CC); in FlattenParallelAndOr() 299 NC = Builder.CreateAnd(PC, CC); in FlattenParallelAndOr() 302 PC = NC; in FlattenParallelAndOr()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARCBranchFinalize.cpp | 152 unsigned PC = 0; in runOnMachineFunction() local 155 BlockToPCMap.insert(std::make_pair(&MBB, PC)); in runOnMachineFunction() 165 BranchToPCList.emplace_back(&MI, PC); in runOnMachineFunction() 167 PC += Size; in runOnMachineFunction()
|
| /freebsd-14.2/sys/contrib/device-tree/src/powerpc/fsl/ |
| H A D | p1020rdb-pc_camp_core0.dts | 3 * P1020 RDB-PC Core0 Device Tree Source in CAMP mode. 18 model = "fsl,P1020RDB-PC"; 19 compatible = "fsl,P1020RDB-PC";
|