HomeSort by relevance Sort by last modified time
    Searched refs:IC (Results 1 - 25 of 172) 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.
54 void IC::SetTargetAtAddress(Address address, Code* target,
70 // ICs as language mode. The language mode of the IC must be preserved.
88 void IC::set_target(Code* code)
    [all...]
ic.h 8 #include "src/ic/ic-state.h"
16 // IC is the base class for LoadIC, StoreIC, KeyedLoadIC, and KeyedStoreIC.
18 class IC {
20 // Alias the inline cache state type to make the IC code more readable.
23 // The IC code is either invoked with no extra frames on the stack
27 // Construct the IC structure with the given number of extra
29 IC(FrameDepth depth, Isolate* isolate, FeedbackNexus* nexus = NULL);
30 virtual ~IC() {}
35 // Compute the current IC state based on the target stub, receiver and name
    [all...]
  /external/v8/test/mjsunit/regress/
regress-4296.js 10 // Initialize the IC.
23 // Initialize the IC.
36 // Initialize the IC.
regress-crbug-571517.js 16 // Initialize prototype chain dependent IC (nonexistent load).
25 // Update the IC.
33 // this fails to invalidate the IC.
regress-675.js 35 // Initialize IC for nonexistent x property on global object.
42 // Check that we bail out from the IC.
52 // Initialize IC.
59 // Check that IC bails out.
regress-2291.js 32 obj == obj; // Populate IC cache with non-strict comparison.
34 StrictCompare(obj); // Set IC in StrictCompare from IC cache.
setter.js 44 // Initialize the store IC.
60 // Verify that monomorphic prototype failure is triggered in the IC.
64 // Verify that the newly installed IC is correct.
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 168 static Instruction *simplifyAllocaArraySize(InstCombiner &IC, AllocaInst &AI) {
176 Value *V = IC.Builder->getInt32(1);
184 AllocaInst *New = IC.Builder->CreateAlloca(NewTy, nullptr, AI.getName());
197 Type *IdxTy = IC.getDataLayout().getIntPtrType(AI.getType());
202 IC.InsertNewInstBefore(GEP, *It);
206 return IC.ReplaceInstUsesWith(AI, GEP);
210 return IC.ReplaceInstUsesWith(AI, Constant::getNullValue(AI.getType()));
214 Type *IntPtrTy = IC.getDataLayout().getIntPtrType(AI.getType());
216 Value *V = IC.Builder->CreateIntCast(AI.getArraySize(), IntPtrTy, false);
318 static LoadInst *combineLoadToNewType(InstCombiner &IC, LoadInst &LI, Type *NewTy
    [all...]
InstCombineShifts.cpp 71 InstCombiner &IC, Instruction *CxtI) {
114 return CanEvaluateShifted(I->getOperand(0), NumBits, isLeftShift, IC, I) &&
115 CanEvaluateShifted(I->getOperand(1), NumBits, isLeftShift, IC, I);
134 if (IC.MaskedValueIsZero(I->getOperand(0),
159 if (IC.MaskedValueIsZero(I->getOperand(0),
170 IC, SI) &&
171 CanEvaluateShifted(SI->getFalseValue(), NumBits, isLeftShift, IC, SI);
180 IC, PN))
190 InstCombiner &IC, const DataLayout &DL) {
194 V = IC.Builder->CreateShl(C, NumBits)
    [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/lib/Transforms/IPO/
Inliner.cpp 347 InlineCost IC = getInlineCost(CS);
349 if (IC.isAlways()) {
357 if (IC.isNever()) {
366 if (!IC) {
367 DEBUG(dbgs() << " NOT Inlining: cost=" << IC.getCost()
368 << ", thres=" << (IC.getCostDelta() + IC.getCost())
372 Twine(IC.getCost()) + ", threshold=" +
373 Twine(IC.getCostDelta() + IC.getCost()) + ")")
    [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...]
  /prebuilts/go/darwin-x86/test/bench/shootout/
fasta.c 56 #define IC 29573
73 *random = (*random*IA + IC)%IM;
  /prebuilts/go/linux-x86/test/bench/shootout/
fasta.c 56 #define IC 29573
73 *random = (*random*IA + IC)%IM;
  /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/current/platforms/android-12/arch-mips/usr/include/machine/
regnum.h 75 #define IC 38
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/machine/
regnum.h 75 #define IC 38
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/machine/
regnum.h 75 #define IC 38

Completed in 360 milliseconds

1 2 3 4 5 6 7