HomeSort by relevance Sort by last modified time
    Searched defs:MachinePointerInfo (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineMemOperand.h 37 struct MachinePointerInfo {
46 explicit MachinePointerInfo(const Value *v = nullptr, int64_t offset = 0)
49 explicit MachinePointerInfo(const PseudoSourceValue *v,
53 MachinePointerInfo getWithOffset(int64_t O) const {
54 if (V.isNull()) return MachinePointerInfo();
56 return MachinePointerInfo(V.get<const Value*>(), Offset+O);
57 return MachinePointerInfo(V.get<const PseudoSourceValue*>(), Offset+O);
63 /// Return a MachinePointerInfo record that refers to the constant pool.
64 static MachinePointerInfo getConstantPool(MachineFunction &MF);
66 /// Return a MachinePointerInfo record that refers to the specifie
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineMemOperand.h 27 /// MachinePointerInfo - This class contains a discriminated union of
31 struct MachinePointerInfo {
40 explicit MachinePointerInfo(const Value *v = 0, int64_t offset = 0)
43 MachinePointerInfo getWithOffset(int64_t O) const {
44 if (V == 0) return MachinePointerInfo(0, 0);
45 return MachinePointerInfo(V, Offset+O);
52 /// getConstantPool - Return a MachinePointerInfo record that refers to the
54 static MachinePointerInfo getConstantPool();
56 /// getFixedStack - Return a MachinePointerInfo record that refers to the
58 static MachinePointerInfo getFixedStack(int FI, int64_t offset = 0)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
MachineMemOperand.h 39 struct MachinePointerInfo {
52 explicit MachinePointerInfo(const Value *v, int64_t offset = 0,
58 explicit MachinePointerInfo(const PseudoSourceValue *v, int64_t offset = 0,
64 explicit MachinePointerInfo(unsigned AddressSpace = 0)
68 explicit MachinePointerInfo(
81 MachinePointerInfo getWithOffset(int64_t O) const {
83 return MachinePointerInfo(AddrSpace);
85 return MachinePointerInfo(V.get<const Value*>(), Offset+O, StackID);
86 return MachinePointerInfo(V.get<const PseudoSourceValue*>(), Offset+O,
98 /// Return a MachinePointerInfo record that refers to the constant pool
    [all...]

Completed in 69 milliseconds