Searched refs:UO (Results 1 - 25 of 53) sorted by relevance

123

/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DInvalidatedIteratorChecker.cpp43 void checkPreStmt(const UnaryOperator *UO, CheckerContext &C) const;
75 void InvalidatedIteratorChecker::checkPreStmt(const UnaryOperator *UO, argument
77 if (isa<CXXThisExpr>(UO->getSubExpr()))
81 UnaryOperatorKind OK = UO->getOpcode();
82 SVal SubVal = State->getSVal(UO->getSubExpr(), C.getLocationContext());
H A DIteratorRangeChecker.cpp52 void checkPreStmt(const UnaryOperator *UO, CheckerContext &C) const;
144 void IteratorRangeChecker::checkPreStmt(const UnaryOperator *UO, argument
146 if (isa<CXXThisExpr>(UO->getSubExpr()))
150 UnaryOperatorKind OK = UO->getOpcode();
151 SVal SubVal = State->getSVal(UO->getSubExpr(), C.getLocationContext());
H A DIteratorModeling.cpp151 void checkPostStmt(const UnaryOperator *UO, CheckerContext &C) const;
251 void IteratorModeling::checkPostStmt(const UnaryOperator *UO, argument
253 UnaryOperatorKind OK = UO->getOpcode();
258 handlePtrIncrOrDecr(C, UO->getSubExpr(),
/netbsd-current/external/gpl3/gdb.old/dist/sim/mips/
H A Dcp1.h66 #define UO 5 /* E: Unimplemented Operation (CAUSE field only) */ macro
H A Dcp1.c347 || (cause & (1 << UO)))
454 cause |= (1 << UO);
459 FCSR |= ((cause & ~(1 << UO)) << fcsr_FLAGS_shift);
/netbsd-current/external/gpl3/gdb/dist/sim/mips/
H A Dcp1.h72 #define UO 5 /* E: Unimplemented Operation (CAUSE field only) */ macro
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DIgnoreExpr.h153 if (auto *UO = dyn_cast<UnaryOperator>(E)) {
154 if (UO->getOpcode() == UO_Extension)
155 return UO->getSubExpr();
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaFixItUtils.cpp105 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(Expr)) {
106 if (UO->getOpcode() == UO_AddrOf) {
139 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(Expr)) {
140 if (UO->getOpcode() == UO_Deref) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/Analysis/
H A DReachableCode.cpp250 const UnaryOperator *UO = cast<UnaryOperator>(S); local
251 if (UO->getOpcode() != UO_LNot && UO->getOpcode() != UO_Minus)
256 isConfigurationValue(UO->getSubExpr(), PP, SilenceableCondVal,
263 UO->getSubExpr()->IgnoreCasts()->getSourceRange())
264 *SilenceableCondVal = UO->getSourceRange();
560 const UnaryOperator *UO = cast<UnaryOperator>(S); local
561 R1 = UO->getSubExpr()->getSourceRange();
562 return UO->getOperatorLoc();
H A DThreadSafetyCommon.cpp173 else if (const auto *UO = dyn_cast<UnaryOperator>(AttrExp)) {
174 if (UO->getOpcode() == UO_LNot) {
176 AttrExp = UO->getSubExpr();
429 til::SExpr *SExprBuilder::translateUnaryOperator(const UnaryOperator *UO, argument
431 switch (UO->getOpcode()) {
436 return new (Arena) til::Undefined(UO);
441 if (const auto *DRE = dyn_cast<DeclRefExpr>(UO->getSubExpr())) {
451 return translate(UO->getSubExpr(), Ctx);
456 return translate(UO->getSubExpr(), Ctx);
460 til::UnaryOp(til::UOP_Minus, translate(UO
[all...]
H A DUninitializedValues.cpp289 void VisitUnaryOperator(UnaryOperator *UO);
392 void ClassifyRefs::VisitUnaryOperator(UnaryOperator *UO) { argument
395 if (UO->isIncrementDecrementOp())
396 classify(UO->getSubExpr(), Use);
438 const auto *UO = dyn_cast<UnaryOperator>(Ex); local
439 if (UO && UO->getOpcode() == UO_AddrOf)
440 Ex = UO->getSubExpr();
H A DLiveVariables.cpp170 void VisitUnaryOperator(UnaryOperator *UO);
430 void TransferFunctions::VisitUnaryOperator(UnaryOperator *UO) { argument
437 switch (UO->getOpcode()) {
447 if (auto *DR = dyn_cast<DeclRefExpr>(UO->getSubExpr()->IgnoreParens())) {
H A DCalledOnceCheck.cpp316 const DeclRefExpr *VisitUnaryOperator(const UnaryOperator *UO) { argument
317 switch (UO->getOpcode()) {
327 return Visit(UO->getSubExpr());
H A DThreadSafety.cpp1616 void VisitUnaryOperator(const UnaryOperator *UO);
1734 if (const auto *UO = dyn_cast<UnaryOperator>(Exp)) {
1736 if (UO->getOpcode() == UO_Deref)
1737 checkPtAccess(UO->getSubExpr(), AK, POK);
1984 void BuildLockset::VisitUnaryOperator(const UnaryOperator *UO) {
1985 switch (UO->getOpcode()) {
1990 checkAccess(UO->getSubExpr(), AK_Written);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-lipo/
H A Dllvm-lipo.cpp363 if (auto UO =
367 UO->getObjectForArch(Arch);
385 if (auto UO = dyn_cast<MachOUniversalBinary>(Binary)) {
386 for (const auto &O : UO->objects()) {
480 auto *UO = cast<MachOUniversalBinary>(InputBinaries.front().getBinary()); local
482 UO->getMachOObjectForArch(ArchType);
484 UO->getIRObjectForArch(ArchType, LLVMCtx);
485 Expected<std::unique_ptr<Archive>> Ar = UO->getArchiveForArch(ArchType);
487 reportError("fat input file " + UO->getFileName() +
503 sys::fs::can_execute(UO
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-size/
H A Dllvm-size.cpp606 Expected<std::unique_ptr<ObjectFile>> UO = I->getAsObjectFile(); local
607 if (UO) {
608 if (ObjectFile *o = dyn_cast<ObjectFile>(&*UO.get())) {
626 UO.takeError())) {
697 Expected<std::unique_ptr<ObjectFile>> UO = I->getAsObjectFile(); local
698 if (UO) {
699 if (ObjectFile *o = dyn_cast<ObjectFile>(&*UO.get())) {
716 } else if (auto E = isNotObjectErrorInvalidFileType(UO.takeError())) {
772 Expected<std::unique_ptr<ObjectFile>> UO = I->getAsObjectFile(); local
773 if (UO) {
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXLowerArgs.cpp338 Value *UO = getUnderlyingObject(LI->getPointerOperand()); local
339 if (Argument *Arg = dyn_cast<Argument>(UO)) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMIRCanonicalizerPass.cpp219 for (auto &UO : MRI->use_nodbg_operands(MO.getReg())) {
220 MachineInstr *UseInst = UO.getParent();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp135 // UnarySpliiter(UO)(Builder, X, Name) uses Builder to create
136 // a unary operator like UO called Name with operand X.
138 UnarySplitter(UnaryOperator &uo) : UO(uo) {}
141 return Builder.CreateUnOp(UO.getOpcode(), Op, Name);
144 UnaryOperator &UO; member in struct:__anon3020::UnarySplitter
196 bool visitUnaryOperator(UnaryOperator &UO);
622 bool ScalarizerVisitor::visitUnaryOperator(UnaryOperator &UO) { argument
623 return splitUnary(UO, UnarySplitter(UO));
/netbsd-current/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexBody.cpp79 } else if (auto UO = dyn_cast<UnaryOperator>(Parent)) {
80 if (UO->isIncrementDecrementOp()) {
83 } else if (UO->getOpcode() == UO_AddrOf) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp1980 if (auto *UO = dyn_cast<UnaryOperator>(Ex)) {
1981 if (UO->getOpcode() == UO_LNot)
1982 return peelOffOuterExpr(UO->getSubExpr(), N);
1992 if (UO->getOpcode() == UO_AddrOf && UO->getSubExpr()->isLValue())
1993 if (const Expr *DerefEx = bugreporter::getDerefExpr(UO->getSubExpr()))
2417 const auto *UO = cast<UnaryOperator>(CondTmp); local
2418 if (UO->getOpcode() == UO_LNot) {
2420 CondTmp = UO->getSubExpr();
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp143 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
144 switch (UO->getOpcode()) {
146 return UO->getSubExpr()->isKnownToHaveBooleanValue(Semantic);
1423 } else if (UnaryOperator *UO = dyn_cast<UnaryOperator>(CEE)) {
1424 if (UO->getOpcode() == UO_Deref || UO->getOpcode() == UO_AddrOf ||
1425 UO->getOpcode() == UO_Plus) {
1426 CEE = UO->getSubExpr()->IgnoreParenImpCasts();
2360 if (auto *UO = dyn_cast<UnaryOperator>(E))
2361 if (UO
2428 const UnaryOperator *UO = cast<UnaryOperator>(this); local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-libtool-darwin/
H A Dllvm-libtool-darwin.cpp358 auto *UO = BinaryOrErr->get();
359 for (const MachOUniversalBinary::ObjectForArch &O : UO->objects()) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonEarlyIfConv.cpp991 MachineOperand &UO = PN->getOperand(1); local
992 Register UseR = UO.getReg(), UseSR = UO.getSubReg();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DMemorySSA.cpp2153 MemoryAccess *UO = getDefiningAccess(); local
2163 printID(UO);
2198 MemoryAccess *UO = getDefiningAccess(); local
2200 if (UO && UO->getID())
2201 OS << UO->getID();

Completed in 340 milliseconds

123