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

  /external/llvm/lib/Transforms/Utils/
BasicInliner.cpp 110 InlineCost IC = CA.getInlineCost(CS, NeverInline);
111 if (IC.isAlways()) {
114 } else if (IC.isNever()) {
119 int Cost = IC.getValue();
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 219 InlineCost IC = getInlineCost(CS);
221 if (IC.isAlways()) {
227 if (IC.isNever()) {
233 int Cost = IC.getValue();
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 26 static Value *simplifyValueKnownNonZero(Value *V, InstCombiner &IC) {
40 isPowerOfTwo(PowerOf2, IC.getTargetData())) {
41 A = IC.Builder->CreateSub(A, B);
42 return IC.Builder->CreateShl(PowerOf2, A);
49 isPowerOfTwo(I->getOperand(0), IC.getTargetData())) {
52 if (Value *V2 = simplifyValueKnownNonZero(I->getOperand(0), IC)) {
459 Value *IC = Builder->CreateICmpULT(Op0, C);
460 return SelectInst::Create(IC, Constant::getNullValue(I.getType()),
InstCombineSelect.cpp 586 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition());
587 if (!IC || !IC->isEquality())
590 if (!match(IC->getOperand(1), m_Zero()))
594 Value *LHS = IC->getOperand(0);
639 ShouldNotVal ^= IC->getPredicate() == ICmpInst::ICMP_NE;
    [all...]
InstCombineCalls.cpp 778 InstCombiner *IC;
781 NewInstruction = IC->ReplaceInstUsesWith(*CI, With);
804 InstCombineFortifiedLibCalls(InstCombiner *IC) : IC(IC), NewInstruction(0) { }
    [all...]
  /external/v8/src/
ic.h 48 /* Utilities for IC stubs. */ \
59 // IC is the base class for LoadIC, StoreIC, CallIC, KeyedLoadIC,
62 class IC {
76 // Alias the inline cache state type to make the IC code more readable.
79 // The IC code is either invoked with no extra frames on the stack
86 // Construct the IC structure with the given number of extra
88 IC(FrameDepth depth, Isolate* isolate);
94 // Compute the current IC state based on the target stub, receiver and name.
100 // Computes the reloc info for this IC. This is a fairly expensive
102 // object that contains this IC site
    [all...]
ic.cc 35 #include "ic-inl.h"
43 static char TransitionMarkFromState(IC::State state) {
61 void IC::TraceIC(const char* type,
81 IC::IC(FrameDepth depth, Isolate* isolate) : isolate_(isolate) {
83 // To improve the performance of the (much used) IC code, we unfold
85 // ~35% speedup when running DeltaBlue with the '--nouse-ic' flag.
111 Address IC::OriginalCodeAddress() {
113 // Compute the JavaScript frame for the frame pointer of this IC
128 // place where the call to DebugBreakXXX is and where the IC
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 534 ObjCImplementationDecl *IC = 0;
536 if ((IC = dyn_cast<ObjCImplementationDecl>(ClassImpDecl))) {
537 IDecl = IC->getClassInterface();
555 Diag(IC->getLocation(), diag::warn_auto_implicit_atomic_property);
    [all...]
SemaAccess.cpp 199 DeclContext *IC = S.computeDeclContext(getBaseObjectType());
200 InstanceContext = (IC ? cast<CXXRecordDecl>(IC)->getCanonicalDecl() : 0);
    [all...]
  /external/bluetooth/hcidump/parser/
rfcomm.h 105 #define IC 0x40 /* incoming call */
284 uint8_t ic:1; member in struct:v24_signals
424 uint8_t ic:1; member in struct:v24_signals

Completed in 5922 milliseconds