/external/clang/lib/CodeGen/ |
CGDecl.cpp | 414 llvm::Value *F = CGF.CGM.getIntrinsic(llvm::Intrinsic::stackrestore); [all...] |
CGDeclCXX.cpp | 116 // Don't emit the intrinsic if we're not optimizing. 120 // Grab the llvm.invariant.start intrinsic. 121 llvm::Intrinsic::ID InvStartID = llvm::Intrinsic::invariant_start;
|
CodeGenFunction.cpp | 302 CGM.getIntrinsic(llvm::Intrinsic::returnaddress), 728 Builder.CreateCall(CGM.getIntrinsic(llvm::Intrinsic::trap)); [all...] |
/external/eigen/blas/ |
drotmg.f | 56 * .. Intrinsic Functions .. 57 INTRINSIC DABS
|
srotmg.f | 58 * .. Intrinsic Functions .. 59 INTRINSIC ABS
|
chbmv.f | 153 * .. Intrinsic Functions .. 154 INTRINSIC CONJG,MAX,MIN,REAL
|
chpmv.f | 119 * .. Intrinsic Functions .. 120 INTRINSIC CONJG,REAL
|
chpr.f | 105 * .. Intrinsic Functions .. 106 INTRINSIC CONJG,REAL
|
chpr2.f | 116 * .. Intrinsic Functions .. 117 INTRINSIC CONJG,REAL
|
ctbmv.f | 157 * .. Intrinsic Functions .. 158 INTRINSIC CONJG,MAX,MIN
|
ctpmv.f | 117 * .. Intrinsic Functions .. 118 INTRINSIC CONJG
|
/external/llvm/lib/Analysis/IPA/ |
GlobalsModRef.cpp | 405 // Can't say anything useful unless it's an intrinsic - they don't 463 } else if (IntrinsicInst *Intrinsic = dyn_cast<IntrinsicInst>(&*II)) { 464 // The callgraph doesn't include intrinsic calls. 465 Function *Callee = Intrinsic->getCalledFunction();
|
InlineCost.cpp | 723 // Next check if it is an intrinsic we know about. 730 case Intrinsic::memset: 731 case Intrinsic::memcpy: 732 case Intrinsic::memmove: [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.h | 531 const char *visitIntrinsicCall(const CallInst &I, unsigned Intrinsic); 532 void visitTargetIntrinsic(const CallInst &I, unsigned Intrinsic);
|
/external/llvm/lib/Transforms/Instrumentation/ |
ThreadSanitizer.cpp | 385 Intrinsic::getDeclaration(F.getParent(), Intrinsic::returnaddress), 462 // If a memset intrinsic gets inlined by the code gen, we will miss races on it. 463 // So, we either need to ensure the intrinsic is not inlined, or instrument it.
|
AddressSanitizer.cpp | 461 /// \brief Collect lifetime intrinsic calls to check for use-after-scope 465 Intrinsic::ID ID = II.getIntrinsicID(); 466 if (ID != Intrinsic::lifetime_start && 467 ID != Intrinsic::lifetime_end) 469 // Found lifetime intrinsic, add ASan instrumentation if necessary. 482 bool DoPoison = (ID == Intrinsic::lifetime_end); [all...] |
/external/llvm/lib/Transforms/Utils/ |
IntegerDivision.cpp | 142 Function *CTLZi32 = Intrinsic::getDeclaration(F->getParent(), Intrinsic::ctlz,
|
Local.cpp | 296 if (II->getIntrinsicID() == Intrinsic::stacksave) 300 if (II->getIntrinsicID() == Intrinsic::lifetime_start || 301 II->getIntrinsicID() == Intrinsic::lifetime_end) [all...] |
/external/llvm/lib/Target/XCore/ |
XCoreISelDAGToDAG.cpp | 217 if (IntNo != Intrinsic::xcore_checkevent) 222 // If the chain out of the checkevent intrinsic is an operand of the 225 // the checkevent intrinsic instead. 236 // the operand to the checkevent intrinsic.
|
/external/llvm/lib/Analysis/ |
InstructionSimplify.cpp | [all...] |
/external/llvm/lib/CodeGen/ |
ShadowStackGC.cpp | 52 /// intrinsic call and its corresponding alloca. 334 if (F->getIntrinsicID() == Intrinsic::gcroot) { 442 // Delete the original allocas (which are no longer used) and the intrinsic
|
/external/llvm/lib/Target/ARM/ |
ARMISelLowering.h | 395 unsigned Intrinsic) const;
|
/external/llvm/lib/Transforms/Scalar/ |
SROA.cpp | 523 if (II.getIntrinsicID() == Intrinsic::lifetime_start || 524 II.getIntrinsicID() == Intrinsic::lifetime_end) { [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSPrimitiveValue.cpp | 281 case Intrinsic: 319 case Intrinsic: [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderDeprecatedFlexibleBox.cpp | 371 // our box's intrinsic height. 627 // a height change, we revert our height back to the intrinsic height before returning. [all...] |