From fe8f4fff15acc25fa9068253995b0e695c8e001b Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Mon, 1 Nov 2004 09:02:53 +0000 Subject: [PATCH] Cleanup the constants section. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17398 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ProgrammersManual.html | 165 ++++++++++++++++++------------------ 1 file changed, 84 insertions(+), 81 deletions(-) diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 8ff45c9f3f3..5d108824d7e 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -15,11 +15,12 @@
  • Introduction
  • General Information
  • Important and useful LLVM APIs @@ -34,10 +35,11 @@ and the -debug-only option
  • The Statistic template & -stats -option
  • +option +
  • Helpful Hints for Common Operations @@ -68,6 +70,7 @@ use-def chains
  • Replacing an Instruction with another Value
  • + +-->
  • The Core LLVM Class Hierarchy Reference +
  • + +
  • The SymbolTable class
  • +
  • The ilist and iplist classes + +
  • +
  • Important iterator invalidation semantics to be aware of.
  • @@ -1666,58 +1672,55 @@ ConstantArray etc for representing the various types of Constants.

    +
    + +
    Important Subclasses of Constant
    -
      -
      Important Subclasses of Constant -

      +
    • ConstantSInt : This subclass of Constant represents a signed integer + constant.
        -
      • ConstantSInt : This subclass of Constant represents a signed -integer constant. -
          -
        • int64_t getValue() const: Returns the underlying value of -this constant.
        • -
        -
      • -
      • ConstantUInt : This class represents an unsigned integer. -
          -
        • uint64_t getValue() const: Returns the underlying value -of this constant.
        • -
        -
      • -
      • ConstantFP : This class represents a floating point constant. -
          -
        • double getValue() const: Returns the underlying value of -this constant.
        • -
        -
      • -
      • ConstantBool : This represents a boolean constant. -
          -
        • bool getValue() const: Returns the underlying value of -this constant.
        • -
        -
      • -
      • ConstantArray : This represents a constant array. -
          -
        • const std::vector<Use> &getValues() const: -Returns a Vecotr of component constants that makeup this array.
        • -
        -
      • -
      • ConstantStruct : This represents a constant struct. -
          -
        • const std::vector<Use> &getValues() const: -Returns a Vecotr of component constants that makeup this array.
        • -
        -
      • -
      • GlobalValue : This represents either a global variable or a - function. In either case, the value is a constant fixed address - (after linking). -
      • +
      • int64_t getValue() const: Returns the underlying value of + this constant.
    • +
    • ConstantUInt : This class represents an unsigned integer. +
        +
      • uint64_t getValue() const: Returns the underlying value of + this constant.
      • +
      +
    • +
    • ConstantFP : This class represents a floating point constant. +
        +
      • double getValue() const: Returns the underlying value of + this constant.
      • +
      +
    • +
    • ConstantBool : This represents a boolean constant. +
        +
      • bool getValue() const: Returns the underlying value of this + constant.
      • +
      +
    • +
    • ConstantArray : This represents a constant array. +
        +
      • const std::vector<Use> &getValues() const: Returns + a Vecotr of component constants that makeup this array.
      • +
      +
    • +
    • ConstantStruct : This represents a constant struct. +
        +
      • const std::vector<Use> &getValues() const: Returns + a Vector of component constants that makeup this array.
      • +
      +
    • +
    • GlobalValue : This represents either a global variable or a function. In + either case, the value is a constant fixed address (after linking). +