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

  /external/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 188 struct MachineStackObject {
204 template <> struct ScalarEnumerationTraits<MachineStackObject::ObjectType> {
205 static void enumeration(yaml::IO &IO, MachineStackObject::ObjectType &Type) {
206 IO.enumCase(Type, "default", MachineStackObject::DefaultType);
207 IO.enumCase(Type, "spill-slot", MachineStackObject::SpillSlot);
208 IO.enumCase(Type, "variable-sized", MachineStackObject::VariableSized);
212 template <> struct MappingTraits<MachineStackObject> {
213 static void mapping(yaml::IO &YamlIO, MachineStackObject &Object) {
219 MachineStackObject::DefaultType); // Don't print the default type.
221 if (Object.Type != MachineStackObject::VariableSized
    [all...]
  /external/llvm/lib/CodeGen/MIRParser/
MIRParser.cpp 119 const yaml::MachineStackObject &Object,
484 if (Object.Type == yaml::MachineStackObject::VariableSized)
489 Object.Type == yaml::MachineStackObject::SpillSlot, Alloca);
553 const yaml::MachineStackObject &Object, int FrameIdx) {
  /external/llvm/lib/CodeGen/
MIRPrinter.cpp 301 yaml::MachineStackObject YamlObject;
307 ? yaml::MachineStackObject::SpillSlot
309 ? yaml::MachineStackObject::VariableSized
310 : yaml::MachineStackObject::DefaultType;

Completed in 1163 milliseconds