HomeSort by relevance Sort by last modified time
    Searched defs:IC (Results 1 - 25 of 25) sorted by null

  /external/v8/src/
ic.h 52 /* Utilities for IC stubs. */ \
65 // IC is the base class for LoadIC, StoreIC, CallIC, KeyedLoadIC,
68 class IC {
81 // Alias the inline cache state type to make the IC code more readable.
84 // The IC code is either invoked with no extra frames on the stack
91 // Construct the IC structure with the given number of extra
93 IC(FrameDepth depth, Isolate* isolate);
94 virtual ~IC() {}
102 // Compute the current IC state based on the target stub, receiver and name.
108 // Computes the reloc info for this IC. This is a fairly expensiv
    [all...]
ic.cc 35 #include "ic-inl.h"
43 char IC::TransitionMarkFromState(IC::State state) {
61 void IC::TraceIC(const char* type,
112 IC::IC(FrameDepth depth, Isolate* isolate) : isolate_(isolate) {
114 // To improve the performance of the (much used) IC code, we unfold
116 // ~35% speedup when running DeltaBlue with the '--nouse-ic' flag.
142 Address IC::OriginalCodeAddress() const {
144 // Compute the JavaScript frame for the frame pointer of this IC
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 263 InlineCost IC = getInlineCost(CS);
265 if (IC.isAlways()) {
271 if (IC.isNever()) {
278 if (!IC) {
279 DEBUG(dbgs() << " NOT Inlining: cost=" << IC.getCost()
280 << ", thres=" << (IC.getCostDelta() + IC.getCost())
305 int CandidateCost = IC.getCost() - (InlineConstants::CallPenalty + 1);
346 if (inliningPreventsSomeOuterInline && TotalSecondaryCost < IC.getCost()) {
348 " Cost = " << IC.getCost() <
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 598 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition());
599 if (!IC || !IC->isEquality())
602 if (!match(IC->getOperand(1), m_Zero()))
606 Value *LHS = IC->getOperand(0);
651 ShouldNotVal ^= IC->getPredicate() == ICmpInst::ICMP_NE;
    [all...]
InstCombineMulDivRem.cpp 26 static Value *simplifyValueKnownNonZero(Value *V, InstCombiner &IC) {
41 A = IC.Builder->CreateSub(A, B);
42 return IC.Builder->CreateShl(PowerOf2, A);
51 if (Value *V2 = simplifyValueKnownNonZero(I->getOperand(0), IC)) {
705 Value *IC = Builder->CreateICmpULT(Op0, C);
706 return SelectInst::Create(IC, Constant::getNullValue(I.getType()),
    [all...]
InstructionCombining.cpp 550 InstCombiner *IC) {
552 return IC->Builder->CreateCast(CI->getOpcode(), SO, I.getType());
570 return IC->Builder->CreateBinOp(BO->getOpcode(), Op0, Op1,
573 return IC->Builder->CreateICmp(CI->getPredicate(), Op0, Op1,
576 return IC->Builder->CreateICmp(CI->getPredicate(), Op0, Op1,
    [all...]
  /bionic/libc/arch-mips/include/machine/
regnum.h 75 #define IC 38
  /development/ndk/platforms/android-9/arch-mips/include/machine/
regnum.h 75 #define IC 38
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/machine/
regnum.h 75 #define IC 38
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/machine/
regnum.h 75 #define IC 38
  /external/clang/lib/AST/
CommentParser.cpp 410 InlineCommandComment *IC;
412 IC = S.actOnInlineCommand(CommandTok.getLocation(),
419 IC = S.actOnInlineCommand(CommandTok.getLocation(),
426 return IC;
  /external/eigen/blas/testing/
cblat1.f 13 INTEGER IC
22 DO 20 IC = 1, 10
23 ICASE = IC
dblat1.f 13 INTEGER IC
22 DO 20 IC = 1, 10
23 ICASE = IC
sblat1.f 13 INTEGER IC
22 DO 20 IC = 1, 10
23 ICASE = IC
zblat1.f 13 INTEGER IC
22 DO 20 IC = 1, 10
23 ICASE = IC
cblat2.f 433 INTEGER I, IA, IB, IC, IKU, IM, IN, INCX, INCXS, INCY,
513 DO 90 IC = 1, 3
514 TRANS = ICH( IC: IC )
778 INTEGER I, IA, IB, IC, IK, IN, INCX, INCXS, INCY,
849 DO 90 IC = 1, 2
850 UPLO = ICH( IC: IC )
    [all...]
cblat3.f     [all...]
dblat2.f 423 INTEGER I, IA, IB, IC, IKU, IM, IN, INCX, INCXS, INCY,
503 DO 90 IC = 1, 3
504 TRANS = ICH( IC: IC )
764 INTEGER I, IA, IB, IC, IK, IN, INCX, INCXS, INCY,
835 DO 90 IC = 1, 2
836 UPLO = ICH( IC: IC )
    [all...]
dblat3.f     [all...]
sblat2.f 423 INTEGER I, IA, IB, IC, IKU, IM, IN, INCX, INCXS, INCY,
503 DO 90 IC = 1, 3
504 TRANS = ICH( IC: IC )
764 INTEGER I, IA, IB, IC, IK, IN, INCX, INCXS, INCY,
835 DO 90 IC = 1, 2
836 UPLO = ICH( IC: IC )
    [all...]
sblat3.f     [all...]
zblat2.f 435 INTEGER I, IA, IB, IC, IKU, IM, IN, INCX, INCXS, INCY,
515 DO 90 IC = 1, 3
516 TRANS = ICH( IC: IC )
781 INTEGER I, IA, IB, IC, IK, IN, INCX, INCXS, INCY,
852 DO 90 IC = 1, 2
853 UPLO = ICH( IC: IC )
    [all...]
zblat3.f     [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 211 DeclContext *IC = S.computeDeclContext(getBaseObjectType());
212 InstanceContext = (IC ? cast<CXXRecordDecl>(IC)->getCanonicalDecl() : 0);
    [all...]
SemaObjCProperty.cpp     [all...]

Completed in 434 milliseconds