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

1 2 3

  /external/llvm/unittests/IR/
ValueMapTest.cpp 49 ValueMap<TypeParam*, int> VM;
50 VM[this->BitcastV.get()] = 7;
51 EXPECT_EQ(7, VM.lookup(this->BitcastV.get()));
52 EXPECT_EQ(0, VM.count(this->AddV.get()));
54 EXPECT_EQ(7, VM.lookup(this->AddV.get()));
55 EXPECT_EQ(0, VM.count(this->BitcastV.get()));
57 EXPECT_EQ(0, VM.count(this->AddV.get()));
58 EXPECT_EQ(0, VM.count(this->BitcastV.get()));
59 EXPECT_EQ(0U, VM.size());
63 ValueMap<TypeParam*, int> VM;
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
ValueMapper.h 56 Value *MapValue(const Value *V, ValueToValueMapTy &VM,
60 void RemapInstruction(Instruction *I, ValueToValueMapTy &VM,
66 inline MDNode *MapValue(const MDNode *V, ValueToValueMapTy &VM,
69 return cast<MDNode>(MapValue((const Value*)V, VM, Flags, TypeMapper));
71 inline Constant *MapValue(const Constant *V, ValueToValueMapTy &VM,
74 return cast<Constant>(MapValue((const Value*)V, VM, Flags, TypeMapper));
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 26 Value *llvm::MapValue(const Value *V, ValueToValueMapTy &VM, RemapFlags Flags,
28 ValueToValueMapTy::iterator I = VM.find(V);
31 if (I != VM.end() && I->second) return I->second;
33 // Global values do not need to be seeded into the VM if they
36 return VM[V] = const_cast<Value*>(V);
49 return VM[V] = const_cast<Value*>(V);
57 return VM[V] = const_cast<Value*>(V);
61 VM[V] = Dummy;
67 Value *Mapped_OP = MapValue(OP, VM, Flags, TypeMapper);
82 Value *Mapped_Op = MapValue(Op, VM, Flags, TypeMapper)
    [all...]
  /build/core/combo/
javac.mk 27 # We set the VM options (like -Xmx) in the javac script.
  /dalvik/dexopt/
Android.mk 16 # dexopt, the DEX file optimizer. This is fully integrated with the VM,
17 # so it must be linked against the full VM shared library.
27 dalvik/vm \
  /external/llvm/lib/Target/R600/
SIInsertWaits.cpp 34 unsigned VM;
127 Result.Named.VM = !!(TSFlags & SIInstrFlags::VM_CNT);
250 // EXP_CNT is unordered if we have both EXP & VM-writes
291 .addImm((Counts.Named.VM & 0xF) |
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/
messages.properties 29 DeviceView_Dump_HPROF_File_Not_Supported_By_VM=Dump HPROF file (not supported by this VM)
42 DeviceView_Start_Method_Profiling_Not_Suported_By_Vm=Start Method Profiling (not supported by this VM)
  /external/v8/test/mjsunit/regress/
regress-1215653.js 28 // Make sure this doesn't crash the VM.
  /dalvik/vm/
Android.mk 16 # Android.mk for Dalvik VM.
23 # rebuild the VM with:
Dvm.mk 32 # Optional features. These may impact the size or performance of the VM.
227 dalvik/vm \
316 dalvik/vm/compiler/codegen/x86/libenc
  /external/v8/test/mjsunit/
not.js 29 // The VM constant folds so we use that to check the result.
bit-not.js 29 // The VM constant folds so we use that to check the result.
array-elements-from-array-prototype-chain.js 39 // VM setup---some optimizations might be already turned off in
40 // 'dirty' VM.
array-elements-from-array-prototype.js 39 // VM setup---some optimizations might be already turned off in
40 // 'dirty' VM.
array-elements-from-object-prototype.js 39 // VM setup---some optimizations might be already turned off in
40 // 'dirty' VM.
  /dalvik/vm/arch/arm/
CallOldABI.S 138 @ and the VM preserves an overflow region at the bottom, so it should be
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /external/v8/tools/
tickprocessor.js 765 'Show only ticks from JS VM state'],
767 'Show only ticks from GC VM state'],
769 'Show only ticks from COMPILER VM state'],
771 'Show only ticks from OTHER VM state'],
773 'Show only ticks from EXTERNAL VM state'],
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 662 static Loop *CloneLoop(Loop *L, Loop *PL, ValueToValueMapTy &VM,
671 New->addBasicBlockToLoop(cast<BasicBlock>(VM[*I]), LI->getBase());
675 CloneLoop(*I, New, VM, LI, LPM);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 196 // block local variable and an outer function's parameter. Due to VM
  /external/v8/src/
mirror-debugger.js     [all...]
debug-debugger.js     [all...]
  /external/chromium/third_party/libevent/
config.guess 294 *:z/VM:*:*)
    [all...]

Completed in 1175 milliseconds

1 2 3