Displaying 7 results from an estimated 7 matches for "qualifiedname".
Did you mean:
qualified_name
2007 Nov 27
0
Working with one model from another
...erstand this might be less-than-sensible as models should normally
stand on their own..?
My two models:
#######################
# models/qualified_name.rb #
#######################
# t.column :make, :text
# t.column :model, :text
# t.column :origin_country, :text
class QualifiedName < ActiveRecord::Base
# Work some magic -- let''s populate the instance using the raw name
string (e.g. "Honda Civic")
def magically_understand(name_string)
raw_name = RawName.new(name_string)
if raw_name.is_one_word then
self.make = raw_name.contents
els...
2008 May 23
1
[LLVMdev] DebugInfoBuilder?
...CreateSubProgramDescriptor(
GlobalVariable * compileUnit, /// Compile unit in which it
is defined
GlobalVariable * context, /// Context in which it is
defined
const std::string & name, /// Name of the subprogram
const std::string & qualifiedName, /// Fully-qualified name
unsigned line, /// Line number
GlobalVariable * typeDesc, /// Type descriptor
bool isStatic, /// True if this has static
scope (internal to module)
bool isDefined); ///...
2008 May 21
2
[LLVMdev] DebugInfoBuilder?
Are there any utility classes, similar to IRBuilder, for creating source
level debugging info?
-- Talin
2008 May 21
0
[LLVMdev] DebugInfoBuilder?
I don't think so. Contribution welcome! :-) LLVM debugging support
isn't anywhere near where it needs to be.
Evan
On May 20, 2008, at 9:53 PM, Talin wrote:
> Are there any utility classes, similar to IRBuilder, for creating
> source
> level debugging info?
>
> -- Talin
>
> _______________________________________________
> LLVM Developers mailing list
>
2010 Sep 05
0
[LLVMdev] More DIFactory questions - still stumped
On 5 September 2010 19:32, Talin <viridia at gmail.com> wrote:
> I've carefully studied the source code of CGDebugInfo in clang as a working
> example. One puzzlement is that there's a discrepancy between what the
> "source level debugging with LLVM" docs say and what clang does: According
> to the docs, DW_TAG_formal_parameter is used to specify a formal
2010 Sep 06
2
[LLVMdev] More DIFactory questions - still stumped
...gram & sp = dbgSubprograms_[fn];
if (!sp.isSubprogram()) {
DIType dbgFuncType = genDIType(fn->functionType());
DASSERT(dbgFuncType.Verify());
DASSERT(dbgCompileUnit_.Verify());
sp = dbgFactory_.CreateSubprogram(
dbgCompileUnit_,
fn->name(),
fn->qualifiedName(),
fn->linkageName(),
dbgFile_, // genDIFile(fn),
1, // getSourceLineNumber(fn->location()),
dbgFuncType,
fn->isSynthetic() /* isLocalToUnit */,
false /* isDefinition */,
0, 0 /* VK, Index */,
DIType(),
false /* isArti...
2010 Sep 05
2
[LLVMdev] More DIFactory questions - still stumped
I hate to be a nag, but after several days of working on this I am still
utterly stumped.
Let me recap the situation as it currently stands: I'm trying to write code
that generates DWARF debugging information for my compiler using DIFactory
and friends. Unfortunately the information I am generating appears to be
invalid, but I can't figure out the cause.
Based on the advice in the