HomeSort by relevance Sort by last modified time
    Searched refs:CE (Results 226 - 250 of 337) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 453 for (auto CI = CS.data_operands_begin(), CE = CS.data_operands_end();
454 CI != CE; ++CI, ++ArgNo) {
ScalarEvolutionExpander.cpp 139 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
140 if ((CE->getOpcode() == Instruction::PtrToInt ||
141 CE->getOpcode() == Instruction::IntToPtr) &&
142 SE.getTypeSizeInBits(CE->getType()) ==
143 SE.getTypeSizeInBits(CE->getOperand(0)->getType()))
144 return CE->getOperand(0);
    [all...]
  /external/llvm/lib/MC/
MCELFStreamer.cpp 634 raw_pwrite_stream &OS, MCCodeEmitter *CE,
636 MCELFStreamer *S = new MCELFStreamer(Context, MAB, OS, CE);
  /external/swiftshader/third_party/LLVM/lib/MC/
MCExpr.cpp 271 if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(this)) {
272 Res = CE->getValue();
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 73 std::string getSourceLiteralString(const clang::Expr *CE);
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 209 auto CE = BD->capture_end();
221 if (CI != CE) {
702 for (CFGElement CE : llvm::reverse(*SrcBlock)) {
703 if (Optional<CFGStmt> CS = CE.getAs<CFGStmt>()) {
    [all...]
CheckerManager.cpp 589 const CallExpr *CE = cast<CallExpr>(Call.getOriginExpr());
603 const ProgramPoint &L = ProgramPoint::getProgramPoint(CE, K,
610 evaluated = (*EI)(CE, C);
BugReporterVisitors.cpp 344 Optional<CallEnter> CE = N->getLocationAs<CallEnter>();
345 if (!CE)
348 if (CE->getCalleeContext() != StackFrame)
508 if (Optional<CallEnter> CE = Succ->getLocationAs<CallEnter>()) {
515 CallEventRef<> Call = CallMgr.getCaller(CE->getCalleeContext(),
    [all...]
  /external/clang/lib/CodeGen/
CGVTables.cpp 419 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(C)) {
420 assert(CE->getOpcode() == llvm::Instruction::BitCast);
421 Entry = cast<llvm::GlobalValue>(CE->getOperand(0));
    [all...]
CGExprConstant.cpp 636 llvm::Constant *VisitChooseExpr(ChooseExpr *CE) {
637 return Visit(CE->getChosenSubExpr());
    [all...]
CGCXXABI.h 416 const CXXMemberCallExpr *CE) = 0;
  /external/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 585 for (unsigned CI = 0, CE = Size; CI < CE; CI += 64) {
586 unsigned Len = std::min<unsigned>(CE - CI, 64);
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 375 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
376 if (CE->getOpcode() == Instruction::IntToPtr)
377 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(0))) {
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 328 if (CallExpr *CE = dyn_cast<CallExpr>(S)) {
329 children = CE->getRawSubExprs();
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 244 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
252 if (const Decl *FD = CE->getCalleeDecl()) {
298 else if (const CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(E)) {
299 TypeSourceInfo *TI = CE->getTypeInfoAsWritten();
    [all...]
AnalysisBasedWarnings.cpp 174 const CallExpr *CE = dyn_cast<CallExpr>(B.getAs<CFGStmt>()->getStmt());
175 if (!CE || !CE->getCalleeDecl() ||
176 CE->getCalleeDecl()->getCanonicalDecl() != FD)
181 dyn_cast<DeclRefExpr>(CE->getCallee()->IgnoreParenImpCasts())) {
190 const CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(CE);
    [all...]
  /external/llvm/lib/IR/
Constants.cpp 332 const ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
333 if (!CE)
338 if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) {
345 switch (CE->getOpcode()) {
355 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
428 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
429 if (CE->getOpcode() == Instruction::Sub) {
430 ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
431 ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1))
    [all...]
Verifier.cpp 454 void visitConstantExpr(const ConstantExpr *CE);
644 if (const auto *CE = dyn_cast<ConstantExpr>(&C))
645 visitConstantExprsRecursively(CE);
    [all...]
  /external/spirv-llvm/lib/SPIRV/
SPIRVReader.cpp     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 377 const CallEvent &CE, ExprEngine &Eng);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 95 void HandleCallEnter(const CallEnter &CE, ExplodedNode *Pred);
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp     [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]
  /external/llvm/include/llvm/MC/
MCStreamer.h 820 /// \param CE - If given, a code emitter to use to show the instruction
821 /// encoding inline with the assembly. This method takes ownership of \p CE.
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyCFG.cpp 333 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
334 if (CE->getOpcode() == Instruction::IntToPtr)
335 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(0))) {
    [all...]

Completed in 988 milliseconds

1 2 3 4 5 6 7 8 91011>>