| /freebsd-11-stable/crypto/openssl/crypto/ui/ |
| HD | ui.h | 85 UI *UI_new(void); 86 UI *UI_new_method(const UI_METHOD *method); 87 void UI_free(UI *ui); 132 int UI_add_input_string(UI *ui, const char *prompt, int flags, 134 int UI_dup_input_string(UI *ui, const char *prompt, int flags, 136 int UI_add_verify_string(UI *ui, const char *prompt, int flags, 139 int UI_dup_verify_string(UI *ui, const char *prompt, int flags, 142 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc, 145 int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc, 148 int UI_add_info_string(UI *ui, const char *text); [all …]
|
| HD | ui_lib.c | 72 UI *UI_new(void) in UI_new() 77 UI *UI_new_method(const UI_METHOD *method) in UI_new_method() 79 UI *ret; in UI_new_method() 81 ret = (UI *)OPENSSL_malloc(sizeof(UI)); in UI_new_method() 115 void UI_free(UI *ui) in UI_free() 124 static int allocate_string_stack(UI *ui) in allocate_string_stack() 135 static UI_STRING *general_allocate_prompt(UI *ui, const char *prompt, in general_allocate_prompt() 157 static int general_allocate_string(UI *ui, const char *prompt, in general_allocate_string() 182 static int general_allocate_boolean(UI *ui, in general_allocate_boolean() 232 int UI_add_input_string(UI *ui, const char *prompt, int flags, in UI_add_input_string() [all …]
|
| HD | ui_locl.h | 81 int (*ui_open_session) (UI *ui); 82 int (*ui_write_string) (UI *ui, UI_STRING *uis); 87 int (*ui_flush) (UI *ui); 88 int (*ui_read_string) (UI *ui, UI_STRING *uis); 89 int (*ui_close_session) (UI *ui); 97 char *(*ui_construct_prompt) (UI *ui, const char *object_desc,
|
| HD | ui_openssl.c | 315 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl); 317 static int read_string(UI *ui, UI_STRING *uis); 318 static int write_string(UI *ui, UI_STRING *uis); 320 static int open_console(UI *ui); 321 static int echo_console(UI *ui); 322 static int noecho_console(UI *ui); 323 static int close_console(UI *ui); 345 static int write_string(UI *ui, UI_STRING *uis) in write_string() 359 static int read_string(UI *ui, UI_STRING *uis) in read_string() 413 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) in read_string_inner() [all …]
|
| /freebsd-11-stable/crypto/openssl/doc/crypto/ |
| HD | ui.pod | 17 typedef struct ui_st UI; 20 UI *UI_new(void); 21 UI *UI_new_method(const UI_METHOD *method); 22 void UI_free(UI *ui); 24 int UI_add_input_string(UI *ui, const char *prompt, int flags, 26 int UI_dup_input_string(UI *ui, const char *prompt, int flags, 28 int UI_add_verify_string(UI *ui, const char *prompt, int flags, 30 int UI_dup_verify_string(UI *ui, const char *prompt, int flags, 32 int UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc, 35 int UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc, [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| HD | Win64EHDumper.cpp | 45 static uint64_t getOffsetOfLSDA(const UnwindInfo& UI) { in getOffsetOfLSDA() argument 46 return static_cast<const char*>(UI.getLanguageSpecificData()) in getOffsetOfLSDA() 47 - reinterpret_cast<const char*>(&UI); in getOffsetOfLSDA() 219 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) { in printUnwindCode() argument 241 if (UI.getFrameRegister() == 0) in printUnwindCode() 244 OS << " reg=" << getUnwindRegisterName(UI.getFrameRegister()) in printUnwindCode() 245 << format(", offset=0x%X", UI.getFrameOffset() * 16); in printUnwindCode() 277 off_t Offset, const UnwindInfo &UI) { in printUnwindInfo() argument 279 SW.printNumber("Version", UI.getVersion()); in printUnwindInfo() 280 SW.printFlags("Flags", UI.getFlags(), makeArrayRef(UnwindFlags)); in printUnwindInfo() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| HD | SpeculateAroundPHIs.cpp | 58 auto *UI = cast<Instruction>(U.getUser()); in isSafeToSpeculatePHIUsers() local 65 if (UI->getParent() != PhiBB) { in isSafeToSpeculatePHIUsers() 66 LLVM_DEBUG(dbgs() << " Unsafe: use in a different BB: " << *UI << "\n"); in isSafeToSpeculatePHIUsers() 70 if (auto CS = ImmutableCallSite(UI)) { in isSafeToSpeculatePHIUsers() 73 "callsite cannot de duplicated: " << *UI << '\n'); in isSafeToSpeculatePHIUsers() 84 if (mayBeMemoryDependent(*UI)) { in isSafeToSpeculatePHIUsers() 85 LLVM_DEBUG(dbgs() << " Unsafe: can't speculate use: " << *UI << "\n"); in isSafeToSpeculatePHIUsers() 92 Visited.insert(UI); in isSafeToSpeculatePHIUsers() 93 DFSStack.push_back({UI, UI->value_op_begin()}); in isSafeToSpeculatePHIUsers() 96 std::tie(UI, OpIt) = DFSStack.pop_back_val(); in isSafeToSpeculatePHIUsers() [all …]
|
| HD | Reg2Mem.cpp | 53 const Instruction *UI = cast<Instruction>(U); in valueEscapes() local 54 if (UI->getParent() != BB || isa<PHINode>(UI)) in valueEscapes()
|
| HD | LICM.cpp | 1316 const Instruction *UI = cast<Instruction>(U); in isFreeInLoop() local 1317 if (CurLoop->contains(UI) && in isFreeInLoop() 1318 (BB != UI->getParent() || in isFreeInLoop() 1319 (!isa<StoreInst>(UI) && !isa<LoadInst>(UI)))) in isFreeInLoop() 1339 const Instruction *UI = cast<Instruction>(U); in isNotUsedOrFreeInLoop() local 1340 if (const PHINode *PN = dyn_cast<PHINode>(UI)) { in isNotUsedOrFreeInLoop() 1354 if (CurLoop->contains(UI)) { in isNotUsedOrFreeInLoop() 1592 for (Value::user_iterator UI = I.user_begin(), UE = I.user_end(); UI != UE;) { in sink() local 1593 auto *User = cast<Instruction>(*UI); in sink() 1594 Use &U = UI.getUse(); in sink() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| HD | HexagonOptimizeSZextends.cpp | 77 for (auto UI = Arg.use_begin(); UI != Arg.use_end();) { in runOnFunction() local 78 if (isa<SExtInst>(*UI)) { in runOnFunction() 79 Instruction* Use = cast<Instruction>(*UI); in runOnFunction() 83 ++UI; in runOnFunction() 89 ++UI; in runOnFunction() 131 for (auto UI = Ashr->user_begin(), UE = Ashr->user_end(); in runOnFunction() local 132 UI != UE; ++UI) { in runOnFunction() 133 const Use &TheUse = UI.getUse(); in runOnFunction()
|
| HD | HexagonVectorLoopCarriedReuse.cpp | 468 for (auto UI = PN->use_begin(), E = PN->use_end(); UI != E; ++UI) { in findValueToReuse() local 469 Use &U = *UI; in findValueToReuse() 497 for (auto UI = BEInst->use_begin(), E = BEInst->use_end(); UI != E; in findValueToReuse() local 498 ++UI) { in findValueToReuse() 499 Use &U = *UI; in findValueToReuse()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| HD | COFFDump.cpp | 488 static void printWin64EHUnwindInfo(const Win64EH::UnwindInfo *UI) { in printWin64EHUnwindInfo() argument 492 outs() << " Version: " << static_cast<int>(UI->getVersion()) << "\n"; in printWin64EHUnwindInfo() 493 outs() << " Flags: " << static_cast<int>(UI->getFlags()); in printWin64EHUnwindInfo() 494 if (UI->getFlags()) { in printWin64EHUnwindInfo() 495 if (UI->getFlags() & UNW_ExceptionHandler) in printWin64EHUnwindInfo() 497 if (UI->getFlags() & UNW_TerminateHandler) in printWin64EHUnwindInfo() 499 if (UI->getFlags() & UNW_ChainInfo) in printWin64EHUnwindInfo() 503 outs() << " Size of prolog: " << static_cast<int>(UI->PrologSize) << "\n"; in printWin64EHUnwindInfo() 504 outs() << " Number of Codes: " << static_cast<int>(UI->NumCodes) << "\n"; in printWin64EHUnwindInfo() 506 if (UI->getFrameRegister()) { in printWin64EHUnwindInfo() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| HD | OMPIRBuilder.cpp | 234 auto *UI = Builder.CreateUnreachable(); in CreateCancel() local 236 Instruction *ThenTI = UI, *ElseTI = nullptr; in CreateCancel() 238 SplitBlockAndInsertIfThenElse(IfCondition, UI, &ThenTI, &ElseTI); in CreateCancel() 262 Builder.SetInsertPoint(UI->getParent()); in CreateCancel() 263 UI->eraseFromParent(); in CreateCancel() 358 auto *UI = new UnreachableInst(Builder.getContext(), InsertBB); in CreateParallel() local 360 Instruction *ThenTI = UI, *ElseTI = nullptr; in CreateParallel() 362 SplitBlockAndInsertIfThenElse(IfCondition, UI, &ThenTI, &ElseTI); in CreateParallel() 418 LLVM_DEBUG(dbgs() << "Before body codegen: " << *UI->getFunction() << "\n"); in CreateParallel() 425 LLVM_DEBUG(dbgs() << "After body codegen: " << *UI->getFunction() << "\n"); in CreateParallel() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/ |
| HD | AnalysisWrappers.cpp | 40 Instruction *UI = dyn_cast<Instruction>(U); in runOnModule() local 41 if (!UI) continue; in runOnModule() 43 CallSite CS(cast<Value>(UI)); in runOnModule() 54 errs() << *UI; in runOnModule()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| HD | CallSite.h | 150 bool isCallee(Value::const_user_iterator UI) const { in isCallee() argument 151 return isCallee(&UI.getUse()); in isCallee() 158 bool isArgOperand(Value::const_user_iterator UI) const { in isArgOperand() argument 159 return isArgOperand(&UI.getUse()); in isArgOperand() 169 bool isBundleOperand(Value::const_user_iterator UI) const { in isBundleOperand() argument 170 return isBundleOperand(&UI.getUse()); in isBundleOperand() 184 bool isDataOperand(Value::const_user_iterator UI) const { in isDataOperand() argument 185 return isDataOperand(&UI.getUse()); in isDataOperand() 230 unsigned getDataOperandNo(Value::const_user_iterator UI) const { in getDataOperandNo() argument 231 return getDataOperandNo(&UI.getUse()); in getDataOperandNo() [all …]
|
| HD | Value.h | 167 use_iterator_impl<Use> UI; variable 168 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl() 174 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; } 181 ++UI; 193 return UI->getUser(); 199 return user_iterator_impl<const UserTy>(*UI); 202 Use &getUse() const { return *UI; } in getUse() 307 for (use_iterator UI = use_begin(), E = use_end(); UI != E;) { in replaceUsesWithIf() local 308 Use &U = *UI; in replaceUsesWithIf() 309 ++UI; in replaceUsesWithIf()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| HD | PromoteMemoryToRegister.cpp | 135 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) { in AnalyzeAlloca() local 136 Instruction *User = cast<Instruction>(*UI++); in AnalyzeAlloca() 319 for (auto UI = AI->user_begin(), UE = AI->user_end(); UI != UE;) { in removeLifetimeIntrinsicUsers() local 320 Instruction *I = cast<Instruction>(*UI); in removeLifetimeIntrinsicUsers() 321 ++UI; in removeLifetimeIntrinsicUsers() 358 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) { in rewriteSingleStoreAlloca() local 359 Instruction *UserInst = cast<Instruction>(*UI++); in rewriteSingleStoreAlloca() 468 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) { in promoteSingleBlockAlloca() local 469 LoadInst *LI = dyn_cast<LoadInst>(*UI++); in promoteSingleBlockAlloca()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| HD | SafeStackColoring.cpp | 82 auto *UI = dyn_cast<Instruction>(U); in collectMarkers() local 83 if (!UI) in collectMarkers() 86 if (!readMarker(UI, &IsStart)) in collectMarkers() 90 BBMarkerSet[UI->getParent()][UI] = {AllocaNo, IsStart}; in collectMarkers() 91 Markers.push_back(UI); in collectMarkers()
|
| HD | GlobalMerge.cpp | 311 Use *UI, *UE; in doMerge() local 315 UI = &*CE->use_begin(); in doMerge() 318 UI = &U; in doMerge() 319 UE = UI->getNext(); in doMerge() 326 for (; UI != UE; UI = UI->getNext()) { in doMerge() 327 Instruction *I = dyn_cast<Instruction>(UI->getUser()); in doMerge()
|
| HD | InterleavedAccessPass.cpp | 293 for (auto UI = LI->user_begin(), E = LI->user_end(); UI != E; UI++) { in lowerInterleavedLoad() local 294 auto *Extract = dyn_cast<ExtractElementInst>(*UI); in lowerInterleavedLoad() 299 ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(*UI); in lowerInterleavedLoad()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| HD | NVPTXImageOptimizer.cpp | 151 for (CallInst::use_iterator UI = From->use_begin(), UE = From->use_end(); in replaceWith() local 152 UI != UE; ++UI) { in replaceWith() 153 if (BranchInst *BI = dyn_cast<BranchInst>(*UI)) { in replaceWith()
|
| HD | NVPTXLowerAlloca.cpp | 81 for (Value::use_iterator UI = allocaInst->use_begin(), in runOnFunction() local 83 UI != UE;) { in runOnFunction() 89 const auto &AllocaUse = *UI++; in runOnFunction()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| HD | WebAssemblyLowerEmscriptenEHSjLj.cpp | 609 for (auto UI = I.use_begin(), UE = I.use_end(); UI != UE;) { in rebuildSSA() local 610 Use &U = *UI; in rebuildSSA() 611 ++UI; in rebuildSSA() 714 auto *UI = cast<Instruction>(U); in runOnModule() local 715 SetjmpUsers.insert(UI->getFunction()); in runOnModule() 1084 for (auto UI = SetjmpTable->use_begin(), UE = SetjmpTable->use_end(); in runSjLjOnFunction() local 1085 UI != UE;) { in runSjLjOnFunction() 1087 Use &U = *UI; in runSjLjOnFunction() 1089 ++UI; in runSjLjOnFunction() 1094 for (auto UI = SetjmpTableSize->use_begin(), UE = SetjmpTableSize->use_end(); in runSjLjOnFunction() local [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| HD | LegalizeTypes.cpp | 92 for (SDNode::use_iterator UI = Node.use_begin(), UE = Node.use_end(); in PerformExpensiveChecks() local 93 UI != UE; ++UI) in PerformExpensiveChecks() 94 if (UI.getUse().getResNo() == i) in PerformExpensiveChecks() 95 assert(UI->getNodeId() == NewNode && in PerformExpensiveChecks() 180 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); in PerformExpensiveChecks() local 181 UI != UE; ++UI) in PerformExpensiveChecks() 182 assert(UI->getNodeId() == NewNode && "NewNode used by non-NewNode!"); in PerformExpensiveChecks() 379 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); in run() local 380 UI != E; ++UI) { in run() 381 SDNode *User = *UI; in run()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| HD | IVDescriptors.cpp | 339 Instruction *UI = cast<Instruction>(U); in AddReductionVar() local 342 BasicBlock *Parent = UI->getParent(); in AddReductionVar() 370 if (VisitedInsts.insert(UI).second) { in AddReductionVar() 371 if (isa<PHINode>(UI)) in AddReductionVar() 372 PHIs.push_back(UI); in AddReductionVar() 374 NonPHIs.push_back(UI); in AddReductionVar() 375 } else if (!isa<PHINode>(UI) && in AddReductionVar() 376 ((!isa<FCmpInst>(UI) && !isa<ICmpInst>(UI) && in AddReductionVar() 377 !isa<SelectInst>(UI)) || in AddReductionVar() 378 (!isConditionalRdxPattern(Kind, UI).isRecurrence() && in AddReductionVar() [all …]
|