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

1 2 3 4 5 6 7

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arc/
math.d 9 00000000 @IC+0@008400 @OC@ r0,r1,r2
10 00000004 @IC+3@4db800 @OC@ r26,fp,sp
11 00000008 @IC+3@af3e00 @OC@ ilink1,ilink2,blink
12 0000000c @IC+7@5df800 @OC@ r58,r59,lp_count
13 00000010 @IC+0@00fe00 @OC@ r0,r1,0
14 00000014 @IC+0@1f8400 @OC@ r0,0,r2
15 00000018 @IC+7@e08400 @OC@ 0,r1,r2
16 0000001c @IC+0@00ffff @OC@ r0,r1,-1
17 00000020 @IC+0@1f85ff @OC@ r0,-1,r2
18 00000024 @IC+7@e085ff @OC@ -1,r1,r
    [all...]
branch.d 9 00000000 <text_label> @IC+7@ffff80 @OC@ 00000000 <text_label>
10 00000004 <text_label\+4> @IC+7@ffff00 @OC@ 00000000 <text_label>
11 00000008 <text_label\+8> @IC+7@fffe80 @OC@ 00000000 <text_label>
12 0000000c <text_label\+c> @IC+7@fffe01 @OC@eq 00000000 <text_label>
13 00000010 <text_label\+10> @IC+7@fffd81 @OC@eq 00000000 <text_label>
14 00000014 <text_label\+14> @IC+7@fffd02 @OC@ne 00000000 <text_label>
15 00000018 <text_label\+18> @IC+7@fffc82 @OC@ne 00000000 <text_label>
16 0000001c <text_label\+1c> @IC+7@fffc03 @OC@p 00000000 <text_label>
17 00000020 <text_label\+20> @IC+7@fffb83 @OC@p 00000000 <text_label>
18 00000024 <text_label\+24> @IC+7@fffb04 @OC@n 00000000 <text_label
    [all...]
alias.d 9 00000000 @IC+0@008200 @OC@ r0,r1
10 00000004 @IC+3@6e3800 @OC@ fp,sp
11 00000008 @IC+0@1ffe00 @OC@ r0,0
12 0000000c @IC+0@3fffff @OC@ r1,-1
13 00000010 @IC+7@e10400 @OC@ 0,r2
14 00000014 @IC+7@e187ff @OC@ -1,r3
15 00000018 @IC+0@9ffeff @OC@ r4,255
16 0000001c @IC+7@e28aff @OC@ 255,r5
17 00000020 @IC+0@dfff00 @OC@ r6,-256
18 00000024 @IC+7@e38f00 @OC@ -256,r
    [all...]
  /external/v8/src/ic/
ic-inl.h 8 #include "src/ic/ic.h"
19 Address IC::address() const {
25 Address IC::constant_pool() const {
34 Address IC::raw_constant_pool() const {
43 Code* IC::GetTargetAtAddress(Address address, Address constant_pool) {
44 // Get the target address of the IC.
49 // The result can be an IC dispatcher (for vector-based ICs), an IC handler
50 // (for old-style patching ICs) or CEntryStub (for IC dispatchers inlined t
    [all...]
ic.h 10 #include "src/ic/ic-state.h"
18 // IC is the base class for LoadIC, StoreIC, KeyedLoadIC, and KeyedStoreIC.
20 class IC {
22 // Alias the inline cache state type to make the IC code more readable.
25 // The IC code is either invoked with no extra frames on the stack
29 // Construct the IC structure with the given number of extra
31 IC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus = NULL);
32 virtual ~IC() {}
37 // Compute the current IC state based on the target stub, receiver and name
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
X86DisassemblerShared.h 23 insnContext = IC; \
CodeEmitterGen.cpp 261 for (std::vector<Record*>::iterator IC = Insts.begin(), EC = Insts.end();
262 IC != EC; ++IC) {
263 Record *R = *IC;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 170 static Instruction *simplifyAllocaArraySize(InstCombiner &IC, AllocaInst &AI) {
178 Value *V = IC.Builder->getInt32(1);
186 AllocaInst *New = IC.Builder->CreateAlloca(NewTy, nullptr, AI.getName());
199 Type *IdxTy = IC.getDataLayout().getIntPtrType(AI.getType());
204 IC.InsertNewInstBefore(GEP, *It);
208 return IC.replaceInstUsesWith(AI, GEP);
212 return IC.replaceInstUsesWith(AI, Constant::getNullValue(AI.getType()));
216 Type *IntPtrTy = IC.getDataLayout().getIntPtrType(AI.getType());
218 Value *V = IC.Builder->CreateIntCast(AI.getArraySize(), IntPtrTy, false);
320 static LoadInst *combineLoadToNewType(InstCombiner &IC, LoadInst &LI, Type *NewTy
    [all...]
InstCombineShifts.cpp 62 Instruction *SecondShift, InstCombiner &IC,
96 if (IC.MaskedValueIsZero(SecondShift->getOperand(0), Mask, 0, CxtI))
116 InstCombiner &IC, Instruction *CxtI) {
159 return CanEvaluateShifted(I->getOperand(0), NumBits, IsLeftShift, IC, I) &&
160 CanEvaluateShifted(I->getOperand(1), NumBits, IsLeftShift, IC, I);
164 return canEvaluateShiftedShift(NumBits, IsLeftShift, I, IC, CxtI);
170 return CanEvaluateShifted(TrueVal, NumBits, IsLeftShift, IC, SI) &&
171 CanEvaluateShifted(FalseVal, NumBits, IsLeftShift, IC, SI);
179 if (!CanEvaluateShifted(IncValue, NumBits, IsLeftShift, IC, PN))
189 InstCombiner &IC, const DataLayout &DL)
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 232 bool Inliner::shouldBeDeferred(Function *Caller, CallSite CS, InlineCost IC,
256 int CandidateCost = IC.getCost() - (InlineConstants::CallPenalty + 1);
296 if (inliningPreventsSomeOuterInline && TotalSecondaryCost < IC.getCost())
304 InlineCost IC = getInlineCost(CS);
306 if (IC.isAlways()) {
314 if (IC.isNever()) {
323 if (!IC) {
324 DEBUG(dbgs() << " NOT Inlining: cost=" << IC.getCost()
325 << ", thres=" << (IC.getCostDelta() + IC.getCost()
    [all...]
  /external/llvm/utils/TableGen/
X86DisassemblerShared.h 25 insnContext = llvm::X86Disassembler::IC;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
compressed-plt-1a.s 1 # Define a function with all "compressed" (dc and ic) references.
19 .if (\types) & IC
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 80 /// inlined which is proved to be more beneficial. \p IC is the
84 bool shouldBeDeferred(Function *Caller, CallSite CS, InlineCost IC,
  /external/swiftshader/third_party/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/python/cpython2/Lib/plat-mac/
ic.py 0 """IC wrapper module, based on Internet Config 1.3"""
4 warnpy3k("In 3.x, the ic module is removed.", stacklevel=2)
36 """An unparseable IC entry"""
163 class IC:
164 def __init__(self, signature='Pyth', ic=None):
165 if ic:
166 self.ic = ic
168 self.ic = icglue.ICStart(signature)
169 if hasattr(self.ic, 'ICFindConfigFile')
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
ic.py 0 """IC wrapper module, based on Internet Config 1.3"""
4 warnpy3k("In 3.x, the ic module is removed.", stacklevel=2)
36 """An unparseable IC entry"""
163 class IC:
164 def __init__(self, signature='Pyth', ic=None):
165 if ic:
166 self.ic = ic
168 self.ic = icglue.ICStart(signature)
169 if hasattr(self.ic, 'ICFindConfigFile')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
ic.py 0 """IC wrapper module, based on Internet Config 1.3"""
4 warnpy3k("In 3.x, the ic module is removed.", stacklevel=2)
36 """An unparseable IC entry"""
163 class IC:
164 def __init__(self, signature='Pyth', ic=None):
165 if ic:
166 self.ic = ic
168 self.ic = icglue.ICStart(signature)
169 if hasattr(self.ic, 'ICFindConfigFile')
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineShifts.cpp 69 InstCombiner &IC) {
112 return CanEvaluateShifted(I->getOperand(0), NumBits, isLeftShift, IC) &&
113 CanEvaluateShifted(I->getOperand(1), NumBits, isLeftShift, IC);
165 return CanEvaluateShifted(SI->getTrueValue(), NumBits, isLeftShift, IC) &&
166 CanEvaluateShifted(SI->getFalseValue(), NumBits, isLeftShift, IC);
174 if (!CanEvaluateShifted(PN->getIncomingValue(i), NumBits, isLeftShift,IC))
184 InstCombiner &IC) {
188 V = IC.Builder->CreateShl(C, NumBits);
190 V = IC.Builder->CreateLShr(C, NumBits);
193 V = ConstantFoldConstantExpression(CE, IC.getTargetData())
    [all...]
InstCombineLoadStoreAlloca.cpp 89 static Instruction *InstCombineLoadCast(InstCombiner &IC, LoadInst &LI,
120 if (IC.getTargetData() &&
126 IC.getTargetData()->getTypeSizeInBits(SrcPTy) ==
127 IC.getTargetData()->getTypeSizeInBits(DestPTy)) {
133 IC.Builder->CreateLoad(CastOp, LI.isVolatile(), CI->getName());
256 static Instruction *InstCombineStoreToCast(InstCombiner &IC, StoreInst &SI) {
305 if (!IC.getTargetData() ||
308 IC.getTargetData()->getTypeSizeInBits(SrcPTy) !=
309 IC.getTargetData()->getTypeSizeInBits(DestPTy))
331 CastOp = IC.Builder->CreateInBoundsGEP(CastOp, NewGEPIndices)
    [all...]
  /development/ndk/platforms/android-21/arch-mips/include/machine/
regnum.h 75 #define IC 38
  /development/ndk/platforms/android-21/arch-mips64/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/r10/platforms/android-12/arch-mips/usr/include/machine/
regnum.h 75 #define IC 38
  /prebuilts/ndk/r10/platforms/android-13/arch-mips/usr/include/machine/
regnum.h 75 #define IC 38
  /prebuilts/ndk/r10/platforms/android-14/arch-mips/usr/include/machine/
regnum.h 75 #define IC 38

Completed in 595 milliseconds

1 2 3 4 5 6 7