make getSlot/getTypeSlot inline
authorChris Lattner <sabre@nondot.org>
Sat, 10 Feb 2007 05:18:35 +0000 (05:18 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 10 Feb 2007 05:18:35 +0000 (05:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34130 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Writer/SlotCalculator.cpp
lib/Bytecode/Writer/SlotCalculator.h

index 172da73f136e9def382c7bc4a003a4b2ca983e71..dfb87b48ece2a9d34a59796ae6f9ad85287f899e 100644 (file)
@@ -278,18 +278,6 @@ void SlotCalculator::purgeFunction() {
   SC_DEBUG("end purgeFunction!\n");
 }
 
-unsigned SlotCalculator::getSlot(const Value *V) const {
-  std::map<const Value*, unsigned>::const_iterator I = NodeMap.find(V);
-  assert(I != NodeMap.end() && "Value not in slotcalculator!");
-  return (int)I->second;
-}
-
-unsigned SlotCalculator::getTypeSlot(const Type*T) const {
-  std::map<const Type*, unsigned>::const_iterator I = TypeMap.find(T);
-  assert(I != TypeMap.end() && "Type not in slotcalc!");
-  return I->second;
-}
-
 void SlotCalculator::CreateSlotIfNeeded(const Value *V) {
   // Check to see if it's already in!
   if (NodeMap.count(V)) return;
index 7613556494d18294d0f83045d9cea9a24fac60da..bfc80489b2baab3411f37f5d3ed5a36507d67a99 100644 (file)
@@ -65,8 +65,17 @@ public:
   /// getSlot - Return the slot number of the specified value in it's type
   /// plane.  This returns < 0 on error!
   ///
-  unsigned getSlot(const Value *V) const;
-  unsigned getTypeSlot(const Type* T) const;
+  unsigned getSlot(const Value *V) const {
+    std::map<const Value*, unsigned>::const_iterator I = NodeMap.find(V);
+    assert(I != NodeMap.end() && "Value not in slotcalculator!");
+    return I->second;
+  }
+  
+  unsigned getTypeSlot(const Type* T) const {
+    std::map<const Type*, unsigned>::const_iterator I = TypeMap.find(T);
+    assert(I != TypeMap.end() && "Type not in slotcalc!");
+    return I->second;
+  }
 
   inline unsigned getNumPlanes() const { return Table.size(); }
   inline unsigned getNumTypes() const { return Types.size(); }