/external/llvm/lib/CodeGen/ |
LiveStackAnalysis.cpp | 1 //===-- LiveStackAnalysis.cpp - Live Stack Slot Analysis ------------------===// 10 // This file implements the live stack slot analysis pass. It is analogous to 31 "Live Stack Slot Analysis", false, false) 34 "Live Stack Slot Analysis", false, false) 60 LiveStacks::getOrCreateInterval(int Slot, const TargetRegisterClass *RC) { 61 assert(Slot >= 0 && "Spill slot indice must be >= 0"); 62 SS2IntervalMap::iterator I = S2IMap.find(Slot); 64 I = S2IMap.emplace(std::piecewise_construct, std::forward_as_tuple(Slot), 66 TargetRegisterInfo::index2StackSlot(Slot), 0.0F) [all...] |
StackColoring.cpp | 17 // 1. Allow merging multiple small slots into a single larger slot at different 79 STATISTIC(StackSlotMerged, "Number of stack slot merged."); 95 /// for a different stack slot. 116 /// Maps liveness intervals for each slot. 168 /// which access that frame slot. 255 unsigned Slot = MO.getIndex(); 259 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot); 261 DEBUG(dbgs()<<"Found a lifetime marker for slot #"<<Slot<< 266 BlockInfo.Begin.set(Slot); [all...] |
/external/llvm/lib/Transforms/Utils/ |
DemoteRegToStack.cpp | 20 /// Instruction and replaces it with a slot in the stack frame, allocated via 23 /// the alloca inserted to create a stack slot for I. 31 // Create a stack slot to hold the value. 32 AllocaInst *Slot; 34 Slot = new AllocaInst(I.getType(), nullptr, 38 Slot = new AllocaInst(I.getType(), nullptr, I.getName()+".reg2mem", 55 // Change all of the users of the instruction to read from the stack slot. 74 V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, 82 Value *V = new LoadInst(Slot, I.getName()+".reload", VolatileLoads, U); 87 // Insert stores of the computed value into the stack slot. We have to b [all...] |
/frameworks/native/include/gui/ |
ConsumerBase.h | 77 status_t detachBuffer(int slot); 124 // freeBufferLocked frees up the given buffer slot. If the slot has been 126 // slot. Otherwise it has no effect. 129 // keep per slot. If it is overridden, the derived class's implementation 141 // state they keep (as opposed to per-slot state). If it is overridden, 161 // updates the buffer slot for the buffer returned. 165 // to a slot. If it is overridden the derived class's implementation must 177 virtual status_t releaseBufferLocked(int slot, 181 // returns true iff the slot still has the graphicBuffer in it [all...] |
/external/llvm/lib/Transforms/IPO/ |
ConstantMerge.cpp | 148 GlobalVariable *&Slot = CMap[Init]; 153 if (!Slot || IsBetterCanonical(*GV, *Slot)) 154 Slot = GV; 179 GlobalVariable *Slot = CMap[Init]; 181 if (!Slot || Slot == GV) 184 if (!Slot->hasUnnamedAddr() && !GV->hasUnnamedAddr()) 188 Slot->setUnnamedAddr(false); 191 Replacements.push_back(std::make_pair(GV, Slot)); [all...] |
/cts/tests/tests/widget/src/android/widget/cts/util/ |
ListItemFactory.java | 77 public enum Slot { 91 public static View horizontalButtonSlots(Context context, int desiredHeight, Slot... slots) { 104 for (Slot slot : slots) { 105 switch (slot) {
|
/external/skia/src/core/ |
SkTHash.h | 62 Slot& s = fSlots[index]; 82 Slot& s = fSlots[index]; 121 Slot& s = fSlots[index]; 150 SkAutoTArray<Slot> oldSlots(capacity); 154 const Slot& s = oldSlots[i]; 174 struct Slot { 175 Slot() : hash(0) {} 186 SkAutoTArray<Slot> fSlots;
|
/frameworks/base/core/tests/coretests/src/android/util/ |
ListItemFactory.java | 77 public enum Slot { 91 public static View horizontalButtonSlots(Context context, int desiredHeight, Slot... slots) { 104 for (Slot slot : slots) { 105 switch (slot) {
|
/frameworks/base/rs/java/android/renderscript/ |
ProgramFragmentFixedFunction.java | 151 private class Slot { 154 Slot(EnvMode _env, Format _fmt) { 159 Slot[] mSlots; 233 mSlots = new Slot[MAX_TEXTURE]; 247 * @param slot index of the texture to apply the operations on 251 public Builder setTexture(EnvMode env, Format fmt, int slot) 253 if((slot < 0) || (slot >= MAX_TEXTURE)) { 256 mSlots[slot] = new Slot(env, fmt) [all...] |
/external/llvm/include/llvm/CodeGen/ |
MachineModuleInfo.h | 189 unsigned Slot; 193 unsigned Slot, const MDLocation *Loc) 194 : Var(Var), Expr(Expr), Slot(Slot), Loc(Loc) {} 442 unsigned Slot, const MDLocation *Loc) { 443 VariableDbgInfos.emplace_back(Var, Expr, Slot, Loc);
|
SlotIndexes.h | 1 //===- llvm/CodeGen/SlotIndexes.h - Slot indexes representation -*- C++ -*-===// 34 /// This class represents an entry in the slot index list held in the 95 enum Slot { 98 /// def slot of PHI-defs. 101 /// Early-clobber register use/def slot. A live range defined at 103 /// Slot_Register. Also used as the kill slot for live ranges tied to an 107 /// Normal register use/def slot. Normal instructions kill and define 108 /// register live ranges at this slot. 111 /// Dead def kill point. Kill slot for a live range that is defined by 121 SlotIndex(IndexListEntry *entry, unsigned slot) [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeTypesGeneric.cpp | 127 unsigned Slot = 0; 128 for (unsigned e = Vals.size(); e - Slot > 2; Slot += 2, e += 1) { 131 SDValue LHS = Vals[Slot]; 132 SDValue RHS = Vals[Slot + 1]; 143 Lo = Vals[Slot++]; 144 Hi = Vals[Slot++]; 165 // Emit a store to the stack slot. 169 // Load the first half from the stack slot. 179 // Load the second half from the stack slot [all...] |
/external/clang/lib/CodeGen/ |
CGVTables.cpp | 279 // Determine whether we have a return value slot to use. 285 ReturnValueSlot Slot; 289 Slot = ReturnValueSlot(ReturnValue, ResultType.isVolatileQualified()); 293 RValue RV = EmitCall(*CurFnInfo, Callee, Slot, CallArgs, MD, &CallOrInvoke); 300 if (!ResultType->isVoidType() && Slot.isNull()) [all...] |
CGExprAgg.cpp | 38 /// We want to use 'dest' as the return slot except under two 40 /// - The destination slot requires garbage collection, so we 42 /// - The destination slot is potentially aliased. 248 /// directly into the return value slot. Otherwise, a final move 549 AggValueSlot Slot = EnsureSlot(E->getType()); 550 CGF.EmitAggExpr(E->getInitializer(), Slot); [all...] |
CGBlocks.cpp | 825 AggValueSlot Slot = 830 EmitAggExpr(copyExpr, Slot); [all...] |
CGExprCXX.cpp | 775 AggValueSlot Slot 780 CGF.EmitAggExpr(Init, Slot); [all...] |
CGClass.cpp | 475 AggValueSlot Slot = 481 CGF.EmitAggExpr(Init, Slot); [all...] |
CodeGenModule.cpp | [all...] |
/external/llvm/lib/IR/ |
Attributes.cpp | 783 // Now add the attribute into the correct slot. There may already be an 836 // Now remove the attribute from the correct slot. There may already be an [all...] |
AsmWriter.cpp | 544 // SlotTracker Class: Enumerate slot numbers for unnamed values 546 /// This class provides computation of slot numbers for LLVM Assembly writing. 550 /// ValueMap - A mapping of Values to slot numbers. 554 /// TheModule - The module for which we are holding slot numbers. 557 /// TheFunction - The function for which we are holding slot numbers. 562 /// mMap - The slot map for the module level data. 566 /// fMap - The slot map for the function level data. 574 /// asMap - The slot map for attribute sets. 593 /// Return the slot number of the specified value in it's type 633 /// CreateModuleSlot - Insert the specified GlobalValue* into the slot table [all...] |
Constants.cpp | 561 ConstantInt *&Slot = pImpl->IntConstants[V]; 562 if (!Slot) { 565 Slot = new ConstantInt(ITy, V); 567 assert(Slot->getType() == IntegerType::get(Context, V.getBitWidth())); 568 return Slot; 690 ConstantFP *&Slot = pImpl->FPConstants[V]; 692 if (!Slot) { 709 Slot = new ConstantFP(Ty, V); 712 return Slot; [all...] |
/external/llvm/lib/Target/X86/ |
X86FloatingPoint.cpp | 142 unsigned Stack[8]; // FP<n> Registers in each stack slot... 171 /// getSlot - Return the stack slot number a particular register number is 180 unsigned Slot = getSlot(RegNo); 181 return Slot < StackTop && Stack[Slot] == RegNo; 217 // Swap stack slot contents. 242 /// otherwise we store the current top-of-stack into the specified slot, 813 /// current top-of-stack into the specified slot, then pop the top of stack. 820 // Otherwise, store the top of stack into the dead slot, killing the operand [all...] |
/frameworks/compile/libbcc/lib/Renderscript/ |
RSForEachExpand.cpp | 787 llvm::Value *Slot = new llvm::AllocaInst(ElementType, 792 InStructTempSlots.push_back(Slot); [all...] |
/external/llvm/utils/TableGen/ |
DAGISelMatcher.h | 240 /// ResultNo - The slot number in the RecordedNodes vector that this will be, 271 /// ResultNo - The slot number in the RecordedNodes vector that this will be, 721 /// MatchNumber - This is the recorded nodes slot that contains the node we 728 /// FirstResult - This is the first slot in the RecordedNodes list that the 909 unsigned Slot; 911 EmitConvertToTargetMatcher(unsigned slot) 912 : Matcher(EmitConvertToTarget), Slot(slot) {} 914 unsigned getSlot() const { return Slot; } 923 return cast<EmitConvertToTargetMatcher>(M)->Slot == Slot [all...] |
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
voyager.h | 314 __u8 Slot;
|