Searched refs:ConstantPool (Results 1 - 25 of 34) sorted by relevance

12

/external/llvm/include/llvm/MC/
H A DConstantPools.h1 //===- ConstantPool.h - Keep track of assembler-generated ------*- C++ -*-===//
10 // This file declares the ConstantPool and AssemblerConstantPools classes.
27 class ConstantPool { class in namespace:llvm
33 ConstantPool() {} function in class:llvm::ConstantPool
63 typedef MapVector<const MCSection *, ConstantPool> ConstantPoolMapTy;
75 ConstantPool *getConstantPool(const MCSection *Section);
76 ConstantPool &getOrCreateConstantPool(const MCSection *Section);
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DConstantPool.java23 public interface ConstantPool { interface
H A DStdConstantPool.java24 * Standard implementation of {@link ConstantPool}, which directly stores
28 extends MutabilityControl implements ConstantPool {
/external/llvm/lib/MC/
H A DConstantPools.cpp1 //===- ConstantPools.cpp - ConstantPool class --*- C++ -*---------===//
10 // This file implements the ConstantPool and AssemblerConstantPools classes.
21 // ConstantPool implementation
24 void ConstantPool::emitEntries(MCStreamer &Streamer) {
38 const MCExpr *ConstantPool::addEntry(const MCExpr *Value, MCContext &Context) {
45 bool ConstantPool::empty() { return Entries.empty(); }
50 ConstantPool *
59 ConstantPool &
65 ConstantPool &CP) {
78 ConstantPool
[all...]
/external/llvm/lib/Target/ARM/
H A DThumb2RegisterInfo.cpp44 MachineConstantPool *ConstantPool = MF.getConstantPool(); local
47 unsigned Idx = ConstantPool->getConstantPoolIndex(C, 4);
H A DARMBaseRegisterInfo.cpp406 MachineConstantPool *ConstantPool = MF.getConstantPool(); local
409 unsigned Idx = ConstantPool->getConstantPoolIndex(C, 4);
H A DThumb1RegisterInfo.cpp71 MachineConstantPool *ConstantPool = MF.getConstantPool(); local
74 unsigned Idx = ConstantPool->getConstantPoolIndex(C, 4);
H A DARMISelLowering.cpp691 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
2261 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6191 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6584 MachineConstantPool *ConstantPool = MF->getConstantPool(); local
6592 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
6676 MachineConstantPool *ConstantPool = MF->getConstantPool(); local
6684 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
7062 MachineConstantPool *ConstantPool = MF->getConstantPool(); local
7070 unsigned Idx = ConstantPool->getConstantPoolIndex(C, Align);
/external/llvm/include/llvm/CodeGen/
H A DStackMaps.h139 typedef MapVector<int64_t, int64_t> ConstantPool; typedef in class:llvm::StackMaps
158 ConstantPool ConstPool;
H A DMachineFunction.h93 MachineConstantPool *ConstantPool; member in class:llvm::MachineFunction
192 MachineConstantPool *getConstantPool() { return ConstantPool; }
193 const MachineConstantPool *getConstantPool() const { return ConstantPool; }
H A DISDOpcodes.h63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress, enumerator in enum:llvm::ISD::NodeType
H A DSelectionDAGNodes.h1479 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, 0,
1487 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, 0,
1522 return N->getOpcode() == ISD::ConstantPool ||
/external/llvm/lib/Target/XCore/
H A DXCoreInstrInfo.cpp455 MachineConstantPool *ConstantPool = MBB.getParent()->getConstantPool(); local
458 unsigned Idx = ConstantPool->getConstantPoolIndex(C, 4);
H A DXCoreISelLowering.cpp127 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
212 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
/external/llvm/lib/CodeGen/
H A DMachineFunction.cpp72 ConstantPool = new (Allocator) MachineConstantPool(TM);
108 ConstantPool->~MachineConstantPool();
109 Allocator.Deallocate(ConstantPool);
351 ConstantPool->print(OS);
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp298 /// ConstantPool - The constant pool for the current function.
300 MachineConstantPool *ConstantPool; member in class:__anon25847::JITEmitter
1024 ConstantPool = MCP;
1175 assert(ConstantNum < ConstantPool->getConstants().size() &&
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3349 /// its constant value in ConstantPool, returning 0 if it's not there.
3351 const SmallDenseMap<Value*, Constant*>& ConstantPool) {
3354 return ConstantPool.lookup(V);
3359 /// constant or can be replaced by constants from the ConstantPool. Returns the
3363 const SmallDenseMap<Value *, Constant *> &ConstantPool,
3366 Constant *A = LookupConstant(Select->getCondition(), ConstantPool);
3370 return LookupConstant(Select->getTrueValue(), ConstantPool);
3372 return LookupConstant(Select->getFalseValue(), ConstantPool);
3378 if (Constant *A = LookupConstant(I->getOperand(N), ConstantPool))
3407 SmallDenseMap<Value*, Constant*> ConstantPool; local
3350 LookupConstant(Value *V, const SmallDenseMap<Value*, Constant*>& ConstantPool) argument
3362 ConstantFold(Instruction *I, const SmallDenseMap<Value *, Constant *> &ConstantPool, const DataLayout *DL) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp103 case ISD::ConstantPool: return "ConstantPool";
H A DSelectionDAG.cpp459 case ISD::ConstantPool:
1341 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1369 unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp245 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
264 setOperationAction(ISD::ConstantPool, MVT::i64, Custom);
785 case ISD::ConstantPool: return lowerConstantPool(Op, DAG);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1549 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1395 setOperationAction(ISD::ConstantPool, getPointerTy(), Custom);
1798 // Build SDNodes for producing an address from a GlobalAddress, ConstantPool,
2791 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp227 setOperationAction(ISD::ConstantPool, PtrVT, Custom);
2419 case ISD::ConstantPool:
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 735 milliseconds

12