Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
191 views

Array pointer aliasing - undefined behavior?

Does the following code invoke undefined behavior (due to aliasing violation or otherwise)? int foo(int (*a)[10], int (*b)[5]) { (*a)[5]++; return (*b)[0]; } int x[10]; foo(&x, (int ...
9
votes
6answers
154 views

What is the “right” way to avoid Aliasing (e.g. when adding an element of a container to itself) in C++?

std::vector<int> a; a.push_back(1); a.push_back(a[0]); I just learned that the code above can be very dangerous. (If it's not obvious why, you're not alone... it wasn't obvious to me either.) ...
8
votes
6answers
157 views

Nested structs and strict aliasing in c

Please consider the following code: typedef struct { int type; } object_t; typedef struct { object_t object; int age; } person_t; int age(object_t *object) { if (object->type == PERSON) ...
8
votes
1answer
149 views

Is there anything like a restrict keyword for C++ to indicate that _iterators_ are not aliased

g++ does implement __restrict__ for pointers, but I could not find anything about iterators. My overall intent is to encourage the compiler to vectorize stl loops. Edit: Even if the compiler is ...
8
votes
4answers
4k views

How to cast sockaddr_storage and avoid breaking strict-aliasing rules

I'm using Beej's Guide to Networking and came across an aliasing issue. He proposes a function to return either the IPv4 or IPv6 address of a particular struct: 1 void *get_in_addr( struct sockaddr ...
7
votes
3answers
220 views

How to tell a C or a C++ compiler that pointers are not aliased

I have function that receives an array of pointers like so: void foo(int *ptrs[], int num, int size) { /* The body is an example only */ for (int i = 0; i < size; ++i) { for (int ...
6
votes
2answers
107 views

What runs faster in Ruby: defining the alias method or using alias_method?

What is faster on later invocation: def first_method?() second_method?() end or alias_method :first method, :second_method and if possible why? (NOTE: I don't ask what is nicer / better etc. -> ...
6
votes
4answers
101 views

Prevent two object internals from aliasing

I have a function signature similiar to this void Mutliply(const MatrixMN& a, const MatrixMN& b, MatrixMN& out); Internally the matrix class has a float* data; that represents the m x n ...
5
votes
4answers
353 views

Placement-new vs gcc 4.4.3 strict-aliasing rules

I've got some code that I've been using successfully for some years to implement a "variant-type object"; that is, a C++ object that can hold a values of various types, but only uses (approximately) ...
4
votes
1answer
135 views

gcc C/C++ assume no pointer aliasing

Having recently read that the main reason why fortran is faster than c/c++ in numerical computations is because there is no pointer aliasing. Apparently, using restrict or __restrict__ keywords ...
4
votes
1answer
356 views

Rendering very high frequency sounds on iOS

I'm trying to use AudioUnit to render a range of high-frequency sounds for a iPhone project (on the order of 8-20KHz), but everything above 12KHz comes out heavily distorted and/or completely the ...
4
votes
3answers
8k views

CSS: @font-face anti aliasing

I'm a bit struggling with the @font-face CSS option. After a lot of reading, trying, retrying I finally came across a website that makes you a ready-to-go package when you upload your font. It's ...
3
votes
3answers
80 views

Is there any way to get all the method's aliases in Ruby?

Suppose I've got a class: class MyClass def my_method # cool stuff end alias :my_method2 :method end And now I want to get all the aliases for method my_method without comparison with all ...
3
votes
2answers
132 views

How to manage shared_ptr that points to internal data of already referenced object?

Suppose I have these classes: struct Engine { int engine_data; }; struct Car { shared_ptr<Engine> engine; int car_data; }; For performance reasons, I want to make them tightly packed ...
3
votes
1answer
373 views

pointer aliasing

what is the difference between "Strict", "Typed", "Restricted" and "Disjointed" aliasing?
3
votes
0answers
198 views

What form of alias analysis does Visual C++ use?

I'm trying to figure out what form of alias analysis is used in Visual C++. Its also known as pointer analysis, mod-ref analysis, points-to analysis or side-effect analysis, and is pretty close to ...
3
votes
2answers
909 views

Aliasing Resources (WPF)

I am trying to alias a resource in XAML, as follows: <UserControl.Resources> <StaticResourceExtension x:Key="newName" ResourceKey="oldName"/> </UserControl.Resources> ...
3
votes
1answer
231 views

Sound sampling at low frequencies

I've actually posted this question before, but it hasn't been answered. Maybe I wasn't clear enough, so let me rephrase: As you know, when you're sampling a signal at a certain sampling rate, any ...
2
votes
3answers
82 views

Namespace class conflict

First of all, I know that this is because of bad libraries, but I don't have code for them to fix this. XXX.dll contains class Util in global namespace. Util.dll has namespace Util. When I include ...
2
votes
1answer
98 views

OpenGL fullscreen rendering

I'm currently coding a game in openGL and I've got to a stage where I'm in first person mode controlling the "camera" with W & S, and rotating with the mouse. For some reason, when I'm in ...
2
votes
2answers
85 views

Aliasing in Fortran function

For optimisation reasons, Fortran enforces that the dummy arguments of a subroutine or function are not alias, i.e., they do not point the the same memory place. I am wondering if the same constraint ...
2
votes
2answers
80 views

What's the duration of “pointer not aliased by any other pointer” implication?

Currently Visual C++ is shipped with runtime where malloc() is decorated with __declspec( restrict ). MSDN says this decoration states to the compiler that a pointer returned by malloc() cannot be ...
2
votes
2answers
178 views

Strange performance problem

I have a container similar to this one. template <typename Nat, typename Elt> class NatMap { public: Elt& operator[] (Nat nat) { return tab [nat.GetRaw()]; } private: Elt tab ...
2
votes
2answers
648 views

Can I include iostream header file into custom namespace?

namespace A { #include <iostream> }; int main(){ A::std::cout << "\nSample"; return 0; }
2
votes
2answers
222 views

restrict-edness with pre-c99

Considering this code, VC9 doesn't detect aliasing : typedef struct { int x, y; } vec_t; void rotate_cw(vec_t const *from, vec_t *to) { /* Notice x depends on y and vice ...
1
vote
2answers
98 views

LINQ to SQL: how to set a caption for columns(alias) of table in Lambda Express

I use the SQL Management Studio for create database I create a table and create columns of table Names of columns are on the English language like "test_ID" in the server side when run a query(linq ...
1
vote
0answers
23 views

OpenFlow - How to anti aliasing?

I use OpenFlow to show images, but aliasing is a big problem. Please see bellow and help me!
1
vote
2answers
69 views

What is the register cache and what does it have to do with const variables?

From http://www.parashift.com/c++-faq-lite/const-correctness.html#faq-18.14: Even if the language outlawed const_cast, the only way to avoid flushing the register cache across a const member ...
1
vote
0answers
34 views

Which is the correct method for aliasing attributes with FactoryGirl?

Well, I have the following in factories.rb Factory.alias /(.*_)confirmation/, "\1" Factory.define :user do |f| f.new_pass 'asdasdasd' f.new_pass_confirmation 'asdasdasd' end And then when I ...
1
vote
3answers
65 views

Messing around with Aliasing

I have the following code that works as expected: a = [1, 2, 3, 4] b = a >>> b is a True if I change it up a little it still works: a = [1, 2, 3, 4] b = a[2] * 2 >>> b is a[2] ...
1
vote
1answer
108 views

window.location on the aliased domain

In the project I work with there is an apache aliasing set up so that the domain site-main.com points to the site-source.com (both our domians). When configuring the js app I use window.location to ...
1
vote
1answer
162 views

Preventing blurring of fast-moving objects on the screen

I'm writing a desktop application in Python using the Qt framework, and it involves whisking images across the screen at a fairly quick pace. I do this in a pretty straightforward way: For each ...
1
vote
2answers
77 views

oracle: aliasing problem, why isn't recognizing it?

Ok guys, im having a real issue trying to understand the logic behind the aliasing in oracle. Here is the query: select isbn, b.fname, b.lname from bookauthor a, author b, ...
1
vote
3answers
183 views

Is the aliasing rule symmetric?

I had a discussion with someone on IRC and this question turned up. We are allowed by the Standard to change an object of type int by a char lvalue. int a; char *b = (char*) &a; *b = 0; Would ...
1
vote
3answers
222 views

Namespace Aliasing in C++

It is widely known that adding declarations/definitions to namespace std results in undefined behavior. The only exception to this rule is for template specializations. What about the following ...
1
vote
2answers
440 views

Tiling rectangles seamlessly in WPF while maintaing subpixel accuracy?

I have had the problem described in the question Tiling rectangles seamlessly in WPF, but am not really happy with the answers given there. I am painting a bar chart by painting lots of rectangles ...
0
votes
0answers
5 views

splint aliasing analysis

Splint is a static analyzer for c.I know little about how does it works.I wonder if it does aliasing analysis before detecting defects.If it does,which source file contains the code.
0
votes
2answers
86 views

Setting alias name from a subquery in SQL

In my Select query I just want to to set the alias name of a column based on a sub-query (that is, a value in another table). Is this possible in SQL Server 2008? Like: SELECT tax_Amt AS (SELECT tax ...
0
votes
1answer
64 views

Aliasing singleton method in a module

I have a module called "Setup" and want to alias a method. This is how it looks, but how it doesn't work: module Setup def Setup::option_set?(option) #... end alias :option_set? ...
0
votes
1answer
200 views

Ruby, Rails and aliasing - stack too deep problem

My problem is with calling old aliased method in Test environment. Probably only with Factory Girl app/models/user.rb class User < ActiveRecord::Base ... include Authentication include ...
0
votes
1answer
279 views

JOGL mipmaps and texture shimmering

I've a wall and a brick texture in my OpenGL 2 scene that keeps shimmering and flashing no matter what I set. When I'm zoomed in close (and can see clearly the texture), then the flashing and ...
0
votes
2answers
68 views

Java Collections & aliasing

How do you deal with aliasing in Java? A simple solution is to make a copy of let's say an ArrayList but when i try to write the code my data keeps being overwritten by newly added data. In detail: ...
0
votes
2answers
134 views

Combining Table Aliases with “Where” in Informix

I'm facing serious problems using table aliases on Informix with a where part. So I can run: SELECT ColA, ColB FROM Table1 AS TestTable But as soon as i try this: SELECT ColA, ColB FROM ...
0
votes
3answers
267 views

How to create a variable from a subarray

So I have a gigantic byte-array that represents a data packet. There's various parts of the packet such as a header, message body, stop bits, etc. How can I create variables of the various parts of ...
0
votes
1answer
130 views

postgres public schema function aliasing

I am currently running postgres 8.4.4 and I have the need to override calls to functions that reside in the public schema of my database. For instance in pg_catalog there exists a function ...
0
votes
2answers
460 views

Overlaying 2D paths on UIImage without scaling artifacts

I need to draw a path along the shape of an image in a way that it is always matching its position on the image independent of the image scale. Think of this like the hybrid view of Google Maps where ...